diff options
author | Chimrod <> | 2024-03-15 10:45:12 +0100 |
---|---|---|
committer | Chimrod <> | 2024-03-27 15:34:10 +0100 |
commit | baa258ac91df8a80209b322e8d42c5deb2ada536 (patch) | |
tree | e1a9d1f2df9d65c19b68d0acfc258338783e3e06 /lib/syntax/tree.mli | |
parent | 141db078408f94c410508970d07382d4a6087f17 (diff) |
New test for duplicates evalutations in the code
Diffstat (limited to 'lib/syntax/tree.mli')
-rw-r--r-- | lib/syntax/tree.mli | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/syntax/tree.mli b/lib/syntax/tree.mli index a82c07c..9ed442b 100644 --- a/lib/syntax/tree.mli +++ b/lib/syntax/tree.mli @@ -47,8 +47,9 @@ end module Expression : sig include S.Expression with type t' = S.pos Ast.expression - val eq : (S.pos -> S.pos -> bool) -> t -> t -> bool - val hash : (S.pos -> int) -> t -> int + val eq : (S.pos -> S.pos -> bool) -> t' -> t' -> bool + val hash : (S.pos -> int) -> t' -> int + val exists : f:(t' -> bool) -> t' -> bool end include |