diff options
author | kobewi <kobewi4e@gmail.com> | 2021-08-10 15:32:07 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-08-10 15:57:56 +0200 |
commit | e0572f7ef7760bd1ceee2e177284564ff1d97fef (patch) | |
tree | 58585487911337bf7c633398fddd14ad1aafb331 /modules/gdscript | |
parent | 50d5569ad49752803b980eca85590f5362b12409 (diff) |
Fix crash when parsing Dictionary
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index a500dfd51a..a21167ad95 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -2480,7 +2480,9 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_dictionary(ExpressionNode switch (dictionary->style) { case DictionaryNode::LUA_TABLE: if (key != nullptr && key->type != Node::IDENTIFIER) { - push_error("Expected identifier as dictionary key."); + push_error("Expected identifier as LUA-style dictionary key."); + advance(); + break; } if (!match(GDScriptTokenizer::Token::EQUAL)) { if (match(GDScriptTokenizer::Token::COLON)) { |