You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Via @EliasC. Certain patterns appear rather frequently and would be nice to write more succinctly. This issue is intended as be a collection of these, to consider the best way to support such things.
head:Exp ("," tail:Exp)* for non-empty lists with separators between the elements.
(head:Exp ("," tail:Exp)*)? for possibly empty lists with separators between the elements.
The text was updated successfully, but these errors were encountered:
Via @EliasC. Certain patterns appear rather frequently and would be nice to write more succinctly. This issue is intended as be a collection of these, to consider the best way to support such things.
head:Exp ("," tail:Exp)*
for non-empty lists with separators between the elements.(head:Exp ("," tail:Exp)*)?
for possibly empty lists with separators between the elements.The text was updated successfully, but these errors were encountered: