parse method
- String source
override
Attempts to parse the source string matching this element.
Returns a ParseResult containing the parsed lexeme and remaining string on success. On failure, returns a failed ParseResult.
Implementation
@override
ParseResult parse(String source) {
// Delegate to the shared sequence parsing logic
return sequence._parseSequenceWithBacktracking(source, toString());
}