fastParse method
Implementation
@override
bool fastParse(State<StringReader> state) {
if (state.pos >= state.input.length) {
return true;
}
state.fail<Object?>(const ErrorExpectedEndOfInput());
return false;
}
@override
bool fastParse(State<StringReader> state) {
if (state.pos >= state.input.length) {
return true;
}
state.fail<Object?>(const ErrorExpectedEndOfInput());
return false;
}