mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:44:58 +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) =|
|
|
}
|