summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_editor.cpp
diff options
context:
space:
mode:
authorFrancois Belair <razoric480@gmail.com>2021-04-10 15:10:29 -0400
committerFrancois Belair <razoric480@gmail.com>2021-04-10 15:21:59 -0400
commit39f7408ccbebe3f1126a4d3b7d44208c646934d7 (patch)
tree1b199fe42d22eefa89e5e32d6f36f9ee93e6f76b /modules/gdscript/gdscript_editor.cpp
parent6138396e0020e1e92224b4d882ef5e8217fa12f7 (diff)
downloadredot-engine-39f7408ccbebe3f1126a4d3b7d44208c646934d7.tar.gz
Implement LSP didDeleteFiles & make parser aware of sub-nodes
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r--modules/gdscript/gdscript_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp
index ae3b16a9d7..a1f0bd49e1 100644
--- a/modules/gdscript/gdscript_editor.cpp
+++ b/modules/gdscript/gdscript_editor.cpp
@@ -2993,6 +2993,7 @@ Error GDScriptLanguage::lookup_code(const String &p_code, const String &p_symbol
is_function = true;
[[fallthrough]];
}
+ case GDScriptParser::COMPLETION_CALL_ARGUMENTS:
case GDScriptParser::COMPLETION_IDENTIFIER: {
GDScriptParser::DataType base_type;
if (context.current_class) {