mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Remove unneeded else if in parser.cpp
This commit is contained in:
parent
02241b6d24
commit
9f8a2b3d8f
1 changed files with 0 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue