notLexer top-level property

Parser<FpNotParser> notLexer
final

identifies nots

Implementation

final Parser<FpNotParser> notLexer = (string('not()') | string('.not()')).map(
  (_) => FpNotParser(),
);