SequenceParser<R> class
A parser that parses a sequence of parsers.
- Inheritance
-
- Object
- Parser<
List< R> > - ListParser<
R, List< R> > - SequenceParser
- Available extensions
Constructors
-
SequenceParser.new(Iterable<
Parser< children)R> >
Properties
Methods
-
copy(
) → SequenceParser< R> -
Returns a shallow copy of the receiver.
override
-
fastParseOn(
String buffer, int position) → int -
Primitive method doing the actual parsing.
override
-
hasEqualChildren(
covariant Parser other, Set< Parser> seen) → bool -
Compare the children of two parsers.
inherited
-
hasEqualProperties(
covariant Parser other) → bool -
Compare the properties of two parsers.
inherited
-
isEqualTo(
Parser other, [Set< Parser> ? seen]) → bool -
Recursively tests for structural equality of two parsers.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
parse(
String input, {int start = 0}) → Result< List< R> > -
Returns the parse result of the
input
.inherited -
parseOn(
Context context) → Result< List< R> > -
Primitive method doing the actual parsing.
override
-
permute(
List< int> indexes) → Parser<List< R> > -
Available on Parser<
Returns a parser that transforms a successful parse result by returning the permuted elements atList< , provided by the PermuteParserExtension extensionR> >indexes
of a list. Negative indexes can be used to access the elements from the back of the list. -
pick(
int index) → Parser< R> -
Available on Parser<
Returns a parser that transforms a successful parse result by returning the element atList< , provided by the PickParserExtension extensionR> >index
of a list. A negative index can be used to access the elements from the back of the list. -
replace(
Parser source, Parser target) → void -
Changes the receiver by replacing
source
withtarget
. Does nothing ifsource
does not exist in Parser.children.inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited