Serenity Operating System
at master 15 lines 716 B view raw
1endpoint LanguageServer 2{ 3 greet(DeprecatedString project_root) =| 4 5 file_opened(DeprecatedString filename, IPC::File file) =| 6 file_edit_insert_text(DeprecatedString filename, DeprecatedString text, i32 start_line, i32 start_column) =| 7 file_edit_remove_text(DeprecatedString filename, i32 start_line, i32 start_column, i32 end_line, i32 end_column) =| 8 set_file_content(DeprecatedString filename, DeprecatedString content) =| 9 10 auto_complete_suggestions(CodeComprehension::ProjectLocation location) =| 11 find_declaration(CodeComprehension::ProjectLocation location) =| 12 get_parameters_hint(CodeComprehension::ProjectLocation location) =| 13 get_tokens_info(DeprecatedString filename) =| 14 15}