mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 06:31:13 +00:00
GDScript: Fix crash caused by inconsistent get_member
This commit is contained in:
parent
3890638d84
commit
68566b7bec
1 changed files with 1 additions and 1 deletions
|
|
@ -2019,7 +2019,7 @@ void GDScriptAnalyzer::reduce_identifier_from_base(GDScriptParser::IdentifierNod
|
|||
GDScriptParser::ClassNode *outer = base_class->outer;
|
||||
while (outer != nullptr) {
|
||||
if (outer->has_member(name)) {
|
||||
const GDScriptParser::ClassNode::Member &member = base_class->get_member(name);
|
||||
const GDScriptParser::ClassNode::Member &member = outer->get_member(name);
|
||||
if (member.type == GDScriptParser::ClassNode::Member::CONSTANT) {
|
||||
// TODO: Make sure loops won't cause problem. And make special error message for those.
|
||||
// For out-of-order resolution:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue