GrammarParser constructor
GrammarParser(
- String text
Implementation
GrammarParser(this.text) {
if (text == null) {
throw new ArgumentError('text: $text');
}
_input = _toCodePoints(text);
_inputLen = _input.length;
reset(0);
}