unionFunctionLexer top-level property

Parser<UnionFunctionParser> unionFunctionLexer
final

identifies unionFunctions

Implementation

final Parser<UnionFunctionParser> unionFunctionLexer =
    (string('union(') | string('.union(')).map(
      (_) => UnionFunctionParser.empty(),
    );