mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 23:22:52 +00:00
Given a call site, the C++ language server can now return the declared parameters of the called function, as well as the index of the parameter that the cursor is currently at.
8 lines
472 B
Text
8 lines
472 B
Text
endpoint LanguageClient
|
|
{
|
|
auto_complete_suggestions(Vector<GUI::AutocompleteProvider::Entry> suggestions) =|
|
|
declaration_location(GUI::AutocompleteProvider::ProjectLocation location) =|
|
|
declarations_in_document(String filename, Vector<GUI::AutocompleteProvider::Declaration> declarations) =|
|
|
todo_entries_in_document(String filename, Vector<Cpp::Parser::TodoEntry> todo_entries) =|
|
|
parameters_hint_result(Vector<String> params, int current_index) =|
|
|
}
|