diff options
author | Chimrod <> | 2023-10-07 10:54:39 +0200 |
---|---|---|
committer | Chimrod <> | 2023-10-15 19:04:36 +0200 |
commit | a70c88bd727c7938c3d8d1355bf5474546d7d72e (patch) | |
tree | 9e25c88f6310c28f1f726f75ab7896d4604ed503 /lib/syntax/S.ml | |
parent | 7f2b8c0b9fbe6c9b3b4291c1749fc4d53866b85b (diff) |
Updated the common interface in order to require the report
Diffstat (limited to 'lib/syntax/S.ml')
-rw-r--r-- | lib/syntax/S.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/syntax/S.ml b/lib/syntax/S.ml index 63fcd08..6bdbc9d 100644 --- a/lib/syntax/S.ml +++ b/lib/syntax/S.ml @@ -19,7 +19,8 @@ type ('a, 'b) variable = { pos : 'a; name : string; index : 'b option } (** Represent the evaluation over an expression *) module type Expression = sig type 'a obs - type repr + type t + type repr = Report.t list -> t * Report.t list type variable = { pos : pos; name : string; index : repr option } (** |