OverrideMessageParser<R> class

Overrides the error message when the super.delegate fails.

Available extensions

Constructors

OverrideMessageParser.new(Parser<R> delegate, String message)

Properties

children List<Parser>
Returns a list of directly referenced parsers.
no setterinherited
delegate → Parser<R>
final
hashCode int
The hash code for this object.
no setterinherited
message String
Error message to indicate parse failures with.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copy() OverrideMessageParser<R>
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 FlattenParser 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<R>
Returns the parse result of the input.
inherited
parseOn(Context context) → Result<R>
Primitive method doing the actual parsing.
replace(Parser source, Parser target) → void
Changes the receiver by replacing source with target. Does nothing if source does not exist in Parser.children.
inherited
toString() String
A string representation of this object.
inherited
valueContextMap<S>(Callback2<R, S> callback, {bool hasSideEffects = true}) → Parser<S>

Available on Parser<R>, provided by the ValueContextMapParserExtension extension

Inspired by MapParserExtension: with te addition that Callback2 also provides the current parser position for error or warnings.

Operators

operator ==(Object other) bool
The equality operator.
inherited