upperLexer top-level property

Parser<UpperParser> upperLexer
final

identifies uppers

Implementation

final Parser<UpperParser> upperLexer = (string('upper()') | string('.upper()'))
    .map((_) => UpperParser());