Remove unneeded else if in parser.cpp

This commit is contained in:
Suphi Kaner 2024-09-29 17:36:13 +03:00 committed by GitHub
parent 02241b6d24
commit 9f8a2b3d8f
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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;