toDateTimeLexer top-level property

Parser<ToDateTimeParser> toDateTimeLexer
final

identifies toDateTimes

Implementation

final Parser<ToDateTimeParser> toDateTimeLexer =
    (string('toDateTime()') | string('.toDateTime()')).map(
      (_) => ToDateTimeParser(),
    );