2020-01-04 19:49:22 +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))
|