15 lines
304 B
OCaml
Raw Normal View History

(* Driver for the ReasonLIGO lexer *)
2019-12-10 13:47:31 +00:00
module IO =
struct
let ext = ".religo"
let options = EvalOpt.read "ReasonLIGO" ext
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