mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Autocompletion: Try to guess method return type even if subscript base has no value
This commit is contained in:
parent
abf8e1e6f9
commit
24912d2010
3 changed files with 15 additions and 1 deletions
|
@ -1925,7 +1925,7 @@ static bool _guess_expression_type(GDScriptParser::CompletionContext &p_context,
|
|||
}
|
||||
}
|
||||
|
||||
if (!found && base.value.get_type() != Variant::NIL) {
|
||||
if (!found) {
|
||||
found = _guess_method_return_type_from_base(c, base, call->function_name, r_type);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue