968e73b342
The build with Makefile works. Dune build to be tested.
34 lines
1.0 KiB
OCaml
34 lines
1.0 KiB
OCaml
(* Standalone preprocessor for PascaLIGO *)
|
|
|
|
module Region = Simple_utils.Region
|
|
|
|
let highlight msg = Printf.eprintf "\027[31m%s\027[0m\n%!" msg
|
|
|
|
let options = EvalOpt.read ~lang:EvalOpt.PascaLIGO ~ext:".ligo";;
|
|
|
|
let preproc cin =
|
|
let buffer = Lexing.from_channel cin in
|
|
let open Lexing in
|
|
let () =
|
|
match options#input with
|
|
None | Some "-" -> ()
|
|
| Some pos_fname ->
|
|
buffer.lex_curr_p <- {buffer.lex_curr_p with pos_fname} in
|
|
match Preproc.lex options buffer with
|
|
Stdlib.Ok pp_buffer -> print_string (Buffer.contents pp_buffer)
|
|
| Stdlib.Error (pp_buffer, err) ->
|
|
let formatted =
|
|
Preproc.format ~offsets:options#offsets ~file:true err in
|
|
begin
|
|
if EvalOpt.SSet.mem "preproc" options#verbose then
|
|
Printf.printf "%s\n%!" (Buffer.contents pp_buffer);
|
|
highlight formatted.Region.value
|
|
end
|
|
|
|
let () =
|
|
match options#input with
|
|
Some "-" | None -> preproc stdin
|
|
| Some file_path ->
|
|
try open_in file_path |> preproc with
|
|
Sys_error msg -> highlight msg
|