mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-19 13:00:28 +00:00
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:
@@ -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