Merge pull request #58275 from V-Sekai/attribute_parse_crash_fix
This commit is contained in:
commit
d42250e2fb
|
@ -2692,12 +2692,13 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_attribute(ExpressionNode *
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
attribute->is_attribute = true;
|
|
||||||
attribute->base = p_previous_operand;
|
attribute->base = p_previous_operand;
|
||||||
|
|
||||||
if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier after "." for attribute access.)")) {
|
if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier after "." for attribute access.)")) {
|
||||||
return attribute;
|
return attribute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
attribute->is_attribute = true;
|
||||||
attribute->attribute = parse_identifier();
|
attribute->attribute = parse_identifier();
|
||||||
|
|
||||||
return attribute;
|
return attribute;
|
||||||
|
|
Loading…
Reference in New Issue