LanguageClient.ipc 556 B

123456789
  1. endpoint LanguageClient
  2. {
  3. auto_complete_suggestions(Vector<GUI::AutocompleteProvider::Entry> suggestions) =|
  4. declaration_location(GUI::AutocompleteProvider::ProjectLocation location) =|
  5. declarations_in_document(String filename, Vector<GUI::AutocompleteProvider::Declaration> declarations) =|
  6. todo_entries_in_document(String filename, Vector<Cpp::Parser::TodoEntry> todo_entries) =|
  7. parameters_hint_result(Vector<String> params, int current_index) =|
  8. tokens_info_result(Vector<GUI::AutocompleteProvider::TokenInfo> tokens_info) =|
  9. }