Allow missing trailing comma with proc groups with odin parser

This commit is contained in:
Brad Lewis
2025-09-10 08:44:06 -04:00
parent 70d396c8ad
commit 75449283c2

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")