aggregateLexer top-level property
identifies aggregates
Implementation
final Parser<AggregateParser> aggregateLexer =
(string('aggregate(') | string('.aggregate('))
.map((_) => AggregateParser());
identifies aggregates
final Parser<AggregateParser> aggregateLexer =
(string('aggregate(') | string('.aggregate('))
.map((_) => AggregateParser());