diff --git a/Ast/src/Parser.cpp b/Ast/src/Parser.cpp index 44a40abf..2279ec27 100644 --- a/Ast/src/Parser.cpp +++ b/Ast/src/Parser.cpp @@ -2714,10 +2714,6 @@ AstExpr* Parser::parseTableConstructor() { report(lexer.current().location, "Expected ',' after table constructor element"); } - else if (lexer.current().type != '}') - { - break; - } } Location end = lexer.current().location;