Parser<R> class
Null safety
Abstract base class of all parsers that produce a parse result of type R
.
- Implementers
- Available Extensions
- AcceptParser
- AndParserExtension
- CastListParserExtension
- CastParserExtension
- ChoiceParserExtension
- ContinuationParserExtension
- EndOfInputParserExtension
- FlattenParserExtension
- GreedyRepeatingParserExtension
- LabelParserExtension
- LazyRepeatingParserExtension
- MapParserExtension
- MatchesParser
- MatchesSkippingParser
- NotParserExtension
- OptionalParserExtension
- PatternParserExtension
- PermuteParserExtension
- PickParserExtension
- PossessiveRepeatingParserExtension
- SeparatedByParserExtension
- SequenceParserExtension
- SettableParserExtension
- SkipParserExtension
- TokenParserExtension
- TrimmingParserExtension
- WhereParserExtension
- Annotations
Constructors
- Parser()
Properties
Methods
-
captureResultGeneric<
T> (T callback(Parser< R> self)) → T -
Internal helper to capture the generic type
R
of the parse result from extension methods. This makes it possible to wrap the parser without loosing type information. -
copy(
) → Parser< R> - Returns a shallow copy of the receiver.
-
fastParseOn(
String buffer, int position) → int - Primitive method doing the actual parsing.
-
hasEqualChildren(
covariant Parser other, Set< Parser> seen) → bool - Compare the children of two parsers.
-
hasEqualProperties(
covariant Parser other) → bool - Compare the properties of two parsers.
-
isEqualTo(
Parser other, [Set< Parser> ? seen]) → bool - Recursively tests for structural equality of two parsers.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
parse(
String input) → Result< R> -
Returns the parse result of the
input
. -
parseOn(
Context context) → Result< R> - Primitive method doing the actual parsing.
-
replace(
Parser source, Parser target) → void -
Changes the receiver by replacing
source
withtarget
. Does nothing ifsource
does not exist in Parser.children. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited