diff options
Diffstat (limited to 'lib/expression/t.ml')
-rw-r--r-- | lib/expression/t.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/expression/t.ml b/lib/expression/t.ml index 9ce21b8..fec8fd7 100644 --- a/lib/expression/t.ml +++ b/lib/expression/t.ml @@ -6,6 +6,7 @@ type 'a window = | Counter | Previous of 'a | Sum of 'a +[@@deriving show, eq] type 'a t = | Empty @@ -21,6 +22,7 @@ type 'a t = | BOperator of binary_operator * 'a t * 'a t | GEquality of binary_operator * 'a t * 'a t list | Function' of funct * 'a t list +[@@deriving show, eq] and binary_operator = | Equal |