package wax-lib

  1. Overview
  2. Docs
Libraries for Wax, a Rust-like syntax for WebAssembly

Install

dune-project
 Dependency

Authors

Maintainers

Sources

wax-v0.2.0.tbz
sha256=4361e1324b7754a4c08ab5b505df32061f3ce0cea60443fd0d3699e0fa796b32
sha512=fcc756d2f160ba90a9aa1131f2ab22ed7f45466ccd658c21cf9df6868a6aab0cee7f404719d698a379958802f9820398f2fe0685ecc4dda018ca4f653294e39b

doc/wax-lib.utils/Wax_utils/Parsing/Make_parser/index.html

Module Parsing.Make_parserSource

Make plus a fast parser, whose only role is speed on the happy path: parse_from_string tries it and, on a syntax error, falls back to the core's incremental parser to produce the message. Same result signature as Make. The CLI uses this; an in-process consumer can use Make directly.

Parameters

module Output : sig ... end
module Tokens : sig ... end
module _ : sig ... end
module _ : sig ... end
module _ : sig ... end
module _ : sig ... end

Signature

Sourceval parse : ?color:Colors.flag -> filename:string -> unit -> Output.t * Trivia.context

As Make.parse, using the fast parser on the happy path.

Sourceval parse_from_string : ?color:Colors.flag -> filename:string -> string -> Output.t * Trivia.context

As Make.parse_from_string, using the fast parser on the happy path.

Sourceval parse_diagnostics : filename:string -> string -> (Output.t * Trivia.context, syntax_error) result
Sourceval parse_recover : filename:string -> sync:(Tokens.token -> sync_class) -> ?insert:(Tokens.token * Message.t * bool * string) list -> ?closers:(Tokens.token * string) list -> ?barrier:(Tokens.token * (Tokens.token -> bool) * (Tokens.token -> bool)) -> string -> Output.t option * syntax_error list * Trivia.context

As Make.parse_recover. (Recovery always uses the incremental engine; there is no fast-path variant.)