You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
GDScript: Fix issues when deriving from other scripts
This commit is contained in:
@@ -182,7 +182,7 @@ Error GDScriptAnalyzer::resolve_inheritance(GDScriptParser::ClassNode *p_class,
|
|||||||
return ERR_PARSE_ERROR;
|
return ERR_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
Error err = parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
|
Error err = parser->raise_status(GDScriptParserRef::INTERFACE_SOLVED);
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", p_class->extends_path), p_class);
|
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", p_class->extends_path), p_class);
|
||||||
return err;
|
return err;
|
||||||
@@ -208,7 +208,7 @@ Error GDScriptAnalyzer::resolve_inheritance(GDScriptParser::ClassNode *p_class,
|
|||||||
return ERR_PARSE_ERROR;
|
return ERR_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
Error err = parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
|
Error err = parser->raise_status(GDScriptParserRef::INTERFACE_SOLVED);
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
|
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
|
||||||
return err;
|
return err;
|
||||||
@@ -227,7 +227,7 @@ Error GDScriptAnalyzer::resolve_inheritance(GDScriptParser::ClassNode *p_class,
|
|||||||
return ERR_PARSE_ERROR;
|
return ERR_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
Error err = parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
|
Error err = parser->raise_status(GDScriptParserRef::INTERFACE_SOLVED);
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
|
push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
|
||||||
return err;
|
return err;
|
||||||
@@ -3254,6 +3254,9 @@ Error GDScriptAnalyzer::resolve_program() {
|
|||||||
List<String> parser_keys;
|
List<String> parser_keys;
|
||||||
depended_parsers.get_key_list(&parser_keys);
|
depended_parsers.get_key_list(&parser_keys);
|
||||||
for (const List<String>::Element *E = parser_keys.front(); E != nullptr; E = E->next()) {
|
for (const List<String>::Element *E = parser_keys.front(); E != nullptr; E = E->next()) {
|
||||||
|
if (depended_parsers[E->get()].is_null()) {
|
||||||
|
return ERR_PARSE_ERROR;
|
||||||
|
}
|
||||||
depended_parsers[E->get()]->raise_status(GDScriptParserRef::FULLY_SOLVED);
|
depended_parsers[E->get()]->raise_status(GDScriptParserRef::FULLY_SOLVED);
|
||||||
}
|
}
|
||||||
depended_parsers.clear();
|
depended_parsers.clear();
|
||||||
|
|||||||
@@ -2609,6 +2609,7 @@ Error GDScriptCompiler::_parse_class_level(GDScript *p_script, const GDScriptPar
|
|||||||
p_script->_base = base.ptr();
|
p_script->_base = base.ptr();
|
||||||
|
|
||||||
if (p_class->base_type.kind == GDScriptParser::DataType::CLASS && p_class->base_type.class_type != nullptr) {
|
if (p_class->base_type.kind == GDScriptParser::DataType::CLASS && p_class->base_type.class_type != nullptr) {
|
||||||
|
if (p_class->base_type.script_path == main_script->path) {
|
||||||
if (!parsed_classes.has(p_script->_base)) {
|
if (!parsed_classes.has(p_script->_base)) {
|
||||||
if (parsing_classes.has(p_script->_base)) {
|
if (parsing_classes.has(p_script->_base)) {
|
||||||
String class_name = p_class->identifier ? p_class->identifier->name : "<main>";
|
String class_name = p_class->identifier ? p_class->identifier->name : "<main>";
|
||||||
@@ -2620,6 +2621,16 @@ Error GDScriptCompiler::_parse_class_level(GDScript *p_script, const GDScriptPar
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
Error err = OK;
|
||||||
|
base = GDScriptCache::get_full_script(p_class->base_type.script_path, err, main_script->path);
|
||||||
|
if (err) {
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
if (base.is_null() && !base->is_valid()) {
|
||||||
|
return ERR_COMPILATION_FAILED;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p_script->member_indices = base->member_indices;
|
p_script->member_indices = base->member_indices;
|
||||||
|
|||||||
@@ -631,7 +631,6 @@ void GDScriptParser::parse_extends() {
|
|||||||
current_class->extends_path = previous.literal;
|
current_class->extends_path = previous.literal;
|
||||||
|
|
||||||
if (!match(GDScriptTokenizer::Token::PERIOD)) {
|
if (!match(GDScriptTokenizer::Token::PERIOD)) {
|
||||||
end_statement("superclass path");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user