EndOfInputWithBetterFailureParser class
A parser that succeeds at the end of input.
OR results with an failure with the message of the owning parser
Inspired by EndOfInputParser
- Available extensions
Constructors
- EndOfInputWithBetterFailureParser.new(Parser parser)
Properties
Methods
-
copy(
) → EndOfInputWithBetterFailureParser - Returns a shallow copy of the receiver.
-
endWithBetterFailure(
) → Parser< R> -
Available on Parser<
R> , provided by the EndWithBetterFailureExtension extension -
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.
inherited
-
hasEqualProperties(
covariant EndOfInputWithBetterFailureParser other) → bool - Compare the properties of two parsers.
-
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< void> -
Returns the parse result of the
input
.inherited -
parseOn(
Context context) → Result< void> - 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 inParser.children
.inherited -
toString(
) → String - A string representation of this object.
-
valueContextMap<
S> (Callback2< R, S> callback, {bool hasSideEffects = true}) → Parser<S> -
Available on Parser<
Inspired byR> , provided by the ValueContextMapParserExtension extensionMapParserExtension
: with te addition that Callback2 also provides the current parser position for error or warnings.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited