Merge pull request #47776 from Razoric480/foreport

Implement LSP didDeleteFiles & make parser aware of sub-nodes
This commit is contained in:
Rémi Verschelde 2021-05-06 20:46:18 +02:00 committed by GitHub
commit ae2359fc1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 196 additions and 19 deletions

View file

@ -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) {