countLexer top-level property

Parser<CountParser> countLexer
final

identifies counts

Implementation

final Parser<CountParser> countLexer = (string('count()') | string('.count()'))
    .map((_) => CountParser());