diff options
author | Chimrod <> | 2023-10-28 22:17:24 +0200 |
---|---|---|
committer | Chimrod <> | 2023-11-02 11:06:12 +0100 |
commit | 77ae152ece4efbf8dde983c03bd995c982522bfd (patch) | |
tree | b6427477b66042f766e58148441166b83984ddbb /lib/syntax/default.ml | |
parent | dd060261e35fcb8a57f03b01dbe84ab772a2a199 (diff) |
Updated the interface
Diffstat (limited to 'lib/syntax/default.ml')
-rw-r--r-- | lib/syntax/default.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/syntax/default.ml b/lib/syntax/default.ml index 45e7c14..9e9a8ef 100644 --- a/lib/syntax/default.ml +++ b/lib/syntax/default.ml @@ -24,7 +24,7 @@ module Expression (T' : T) = struct *) let integer : S.pos -> string -> T'.t = fun _ _ -> T'.default - let literal : S.pos -> string -> T'.t = fun _ _ -> T'.default + let literal : S.pos -> T'.t T.literal list -> T'.t = fun _ _ -> T'.default (** Call a function. The functions list is hardcoded in lib/lexer.mll *) let function_ : S.pos -> T.function_ -> T'.t list -> T'.t = |