2020-03-31 21:44:10 +04:00
|
|
|
(* Standalone parser for booleans expression of preprocessing
|
|
|
|
directives for PascaLIGO *)
|
|
|
|
|
2020-03-24 20:47:24 +04:00
|
|
|
module Region = Simple_utils.Region
|
|
|
|
|
|
|
|
let highlight msg = Printf.eprintf "\027[31m%s\027[0m%!" msg
|
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let options = EvalOpt.read ~lang:EvalOpt.PascaLIGO ~ext:".ligo"
|
2020-03-24 20:47:24 +04:00
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let parse in_chan =
|
|
|
|
let buffer = Lexing.from_channel in_chan in
|
|
|
|
let open Lexing in
|
|
|
|
let () =
|
|
|
|
match options#input with
|
|
|
|
Some "-" | None -> ()
|
|
|
|
| Some pos_fname ->
|
|
|
|
buffer.lex_curr_p <- {buffer.lex_curr_p with pos_fname} in
|
2020-03-24 20:47:24 +04:00
|
|
|
let () =
|
|
|
|
try
|
|
|
|
let tree = E_Parser.expr E_Lexer.scan buffer in
|
|
|
|
let value = Preproc.(eval Env.empty tree)
|
|
|
|
in Printf.printf "%s\n" (string_of_bool value)
|
|
|
|
with
|
|
|
|
E_Lexer.Error error ->
|
|
|
|
let formatted =
|
2020-03-31 21:44:10 +04:00
|
|
|
E_Lexer.format ~offsets:options#offsets ~file:true error
|
2020-03-24 20:47:24 +04:00
|
|
|
in highlight formatted.Region.value
|
|
|
|
| E_Parser.Error ->
|
|
|
|
let region = Preproc.mk_reg buffer
|
2020-03-25 00:05:39 +04:00
|
|
|
and value = Preproc.Parse_error in
|
2020-03-24 20:47:24 +04:00
|
|
|
let error = Region.{value; region} in
|
|
|
|
let formatted =
|
2020-03-25 00:05:39 +04:00
|
|
|
Preproc.format ~offsets:options#offsets
|
|
|
|
~file:true error
|
2020-03-24 20:47:24 +04:00
|
|
|
in highlight formatted.Region.value
|
2020-03-31 21:44:10 +04:00
|
|
|
in close_in in_chan
|
|
|
|
|
|
|
|
let () =
|
|
|
|
match options#input with
|
|
|
|
Some "-" | None -> parse stdin
|
|
|
|
| Some file_path ->
|
|
|
|
try open_in file_path |> parse with
|
|
|
|
Sys_error msg -> highlight msg
|