Skip to main content
Module

x/ohm_js/index.d.ts>pexprs

A library and language for building parsers, interpreters, compilers, etc.
Go to Latest
variable pexprs
import { pexprs } from "https://deno.land/x/ohm_js@v17.4.0/index.d.ts";

Constructors for parsing expressions (aka pexprs). (Except for any and end, which are not constructors but singleton instances.)

type

{ PExpr: PExpr; Terminal: Terminal; Range: Range; Param: Param; Alt: Alt; Extend: Extend; Splice: Splice; Seq: Seq; Iter: Iter; Star: Star; Plus: Plus; Opt: Opt; Not: Not; Lookahead: Lookahead; Lex: Lex; Apply: Apply; UnicodeChar: UnicodeChar; CaseInsensitiveTerminal: CaseInsensitiveTerminal; any: PExpr; end: PExpr; }