1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

GDScript: Show error when missing expression after ternary else

This commit is contained in:
George Marques
2021-09-15 11:43:36 -03:00
parent a5c299630d
commit 107af38fd1
3 changed files with 10 additions and 0 deletions

View File

@@ -2275,6 +2275,10 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_ternary_operator(Expressio
operation->false_expr = parse_precedence(PREC_TERNARY, false); operation->false_expr = parse_precedence(PREC_TERNARY, false);
if (operation->false_expr == nullptr) {
push_error(R"(Expected expression after "else".)");
}
return operation; return operation;
} }

View File

@@ -0,0 +1,4 @@
func test():
var x = 1 if false else
print("oops")
print(x)

View File

@@ -0,0 +1,2 @@
GDTEST_PARSER_ERROR
Expected expression after "else".