mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-09 11:58:10 +00:00
Allow missing trailing comma with proc groups with odin parser
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user