| ... | ... | @@ -3714,7 +3714,6 @@ const Parser = struct { |
| 3714 | 3714 | if (p.eatToken(.r_paren)) |_| { |
| 3715 | 3715 | return SmallSpan{ .zero_or_one = 0 }; |
| 3716 | 3716 | } |
| 3717 | | continue; |
| 3718 | 3717 | }, |
| 3719 | 3718 | .r_paren => return SmallSpan{ .zero_or_one = 0 }, |
| 3720 | 3719 | else => { |
| ... | ... | @@ -3728,14 +3727,7 @@ const Parser = struct { |
| 3728 | 3727 | |
| 3729 | 3728 | const param_two = while (true) { |
| 3730 | 3729 | switch (p.token_tags[p.nextToken()]) { |
| 3731 | | .comma => { |
| 3732 | | if (p.eatToken(.r_paren)) |_| { |
| 3733 | | return SmallSpan{ .zero_or_one = param_one }; |
| 3734 | | } |
| 3735 | | const param = try p.expectParamDecl(); |
| 3736 | | if (param != 0) break param; |
| 3737 | | continue; |
| 3738 | | }, |
| 3730 | .comma => {}, |
| 3739 | 3731 | .r_paren => return SmallSpan{ .zero_or_one = param_one }, |
| 3740 | 3732 | .colon, .r_brace, .r_bracket => { |
| 3741 | 3733 | p.tok_i -= 1; |
| ... | ... | @@ -3748,6 +3740,11 @@ const Parser = struct { |
| 3748 | 3740 | try p.warnExpected(.comma); |
| 3749 | 3741 | }, |
| 3750 | 3742 | } |
| 3743 | if (p.eatToken(.r_paren)) |_| { |
| 3744 | return SmallSpan{ .zero_or_one = param_one }; |
| 3745 | } |
| 3746 | const param = try p.expectParamDecl(); |
| 3747 | if (param != 0) break param; |
| 3751 | 3748 | } else unreachable; |
| 3752 | 3749 | |
| 3753 | 3750 | var list = std.ArrayList(Node.Index).init(p.gpa); |
| ... | ... | @@ -3757,17 +3754,7 @@ const Parser = struct { |
| 3757 | 3754 | |
| 3758 | 3755 | while (true) { |
| 3759 | 3756 | switch (p.token_tags[p.nextToken()]) { |
| 3760 | | .comma => { |
| 3761 | | if (p.token_tags[p.tok_i] == .r_paren) { |
| 3762 | | p.tok_i += 1; |
| 3763 | | return SmallSpan{ .multi = list.toOwnedSlice() }; |
| 3764 | | } |
| 3765 | | const param = try p.expectParamDecl(); |
| 3766 | | if (param != 0) { |
| 3767 | | try list.append(param); |
| 3768 | | } |
| 3769 | | continue; |
| 3770 | | }, |
| 3757 | .comma => {}, |
| 3771 | 3758 | .r_paren => return SmallSpan{ .multi = list.toOwnedSlice() }, |
| 3772 | 3759 | .colon, .r_brace, .r_bracket => { |
| 3773 | 3760 | p.tok_i -= 1; |
| ... | ... | @@ -3780,6 +3767,11 @@ const Parser = struct { |
| 3780 | 3767 | try p.warnExpected(.comma); |
| 3781 | 3768 | }, |
| 3782 | 3769 | } |
| 3770 | if (p.eatToken(.r_paren)) |_| { |
| 3771 | return SmallSpan{ .multi = list.toOwnedSlice() }; |
| 3772 | } |
| 3773 | const param = try p.expectParamDecl(); |
| 3774 | if (param != 0) try list.append(param); |
| 3783 | 3775 | } |
| 3784 | 3776 | } |
| 3785 | 3777 | |