16 lines
335 B
OCaml
Raw Normal View History

(* Driver for the ReasonLIGO lexer *)
2019-12-10 13:47:31 +00:00
module Region = Simple_utils.Region
module IO =
struct
let options = EvalOpt.(read ~lang:`ReasonLIGO ~ext:".religo")
end
2019-12-10 13:47:31 +00:00
module M = LexerUnit.Make (IO) (Lexer.Make (LexToken))
let () =
match M.trace () with
Stdlib.Ok () -> ()
| Error Region.{value; _} -> Utils.highlight value