mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-15 16:25:05 +00:00
Refactor collections
This commit is contained in:
parent
9ce2f4e1ff
commit
451b2c0ded
7 changed files with 54 additions and 53 deletions
|
@ -87,7 +87,6 @@ fn loc_expr_in_parens_help<'a>() -> impl Parser<'a, Loc<Expr<'a>>, EInParens<'a>
|
|||
specialize_ref(EInParens::Expr, loc_expr_no_multi_backpassing()),
|
||||
word1(b',', EInParens::End),
|
||||
word1(b')', EInParens::End),
|
||||
EInParens::Open,
|
||||
EInParens::IndentEnd,
|
||||
Expr::SpaceBefore
|
||||
)),
|
||||
|
@ -2467,7 +2466,6 @@ fn list_literal_help<'a>() -> impl Parser<'a, Expr<'a>, EList<'a>> {
|
|||
specialize_ref(EList::Expr, loc_expr_no_multi_backpassing()),
|
||||
word1(b',', EList::End),
|
||||
word1(b']', EList::End),
|
||||
EList::Open,
|
||||
EList::IndentEnd,
|
||||
Expr::SpaceBefore
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue