
- do not use plain JSON rep for errors and use polymorphic variants instead - split formatting for human readable and JSON output - no more simple_errors simple_fails - much less result bindings used in stages
24 lines
841 B
OCaml
24 lines
841 B
OCaml
(** This file provides an interface to the PascaLIGO parser. *)
|
|
|
|
open Errors
|
|
open Trace
|
|
module AST = Parser_pascaligo.AST
|
|
|
|
(** Open a PascaLIGO filename given by string and convert into an
|
|
abstract syntax tree. *)
|
|
val parse_file : string -> (AST.t, parser_error) result
|
|
|
|
(** Convert a given string into a PascaLIGO abstract syntax tree *)
|
|
val parse_string : string -> (AST.t, parser_error) result
|
|
|
|
(** Parse a given string as a PascaLIGO expression and return an
|
|
expression AST.
|
|
|
|
This is intended to be used for interactive interpreters, or other
|
|
scenarios where you would want to parse a PascaLIGO expression
|
|
outside of a contract. *)
|
|
val parse_expression : string -> (AST.expr, parser_error) result
|
|
|
|
(** Preprocess a given PascaLIGO file and preprocess it. *)
|
|
val preprocess : string -> (Buffer.t, parser_error) result
|