Merge pull request #43980 from gvekan/fix-missing-function-hints

Fix missing function hints
This commit is contained in:
Rémi Verschelde 2021-01-11 13:54:22 +01:00 committed by GitHub
commit 6d48943768
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2345,7 +2345,7 @@ static void _find_call_arguments(GDScriptParser::CompletionContext &p_context, c
GDScriptParser::DataType base_type;
bool _static = false;
const GDScriptParser::CallNode *call = static_cast<const GDScriptParser::CallNode *>(p_call);
GDScriptParser::Node::Type callee_type = GDScriptParser::Node::NONE;
GDScriptParser::Node::Type callee_type = call->get_callee_type();
GDScriptCompletionIdentifier connect_base;