aboutsummaryrefslogtreecommitdiff
path: root/lib/syntax
diff options
context:
space:
mode:
authorChimrod <>2023-11-03 15:16:21 +0100
committerChimrod <>2023-11-03 15:16:21 +0100
commitf5d06b0e8e6aaaa05100165bfc7873d2a8be859c (patch)
tree94a129a9fda6672abc6281cb7bb8f31b6eece433 /lib/syntax
parent180529c30282d39f3506633716e3fe439db03309 (diff)
Added the /= operator
Diffstat (limited to 'lib/syntax')
-rw-r--r--lib/syntax/t.ml7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/syntax/t.ml b/lib/syntax/t.ml
index ade5e11..7186275 100644
--- a/lib/syntax/t.ml
+++ b/lib/syntax/t.ml
@@ -22,7 +22,12 @@ type boperator =
and uoperator = No | Neg | Add [@@deriving eq, show]
-and assignation_operator = Eq' | Inc (** += *) | Decr (** -= *) | Mult
+and assignation_operator =
+ | Eq'
+ | Inc (** += *)
+ | Decr (** -= *)
+ | Mult
+ | Div_assign
[@@deriving eq, show]
type function_ =