integerLexer top-level property
Implementation
final Parser<IntegerParser> integerLexer =
digit().plus().flatten().map((value) => IntegerParser(value));
final Parser<IntegerParser> integerLexer =
digit().plus().flatten().map((value) => IntegerParser(value));