diff options
author | BooksBaum <15612932+Booksbaum@users.noreply.github.com> | 2023-07-28 17:06:08 +0200 |
---|---|---|
committer | ryanabx <ryanbrue@hotmail.com> | 2023-09-11 09:46:34 -0500 |
commit | 0202a36a7a0eb76dec9814728e30e00074dc7bb2 (patch) | |
tree | 1628450e38be206c3b951652a7934f5a740c2888 /modules/gdscript/language_server/gdscript_text_document.h | |
parent | 221884e6bc260c38f16422081b7d4efd49a71375 (diff) | |
download | redot-engine-0202a36a7a0eb76dec9814728e30e00074dc7bb2.tar.gz |
Language Server: Improve hovered symbol resolution, fix renaming bugs, implement reference lookup
Co-Authored-By: Ryan Brue <56272643+ryanabx@users.noreply.github.com>
Co-Authored-By: BooksBaum <15612932+booksbaum@users.noreply.github.com>
Diffstat (limited to 'modules/gdscript/language_server/gdscript_text_document.h')
-rw-r--r-- | modules/gdscript/language_server/gdscript_text_document.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/language_server/gdscript_text_document.h b/modules/gdscript/language_server/gdscript_text_document.h index 0121101db2..cfd0490f0a 100644 --- a/modules/gdscript/language_server/gdscript_text_document.h +++ b/modules/gdscript/language_server/gdscript_text_document.h @@ -65,6 +65,8 @@ public: Array completion(const Dictionary &p_params); Dictionary resolve(const Dictionary &p_params); Dictionary rename(const Dictionary &p_params); + Variant prepareRename(const Dictionary &p_params); + Array references(const Dictionary &p_params); Array foldingRange(const Dictionary &p_params); Array codeLens(const Dictionary &p_params); Array documentLink(const Dictionary &p_params); |