followSet method
Returns the follow-set of a parser
.
The follow-set of a parser is the list of terminal parsers that can
appear immediately after parser
. Includes sentinel, if the parse can
complete when starting at root.
Implementation
Iterable<Parser> followSet(Parser parser) => _followSet[parser]!;