diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-05-06 20:46:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 20:46:18 +0200 |
commit | ae2359fc1f2f5e7d5e5b45ce5d7b7346925e534f (patch) | |
tree | b5fa296657035575a03abc0845a670537c25be78 /modules/gdscript/gdscript_editor.cpp | |
parent | 01f80201bf6a7a3f3d0de420f18c8f68363dbe62 (diff) | |
parent | 39f7408ccbebe3f1126a4d3b7d44208c646934d7 (diff) |
Merge pull request #47776 from Razoric480/foreport
Implement LSP didDeleteFiles & make parser aware of sub-nodes
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 099abd35a7..6ae825d2bd 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2998,6 +2998,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) { |