mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +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.
9 lines
472 B
Plaintext
9 lines
472 B
Plaintext
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) =|
|
|
}
|