File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1202,3 +1202,5 @@ let x = a >< b;
12021202let (=\> ) = (a, b) => a + b;
12031203
12041204let x = a =\> b;
1205+
1206+ let (=>> ) = (a, b) => a + b;
Original file line number Diff line number Diff line change @@ -919,3 +919,5 @@ let x = a >< b;
919919let (=\> ) = (a, b) => a + b;
920920
921921let x = a =\> b;
922+
923+ let (=>> ) = (a, b) => a + b;
Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ rule token = parse
611611 { INFIXOP0 (lexeme_operator lexbuf) }
612612 (* `=\>` is treated especially due to conflicts with the function declaration
613613 syntax *)
614- | '\\' ? '=' '\\' ? '>' operator_chars *
614+ | '\\' ? " = \\ > "
615615 { INFIXOP0 (lexeme_operator lexbuf) }
616616 | '\\' ? '@' operator_chars*
617617 { INFIXOP1 (lexeme_operator lexbuf) }
You can’t perform that action at this time.
0 commit comments