diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-21 20:36:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 20:36:39 +0200 |
commit | 679f70c1e1b4500f3fc5cf81bedc6e137b8184a5 (patch) | |
tree | 5636fc696cc99b28d7b6248fca9d0bf690bd19c2 /modules/gdscript/gdscript_parser.cpp | |
parent | b3b4860d2e24709f71df59a3d0a551c08fbd4281 (diff) | |
parent | 262d6c6befdf627cbaee9d143b1521f9f3464b6c (diff) | |
download | redot-engine-679f70c1e1b4500f3fc5cf81bedc6e137b8184a5.tar.gz |
Merge pull request #52906 from vnen/gdscript-show-error-on-yield
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index 5bfd7a0d86..025accf4ba 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -2822,6 +2822,11 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_lambda(ExpressionNode *p_p return lambda; } +GDScriptParser::ExpressionNode *GDScriptParser::parse_yield(ExpressionNode *p_previous_operand, bool p_can_assign) { + push_error(R"("yield" was removed in Godot 4.0. Use "await" instead.)"); + return nullptr; +} + GDScriptParser::ExpressionNode *GDScriptParser::parse_invalid_token(ExpressionNode *p_previous_operand, bool p_can_assign) { // Just for better error messages. GDScriptTokenizer::Token::Type invalid = previous.type; @@ -3178,7 +3183,7 @@ GDScriptParser::ParseRule *GDScriptParser::get_rule(GDScriptTokenizer::Token::Ty { nullptr, nullptr, PREC_NONE }, // TRAIT, { nullptr, nullptr, PREC_NONE }, // VAR, { nullptr, nullptr, PREC_NONE }, // VOID, - { nullptr, nullptr, PREC_NONE }, // YIELD, + { &GDScriptParser::parse_yield, nullptr, PREC_NONE }, // YIELD, // Punctuation { &GDScriptParser::parse_array, &GDScriptParser::parse_subscript, PREC_SUBSCRIPT }, // BRACKET_OPEN, { nullptr, nullptr, PREC_NONE }, // BRACKET_CLOSE, |