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