Removed pipeline and compose operators

This commit is contained in:
2023-06-29 12:54:40 -06:00
parent f1b373c7e6
commit 9b2f0cb968
2 changed files with 3 additions and 14 deletions

View File

@@ -17,7 +17,6 @@ binary -> expression operator expression ;
operator ->
| "==" | "!=" | "<" | "<=" | ">" | ">="
| "+" | "-" | "*" | "/"
| "|>" | "<|" | ">>" | "<<"
| "++" ;
pattern -> "_" | record_pattern | variant_pattern ;
record_pattern -> "{" ( identifier ( "=" pattern )? ( "," identifier ( "=" pattern )? )* ) ( "|" identifier ) "}"