mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-07-09 15:07:48 +00:00
feat: Add Assign
This commit is contained in:
@@ -25,6 +25,7 @@ let string_of_binary_operator = function
|
||||
| LessThanEquals -> "LessThanEquals"
|
||||
| GreaterThan -> "GreaterThan"
|
||||
| GreaterThanEquals -> "GreaterThanEquals"
|
||||
| Assign -> "Assign"
|
||||
|
||||
(** [string_of_unary_operator op] returns a string representation of the unary operator [op]. *)
|
||||
let string_of_unary_operator = function Negate -> "Negate" | Not -> "Not"
|
||||
|
||||
@@ -29,6 +29,7 @@ type binary_operator =
|
||||
| LessThanEquals
|
||||
| GreaterThan
|
||||
| GreaterThanEquals
|
||||
| Assign
|
||||
|
||||
type unary_operator = Negate | Not
|
||||
|
||||
|
||||
Reference in New Issue
Block a user