fix editor crash when missing variable in pattern match dispatch
This commit is contained in:
parent
a897f7f606
commit
822af935e3
1 changed files with 2 additions and 1 deletions
|
@ -1906,7 +1906,8 @@ GDParser::PatternNode *GDParser::_parse_pattern(bool p_static) {
|
|||
// all the constants like strings and numbers
|
||||
default: {
|
||||
Node *value = _parse_and_reduce_expression(pattern, p_static);
|
||||
if (error_set) {
|
||||
if (!value) {
|
||||
_set_error("Expect constant expression or variables in a pattern");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue