You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Improved go-to definition (Ctrl + Click)
Co-Authored-By: Bojidar Marinov <bojidar.marinov.bg@gmail.com>
This commit is contained in:
@@ -8497,7 +8497,13 @@ Error GDScriptParser::_parse(const String &p_base_path) {
|
||||
_set_error("Parse error: " + tokenizer->get_token_error());
|
||||
}
|
||||
|
||||
if (error_set && !for_completion) {
|
||||
bool for_completion_error_set = false;
|
||||
if (error_set && for_completion) {
|
||||
for_completion_error_set = true;
|
||||
error_set = false;
|
||||
}
|
||||
|
||||
if (error_set) {
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
@@ -8527,6 +8533,10 @@ Error GDScriptParser::_parse(const String &p_base_path) {
|
||||
// Resolve the function blocks
|
||||
_check_class_blocks_types(main_class);
|
||||
|
||||
if (for_completion_error_set) {
|
||||
error_set = true;
|
||||
}
|
||||
|
||||
if (error_set) {
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user