From 9a8421aa058437ce01bc67244bb8dcd0f15fc9e6 Mon Sep 17 00:00:00 2001 From: Francois Belair Date: Sun, 11 Jul 2021 15:51:31 -0400 Subject: Implement applyEdit in LSP for signal connecting --- modules/gdscript/language_server/lsp.hpp | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'modules/gdscript/language_server/lsp.hpp') diff --git a/modules/gdscript/language_server/lsp.hpp b/modules/gdscript/language_server/lsp.hpp index a7dcfdb22d..025b1f498c 100644 --- a/modules/gdscript/language_server/lsp.hpp +++ b/modules/gdscript/language_server/lsp.hpp @@ -1266,6 +1266,58 @@ struct DocumentSymbol { } }; +struct WorkspaceEdit { + HashMap> changes; + + void add_edit(String uri, TextEdit edit) { + if (changes.has(uri)) { + changes[uri].push_back(edit); + } else { + List edits; + edits.push_back(edit); + changes[uri] = edits; + } + } + + Dictionary to_json() { + Dictionary dict; + + Dictionary changes_dict; + + List key_list; + changes.get_key_list(&key_list); + for (int i = 0; i < key_list.size(); ++i) { + String uri = key_list[i]; + + List edits = changes[key_list[i]]; + Array changes_arr; + for (int l = 0; l < edits.size(); ++l) { + Dictionary change_dict; + change_dict["newText"] = edits[l].newText; + change_dict["range"] = edits[l].range.to_json(); + changes_arr.push_back(change_dict); + } + changes_dict[uri] = changes_arr; + } + + dict["changes"] = changes_dict; + + return dict; + } +}; + +struct ApplyWorkspaceEditParams { + WorkspaceEdit edit; + + Dictionary to_json() { + Dictionary dict; + + dict["edit"] = edit.to_json(); + + return dict; + } +}; + struct NativeSymbolInspectParams { String native_class; String symbol_name; -- cgit v1.2.3