diff --git a/src/hazel/Grammar.re b/src/hazel/Grammar.re index b969453b..d9fcee6f 100644 --- a/src/hazel/Grammar.re +++ b/src/hazel/Grammar.re @@ -168,6 +168,8 @@ module Exp = { ), //Comparison p(~a=L, seq([exp, comp_op, exp])), + //Reverse-ap + p(~a=L, seq([exp, op("|>"), exp])), //Math operations p(~a=L, seq([exp, add_op, exp])), p(~a=L, seq([exp, mult_op, exp])),