Merge pull request #72789 from Vilcrow/fix-jump-to-definition

Fixed the jumping to function definition using 'Ctrl+LMB'.
This commit is contained in:
Rémi Verschelde 2023-02-07 19:37:50 +01:00
commit 3f95b39cb3
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -3491,6 +3491,14 @@ static Error _lookup_symbol_from_base(const GDScriptParser::DataType &p_base, co
break;
}
if (context.current_class) {
if (context.type != GDScriptParser::COMPLETION_SUPER_METHOD) {
base.type = context.current_class->get_datatype();
} else {
base.type = context.current_class->base_type;
}
}
if (_lookup_symbol_from_base(base.type, p_symbol, is_function, r_result) == OK) {
return OK;
}