aboutsummaryrefslogtreecommitdiff
path: root/syntax
diff options
context:
space:
mode:
authorChimrod <>2023-09-26 21:44:37 +0200
committerChimrod <>2023-09-26 21:44:37 +0200
commit46fd5a31d2e07b9df10d07dd900b529aca06a795 (patch)
tree471ab32b8d0674d0ab6cc58318afb844a88a5a6b /syntax
parentb65767c276124fff7412ef0112929d3aab16553b (diff)
Added the missing *= operator
Diffstat (limited to 'syntax')
-rw-r--r--syntax/t.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/t.ml b/syntax/t.ml
index 0014d47..9c25647 100644
--- a/syntax/t.ml
+++ b/syntax/t.ml
@@ -20,7 +20,7 @@ type boperator =
and uoperator = No | Neg | Add [@@deriving eq, show]
-and assignation_operator = Eq' | Inc (** += *) | Decr (** -= *)
+and assignation_operator = Eq' | Inc (** += *) | Decr (** -= *) | Mult
[@@deriving eq, show]
type function_ =