M pds.conf +1 -1
@@ 7,7 7,7 @@ extra_compiler_opts = "-g -strict-sequen
[src.snabela]
install = true
extra_ocamldep_opts = "-package sedlex"
-deps = [ "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
+deps = [ "result", "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
[src.snabela_cli]
install = true
M src/snabela/snabela.ml +2 -0
@@ 1,3 1,5 @@
+open Result
+
module Kv = struct
module Map = CCMap.Make(String)
M src/snabela/snabela.mli +2 -0
@@ 6,6 6,8 @@
Convenience function are provided for constructing a value of type [t] as
well as pretty printing. *)
+open Result
+
module Kv : sig
module Map : CCMap.S with type key = string
M src/snabela/snabela_lexer.ml +2 -0
@@ 1,3 1,5 @@
+open Result
+
module Token = struct
type token =
| Escaped_at
M src/snabela_cli/snabela_cli.ml +2 -0
@@ 1,3 1,5 @@
+open Result
+
module SMap = CCMap.Make(String)
module Cmdline = struct