TrimmingParser<R> class
Null safety
A parser that silently consumes input of another parser around its delegate.
- Inheritance
- Object
- Parser<
R> - DelegateParser<
R, R> - TrimmingParser
- Available Extensions
- AcceptParser
- AndParserExtension
- CastListParserExtension
- CastParserExtension
- ChoiceParserExtension
- ContinuationParserExtension
- EndOfInputParserExtension
- FlattenParserExtension
- GreedyRepeatingParserExtension
- LabelParserExtension
- LazyRepeatingParserExtension
- MapParserExtension
- MatchesParser
- MatchesSkippingParser
- NotParserExtension
- OptionalParserExtension
- PatternParserExtension
- PossessiveRepeatingParserExtension
- SeparatedByParserExtension
- SequenceParserExtension
- SettableParserExtension
- SkipParserExtension
- TokenParserExtension
- TrimmingParserExtension
- WhereParserExtension
Constructors
-
TrimmingParser(Parser<
R> delegate, Parser<void> left, Parser<void> right)
Properties
-
children
→ List<
Parser> -
Returns a list of directly referenced parsers. [...]
read-only, override
-
delegate
↔ Parser<
R> -
The parser this parser delegates to.
read / write, inherited
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
-
left
↔ Parser<
void> -
Parser that consumes input before the delegate.
read / write
-
right
↔ Parser<
void> -
Parser that consumes input after the delegate.
read / write
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
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.@internal, @nonVirtual, inherited -
copy(
) → TrimmingParser< 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. [...]
@nonVirtual, @protected, inherited
-
hasEqualProperties(
covariant Parser other) → bool -
Compare the properties of two parsers. [...]
@mustCallSuper, @protected, inherited
-
isEqualTo(
Parser other, [Set< Parser> ? seen]) → bool -
Recursively tests for structural equality of two parsers. [...]
@nonVirtual, inherited
-
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
. [...]@nonVirtual, inherited -
parseOn(
Context context) → Result< R> -
Primitive method doing the actual parsing. [...]
override
-
replace(
covariant Parser source, covariant Parser target) → void -
Changes the receiver by replacing
source
withtarget
. Does nothing ifsource
does not exist in Parser.children. [...]override -
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited