aggregateLexer top-level property

Parser<AggregateParser> aggregateLexer
final

identifies aggregates

Implementation

final Parser<AggregateParser> aggregateLexer =
    (string('aggregate(') | string('.aggregate('))
        .map((_) => AggregateParser());