Merge pull request #5673 from BradLewis/fix/parser-proc-group-trailing-comma

Allow missing trailing comma with proc groups with odin parser
This commit is contained in:
gingerBill
2025-09-10 13:48:13 +01:00
committed by GitHub

View File

@@ -2485,7 +2485,7 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr {
allow_token(p, .Comma) or_break
}
close := expect_token(p, .Close_Brace)
close := expect_closing_brace_of_field_list(p)
if len(args) == 0 {
error(p, tok.pos, "expected at least 1 argument in procedure group")