Beispiel #1
0
 public static bool Many(this Lexer lexer, ISymbol symbol) => lexer.Many(l => l.Yield(symbol));
Beispiel #2
0
 public static bool Yield(this Lexer lexer, ISymbol symbol) => lexer.Yield(new SymbolRule(symbol));