2020-01-31 14:11:56 +01:00
|
|
|
(* Driver for the ReasonLIGO lexer *)
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2020-01-04 19:49:22 +01:00
|
|
|
module IO =
|
|
|
|
struct
|
|
|
|
let ext = ".religo"
|
|
|
|
let options = EvalOpt.read "ReasonLIGO" ext
|
|
|
|
end
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2020-01-04 19:49:22 +01:00
|
|
|
module M = LexerUnit.Make (IO) (Lexer.Make (LexToken))
|
2020-01-31 12:31:25 +01:00
|
|
|
|
|
|
|
let () =
|
|
|
|
match M.trace () with
|
|
|
|
Stdlib.Ok () -> ()
|
2020-01-31 14:11:56 +01:00
|
|
|
| Error Region.{value; _} -> Utils.highlight value
|