toDecimalLexer top-level property

Parser<ToDecimalParser> toDecimalLexer
final

identifies toDecimals

Implementation

final Parser<ToDecimalParser> toDecimalLexer =
    (string('toDecimal()') | string('.toDecimal()')).map(
      (_) => ToDecimalParser(),
    );