Module: nupp.peg
Parsing-expression grammars#
nupp.peg compiles textual parsing-expression grammars into reusable pure-Lua matchers. The same grammar language works inside comptime and at runtime, and neither path requires LPeg to be installed.
A parsing-expression grammar, or PEG, describes a deterministic top-down parse. Its choice operator is ordered: p / q tries q only if p fails. This differs from a regular expression alternation that may choose whichever alternative makes the complete expression work.
Compiling at either phase#
nupp.peg.compile(source, options?) is the only constructor.
A constant call inside comptime is parsed and validated by the compiler. The compiler derives nupp.peg.Peg<R...> from the validated capture shape, so recognizers, substring and position captures, and collections do not need result annotations. The emitted program receives an already-materialized matcher and does not carry the textual grammar parser unless some runtime call also needs it.
A normal call with literal grammar text gets the same inferred Peg<R...> type. It still compiles at runtime; parsed plans are cached by grammar source and backend, so compiling the same grammar again avoids parsing, lowering, and code-generation work. A genuinely dynamic string returns Peg<...any> because its capture shape is not yet known.
Prefer comptime for source-owned constant grammars. Runtime compilation is for configuration, plugins, user-selected formats, and other genuinely dynamic input.
Every Peg<R...> satisfies nupp.peg.Matcher<R...>. A generic adapter can forward the complete result pack without collecting it into another value:
Matching and positions#
A matcher can be called directly or through match:
Matching begins at byte position 1 unless init is supplied. Positions are 1-based. A negative init counts from the end like Lua string operations. Positions before 1 clamp to 1, and positions after #subject + 1 fail.
A recognizer with no captures returns the byte position immediately after its match. It does not return a boolean. Failure returns nil.
Use find when the grammar may begin after the starting position. It returns the first byte, the exclusive next byte, and every grammar result without constructing a match record.
For Peg<R...>, success has the pack (integer, integer, R...); failure has (nil, nil). The byte range is half-open, [first, nextPosition), so an empty match has equal positions. On failure the positions are nil. Test first for success because a grammar action may successfully return nil or false. A recognizer's third result is the same next-byte position it returns from match.
Use isMatch when only existence matters. It performs the same search and returns only a boolean:
The default init is 1 and its normalization is the same as for match. The position after the last byte is included, allowing an empty or end assertion to match there. Use match when the exact starting position is already known.
Repeated matching#
forEachMatch visits non-overlapping matches without constructing match records or an iterator closure. Its callback receives first, nextPosition, R..., the same values as find, and the return value is the number of visits:
The next search begins at the exclusive end of a consuming match. An empty match instead advances one byte, so an empty grammar cannot repeatedly report the same position. The boundary at #subject + 1 remains eligible and is visited at most once. For example, '' visits positions 1, 2, and 3 in a two-byte subject.
The optional init controls the first position considered and follows find's normalization rules. Text before it is not visited. The visitor's return value is ignored; an error is the way to abort a traversal.
Replacement#
replace replaces the first match, while replaceAll replaces every non-overlapping match. A string replacement is inserted literally:
Replacement strings do not interpret $, %, or capture references. Use a typed callback when replacement text depends on the match. It receives the raw positions followed by every grammar result and must return a string:
Neither operation builds match records. A callback can use a substring capture as above, use another typed grammar result, or slice the original subject with the reported half-open range. When no match exists, the original string is returned. The optional init leaves the prefix before it unchanged.
Empty matches insert without removing a byte. replaceAll then preserves one byte while advancing to the next search position; an empty grammar therefore turns "ab" into "-a-b-" when replacing with "-". This is the same progress rule used by forEachMatch.
Append !. to require the end of the subject and therefore a complete match:
All positions and classes are byte-oriented. The grammar does not decode UTF-8 codepoints. A literal UTF-8 character is matched as its encoded byte sequence, while . consumes one byte rather than one Unicode character.
Expression syntax#
Whitespace between expressions is ignored. A -- comment outside a quoted literal or byte class continues to the end of the line.
Precedence runs from tightest to loosest:
- primary expressions such as literals, classes, captures, and groups;
- repetition and capture-transformation suffixes;
- predicates;
- sequence;
- ordered choice
/.
Parentheses can make any grouping explicit.
Literals and any byte#
Single-quoted and double-quoted literals match their contents exactly:
'GET'
"Content-Type"The grammar notation does not process backslash escapes. A backslash in a literal is a literal backslash byte. Use the other quote delimiter when the text contains one kind of quote:
"it's"
'say "yes"'An empty literal '' succeeds without consuming input. It is occasionally useful in a choice, but it must not appear inside * or + because such a loop could never advance.
. matches any one byte. It fails at the end of the subject.
Byte classes#
Square brackets match one byte from a set. Ranges are inclusive:
[abc]
[a-zA-Z_]
[0-9a-fA-F]^ immediately after [ complements the class:
[^0-9]The predefined ASCII classes are:
| Short | Long | Bytes |
|---|---|---|
%a |
%alpha |
ASCII letters |
%c |
%cntrl |
control bytes and DEL |
%d |
%digit |
decimal digits |
%g |
%graph |
printable non-space ASCII bytes |
%l |
%lower |
lowercase ASCII letters |
%nl |
newline | |
%p |
%punct |
ASCII punctuation |
%s |
%space |
ASCII whitespace |
%u |
%upper |
uppercase ASCII letters |
%w |
%alnum |
ASCII letters and digits |
%x |
%xdigit |
hexadecimal digits |
The one-letter uppercase forms %A, %C, %D, %G, %L, %P, %S, %U, %W, and %X match the complement of their lowercase class. Predefined classes can also appear inside square brackets:
[%a_]
[%w.-]Class contents are literal bytes except for ranges and % classes. An empty class and a descending range such as [z-a] are errors.
Sequence#
Adjacent expressions form a sequence and must match in order:
'HTTP/' [0-9] '.' [0-9]Spacing is optional when token boundaries remain clear, but whitespace usually makes grammars easier to read.
Ordered choice#
p / q tries p first and uses q only when p fails:
'GET' / 'POST' / 'PUT'Put a longer literal before its prefix. With 'in' / 'integer', the first arm succeeds after two bytes and the second arm is never considered. Write 'integer' / 'in' instead, or add a boundary assertion to each arm.
PEG backtracking is local and deterministic. If a later expression fails, the parser can return to a still-open choice and try its next arm. Ordinary -> transformations are deferred until the entire match succeeds, so speculative paths do not run them. Match-time => definitions are intentionally immediate, as in LPeg.
Repetition#
Suffix operators repeat the expression immediately to their left:
| Form | Meaning |
|---|---|
p? |
zero or one |
p* |
zero or more |
p+ |
one or more |
p^4 |
exactly four |
p^+4 |
at least four |
p^-4 |
at most four |
Use parentheses to repeat a sequence:
[0-9]+ ('.' [0-9]+)?Repetition is possessive in PEG fashion. It consumes as much as it can and does not backtrack to a smaller count merely to make a following expression work. A repeated expression must consume at least one byte whenever it succeeds. Nullable repetition, such as ('')*, is rejected rather than allowed to loop forever.
Explicit repetition counts are limited to 4096.
Predicates and end of input#
&p succeeds when p would succeed and consumes nothing. !p succeeds when p would fail and also consumes nothing.
&[a-z] [a-z]+
!('if' !.) [a-z]+ !.The first expression requires a lowercase next byte before consuming a word. The second rejects the complete keyword if while still accepting identifiers beginning with those letters, such as iffy.
!. is the standard end-of-input assertion: it succeeds only when . cannot consume another byte.
Captures and result types#
{ p } captures the substring consumed by p:
{} captures the current byte position without consuming input:
{| p |} collects every capture produced by p into one table:
Adjacent captures are adjacent native Lua results. For example, the following grammar is inferred as Peg<(string, integer)> and returns two values without a tuple or table allocation:
The parentheses in Peg<(string, integer)> delimit one explicit type-pack argument; they do not construct a tuple type or a runtime tuple value. Usually the compiler infers that pack, so the annotation is only needed at an API boundary.
{| ... |} and p -> {} remain explicit table captures. Use one when the grammar semantically produces a collection, especially around capture-producing repetition; the table allocation then comes from the grammar rather than from the matcher API.
Every ordered-choice arm must produce the same capture shape. This keeps the inferred Peg<R...> result pack true regardless of which arm matches.
Groups, substitution, and back captures#
{: name: p :} groups the captures made by p under name. Inside a table capture, that group becomes a named field. Leave out name: to make an anonymous group. =name matches the exact string stored by an earlier named group:
{~ p ~} is LPeg's substitution capture. It returns the complete substring consumed by p, replacing each captured range inside it by that capture's value:
Transformations and definitions#
The suffix p -> {} collects p's captures into a table. p -> n selects capture number n; zero suppresses all captures. p -> 'format' uses LPeg's capture format, where %0 is the whole text consumed by p, %1 through %9 select captures, and %% writes a percent sign.
p -> name applies the value named by name. A function receives p's captures, or the complete matched substring when p has no explicit capture. LPeg-compatible string, number, and table transformations are accepted too. Ordinary function transformations are deferred until the whole match wins.
For a runtime grammar, pass named values in CompileOptions.definitions:
Here Integer is inferred as nupp.peg.Peg<integer> from the transformation's declared return pack. A transformation may return several values; they are spliced into the grammar's surrounding result pack. If either the grammar or definitions table is dynamic, annotate or cast the result where the application has the missing knowledge.
For a static grammar, declare a factory whose parameter is a closed record containing exactly the named callbacks:
Every named slot is required and extra slots are rejected for static factories. CompileOptions.actions remains a deprecated alias for older Nupp grammars.
The other LPeg re definition operators retain their distinct meanings:
%nameuses a supplied value as a pattern. Strings match literally, non-negative integers match that many bytes, and booleans always succeed or fail.p => nameinvokes a match-time function with the subject, current byte position, and captures. It returns a new position followed by replacement captures, or nil to fail. Because it participates in parsing, backtracking may invoke it speculatively.p >> namecombines the previous capture withp's capture.p ~> namefoldsp's captures from left to right.
Rules and recursion#
A source beginning with name <- is a grammar made of rule definitions. The first rule is the start rule:
start <- value !.
value <- 'x' / '(' value ')'Refer to a rule as name or <name>. Angle brackets are useful where adjoining text would make the boundary unclear.
Rules may recurse after consuming input. Direct and indirect left recursion are rejected because a top-down PEG cannot enter a rule again at the same position:
-- Invalid: value calls itself before consuming anything.
value <- value ',' item / itemRewrite left-recursive lists as a head followed by repetition:
value <- item (',' item)*Every reference must resolve, rule names must be unique, and expression nesting is limited to 256 levels.
Backends#
CompileOptions.backend accepts "auto" or "vm".
auto is the default. Recognition and simple captures lower to validated bytecode with constant pools and search metadata. The automatic backend translates that program into cached Lua matcher and search functions. Fixed-width, repeated-byte, and safe whole-match searches are emitted as straight-line functions; other ordinary programs get an opcode-specialized Lua dispatch loop. LuaJIT can then compile those functions when they become hot. Stateful LPeg captures retain the canonical capture graph and use its executor.
vm interprets bounded recognition bytecode without generating Lua source:
Use vm for cold or one-shot dynamic grammars, reproducible backend comparisons, or hosts that disallow loadstring. It retains bytecode-owned fixed and scan peepholes, then uses the opcode loop for ordinary programs. Stateful captures use the same graph executor in either backend. The VM never invokes runtime source generation. auto pays a one-time loadstring cost per cached program; it does not regenerate code for each match. Neither backend directly allocates native executable memory, though LuaJIT may compile hot Lua in its usual way.
Repeated byte or class plans also emit a direct byte-scanning forEachMatch loop, so traversal does not re-enter the matcher or Lua pattern engine for every match. For patterns that safely map to a Lua pattern, automatic literal replaceAll gets a fused generated path. Typed replacement callbacks retain the general search loop for plans that cannot use direct traversal.
LPeg re relationship#
The expression syntax is LPeg 1.1 re syntax: the same operators have the same parsing and capture meanings, and the test suite runs the official re module as a differential oracle. Nupp gives those open-ended Lua results a static R... pack and also exposes find, isMatch, repeated matching, and replacement directly on the compiled matcher.
A bad expression fails during comptime for a static grammar or during compile for a runtime grammar, with a line and byte-column location.
Compiles textual parsing-expression grammars into reusable matchers.
nupp.peg has one construction operation, compile. It accepts the same expression language during compilation and at runtime. A constant call inside a comptime block is validated and materialized into the program; a call with a runtime string parses and caches the grammar when the program runs. Neither form requires LPeg to be installed.
PEGs use ordered choice. first / second tries second only when first fails, and a later failure may backtrack into an earlier choice. Sequence is written by placing expressions beside one another. The usual precedence, from tightest to loosest, is primary expressions, repetition and actions, predicates, sequence, then /.
Expression quick reference#
| Expression | Meaning |
|---|---|
'text' or "text" |
the exact bytes in text |
. |
any one byte |
[a-z_] |
one byte from a class or range |
[^0-9] |
one byte outside a class |
%a, %d, %s, %w, %x |
ASCII letter, digit, space, alphanumeric, or hex |
byte; any other %name reads a definition |
|
p q |
p followed by q |
p / q |
ordered choice: try p, then q |
p*, p+, p? |
zero or more, one or more, or optional p |
p^4, p^+4, p^-4 |
exactly, at least, or at most four repetitions |
&p, !p |
require p, or require that p fails, without consuming input |
{ p } |
capture the substring consumed by p |
{} |
capture the current 1-based byte position |
| `{ | p |
{: name: p :} |
group captures under name; omit name: for an anonymous group |
{~ p ~} |
substitute captured text into the substring consumed by p |
=name |
match the text previously captured by named group name |
p -> {} |
collect p's captures in a table |
p -> n, p -> 'text' |
select capture n, or format captures into text |
p -> name |
transform p through definition name |
p => name |
invoke match-time definition name |
p >> name, p ~> name |
accumulate captures, or fold them left |
name <- p |
define a grammar rule; the first rule is the start rule |
name or <name> |
refer to a rule inside a grammar |
!. |
require end of input |
Whitespace separates expressions and is otherwise ignored. -- starts a comment extending to the end of the line. Quoted strings contain their bytes literally; this grammar notation does not process backslash escapes. Use the other quote character when a literal needs one kind of quote.
Recognize a complete identifier#
A successful recognizer returns the byte position immediately after the match. Add !. when the pattern must consume the complete subject. Without it, a prefix match is successful.
Capture and convert a value#
Static grammars with definitions materialize as factories because runtime values cannot be captured during comptime. Runtime grammars instead receive them through CompileOptions.definitions.
Module contents
Types
| Type | Kind | Description |
|---|---|---|
Action | type | A legacy substring transformation callback. |
Actions | type | Legacy runtime transformation callbacks indexed by grammar name. |
Backend | type | The implementation selected after the grammar has been parsed. |
CompileOptions | type | Controls grammar compilation. |
Definitions | type | Values referenced by LPeg re expressions. |
Matcher | interface | A compiled matcher whose result pack is chosen by its declaration. |
Peg | record | A compiled and reusable parsing-expression grammar. |
Functions
| Function | Kind | Description |
|---|---|---|
compile | function | Compiles an LPeg-re-style byte grammar at compile time or runtime. |
Types#
Actiontype#
A legacy substring transformation callback.
Prefer Definitions: LPeg re gives ->, =>, >>, and ~> distinct callback contracts. This alias remains for source compatibility with Nupp's earlier action-only grammar surface.
type Action = function(string): anyActionstype#
Legacy runtime transformation callbacks indexed by grammar name.
Prefer Definitions. Every grammar slot must be present and unknown names are rejected. Static grammars use a precisely typed factory record instead.
type Actions = {[string]: Action}Backendtype#
The implementation selected after the grammar has been parsed.
auto is the default. For recognition and simple captures it generates cached Lua matcher, search, and repeated-traversal functions from canonical bytecode. vm interprets that program and never invokes runtime source generation. LPeg's stateful capture forms use the canonical capture graph executor in both modes. All paths share one matcher shell and identical semantics.
type Backend = 'auto' | 'vm'CompileOptionstype#
Controls grammar compilation.
These options are deliberately small. At runtime, grammar source plus backend identifies the cached parse and plan; definitions are bound to the returned matcher and are not part of the cache key. Static grammars may also select a backend, while definitions remain typed factory inputs.
type CompileOptions = {
--- Values named by `%name`, `-> name`, `=> name`, `>> name`, or `~> name`.
definitions: Definitions?,
--- Deprecated alias for `definitions` retained for existing Nupp grammars.
actions: Actions?,
--- Matcher implementation, `auto` when omitted.
backend: Backend?
}Definitionstype#
Values referenced by LPeg re expressions.
A %name primary uses a string, non-negative byte count, or boolean as a pattern. p -> name accepts the same function, table, string, or capture number transformations as LPeg. =>, >>, and ~> require functions with their corresponding match-time, accumulator, and fold contracts.
type Definitions = {[string]: any}Matcherinterface#
A compiled matcher whose result pack is chosen by its declaration. Generic adapters forward R... without collecting it into a table or tuple.
interface Matcher<R...>
match: function(self, subject: string, init: integer?): ((R...) | (nil))
find: function(self, subject: string, init: integer?): ((integer, integer, R...) | (nil, nil))
isMatch: function(self, subject: string, init: integer?): boolean
forEachMatch: function(
self,
subject: string,
visitor: function(first: integer, nextPosition: integer, R...),
init: integer?
): integer
replace: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): string
replaceAll: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): string
__call: function(self, subject: string, init: integer?): ((R...) | (nil))
endType parameters
| Name | Description |
|---|---|
R |
Methods
match
match: function(self, subject: string, init: integer?): ((R...) | (nil))Arguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
init | integer? |
find
find: function(self, subject: string, init: integer?):
((integer, integer, R...) | (nil, nil))Arguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
init | integer? |
isMatch
isMatch: function(self, subject: string, init: integer?): booleanArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
init | integer? |
Returns
| Type | Description |
|---|---|
boolean |
forEachMatch
forEachMatch: function(
self,
subject: string,
visitor: function(
first: integer,
nextPosition: integer,
R...
),
init: integer?
): integerArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
visitor | function(
first: integer,
nextPosition: integer,
R...
) | |
init | integer? |
Returns
| Type | Description |
|---|---|
integer |
replace
replace: function(
self,
subject: string,
replacement: string | function(
first: integer,
nextPosition: integer,
R...
): string,
init: integer?
): stringArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
replacement | string | function(
first: integer,
nextPosition: integer,
R...
): string | |
init | integer? |
Returns
| Type | Description |
|---|---|
string |
replaceAll
replaceAll: function(
self,
subject: string,
replacement: string | function(
first: integer,
nextPosition: integer,
R...
): string,
init: integer?
): stringArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | |
replacement | string | function(
first: integer,
nextPosition: integer,
R...
): string | |
init | integer? |
Returns
| Type | Description |
|---|---|
string |
Pegrecord#
A compiled and reusable parsing-expression grammar.
R... is the grammar's native Lua result pack. A recognizer or {} position capture contributes integer, { p } contributes string, and adjacent captures contribute adjacent results. No tuple or table is allocated merely because a grammar returns several values. An explicit {| ... |} table capture still returns one table because the grammar requested one.
Matchers are immutable and callable. peg(subject, init) is exactly peg:match(subject, init).
record Peg<R...> is Matcher<R...>
match: function(self, subject: string, init: integer?): ((R...) | (nil))
find: function(self, subject: string, init: integer?): ((integer, integer, R...) | (nil, nil))
isMatch: function(self, subject: string, init: integer?): boolean
forEachMatch: function(
self,
subject: string,
visitor: function(first: integer, nextPosition: integer, R...),
init: integer?
): integer
replace: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): string
replaceAll: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): string
__call: function(self, subject: string, init: integer?): ((R...) | (nil))
endType parameters
| Name | Description |
|---|---|
R |
Methods
match
Matches subject beginning at a 1-based byte position.
The default init is 1. A negative position counts from the end in the same way as Lua string operations; positions before the beginning clamp to 1, and positions after #subject + 1 fail. Success returns the grammar's capture or, for a recognizer, the next byte position. Failure returns nil.
match: function(self, subject: string, init: integer?): ((R...) | (nil))Arguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to match |
init | integer? | 1-based starting byte position, 1 when omitted |
find
Finds the first match at or after init without allocating match metadata.
Success returns first, next, R.... The byte range is half-open: [first, next), so an empty match has first == next. The trailing values are the ordinary grammar results; for a recognizer the result is the same next-byte position. Failure returns nil positions. Test first, rather than value, because an action may successfully return nil or false.
find: function(self, subject: string, init: integer?):
((integer, integer, R...) | (nil, nil))Arguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to search |
init | integer? | 1-based first byte position to try, 1 when omitted |
isMatch
Reports whether the grammar matches anywhere at or after init.
Unlike match, this searches successive 1-based byte positions. The default init is 1, and negative and out-of-range positions follow the same rules as match. The position after the final byte is searched too, so a grammar that accepts an empty suffix can match there.
isMatch: function(self, subject: string, init: integer?): booleanArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to search |
init | integer? | 1-based first byte position to try, 1 when omitted |
Returns
| Type | Description |
|---|---|
boolean |
forEachMatch
Visits every non-overlapping match at or after init without allocating match records or an iterator closure.
The visitor receives first, next, R... in the same form as find. Consuming matches resume at next; an empty match resumes one byte after first, preventing an empty grammar from stalling. The position after the final byte is still visited when it matches. Returning from the visitor does not stop iteration.
forEachMatch: function(
self,
subject: string,
visitor: function(first: integer, nextPosition: integer, R...),
init: integer?
): integerArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to search |
visitor | function(first: integer, nextPosition: integer, R...) | called once for each non-overlapping match |
init | integer? | 1-based first byte position to try, 1 when omitted |
Returns
| Type | Description |
|---|---|
integer | the number of matches visited |
replace
Replaces the first match at or after init.
A string replacement is literal. A callback receives first, next, R... and returns the replacement bytes. When nothing matches, the original string is returned. Empty matches insert without consuming a byte.
replace: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): stringArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to search and copy |
replacement | string | function(first: integer, nextPosition: integer, R...): string | literal bytes or a typed replacement callback |
init | integer? | 1-based first byte position to try, 1 when omitted |
Returns
| Type | Description |
|---|---|
string | the replaced string |
replaceAll
Replaces every non-overlapping match at or after init.
Matching resumes at the exclusive end of each consuming match. After an empty match it advances one byte and preserves that skipped byte in the output, so an empty grammar inserts before every remaining byte and once at the end. Text before init is copied unchanged.
replaceAll: function(
self,
subject: string,
replacement: string | function(first: integer, nextPosition: integer, R...): string,
init: integer?
): stringArguments
| Name | Type | Description |
|---|---|---|
? | self | |
subject | string | bytes to search and copy |
replacement | string | function(first: integer, nextPosition: integer, R...): string | literal bytes or a typed replacement callback |
init | integer? | 1-based first byte position to try, 1 when omitted |
Returns
| Type | Description |
|---|---|
string | the replaced string |
Functions#
compilefunction#
Compiles an LPeg-re-style byte grammar at compile time or runtime.
A literal grammar produces a precise Peg<R...> at either phase for ordinary recognition and captures. A dynamic grammar string returns Peg<...any>. A static grammar referring to definitions needs an explicitly typed factory, because runtime values cannot be captured at comptime.
local compile: function(source: string, options: CompileOptions?): Peg<...any>Arguments
| Name | Type | Description |
|---|---|---|
source | string | grammar expression or rule definitions |
options | CompileOptions? | runtime definitions and backend selection |
Returns
| Type | Description |
|---|---|
Peg<...any> | the compiled reusable matcher |