diff options
author | geequlim <geequlim@gmail.com> | 2019-10-03 16:26:55 +0800 |
---|---|---|
committer | geequlim <geequlim@gmail.com> | 2019-10-03 18:51:03 +0800 |
commit | 6a8303f82f78646d77bc3f18b7083313005485c9 (patch) | |
tree | 121a0e02d66158c8bee22b25ad67c979c03b7eae /modules/gdscript/language_server/gdscript_text_document.h | |
parent | d1a6964d3965ced647226e0489ca50f1f28aacd2 (diff) | |
download | redot-engine-6a8303f82f78646d77bc3f18b7083313005485c9.tar.gz |
Implement DocumentLink of GDScript LSP Server
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, 1 insertions, 1 deletions
diff --git a/modules/gdscript/language_server/gdscript_text_document.h b/modules/gdscript/language_server/gdscript_text_document.h index d15022d2c4..0b8103f175 100644 --- a/modules/gdscript/language_server/gdscript_text_document.h +++ b/modules/gdscript/language_server/gdscript_text_document.h @@ -59,7 +59,7 @@ public: Dictionary resolve(const Dictionary &p_params); Array foldingRange(const Dictionary &p_params); Array codeLens(const Dictionary &p_params); - Variant documentLink(const Dictionary &p_params); + Array documentLink(const Dictionary &p_params); Array colorPresentation(const Dictionary &p_params); Variant hover(const Dictionary &p_params); Array definition(const Dictionary &p_params); |