ligo/src/passes/01-parser/shared/LexerUnit.mli
Pierre-Emmanuel Wulfman 8f529a059a reorder folder
2020-06-03 14:47:36 +02:00

15 lines
359 B
OCaml

(* Functor to build a standalone LIGO lexer *)
module Region = Simple_utils.Region
module type IO =
sig
val options : EvalOpt.options (* CLI options *)
end
module Make (IO: IO) (Lexer: Lexer.S) :
sig
val scan : unit -> (Lexer.token list, string Region.reg) Stdlib.result
val trace : unit -> (unit, string Region.reg) Stdlib.result
end