Exemplo n.º 1
0
 public TableGrammar After(Action action)
 {
     return After(action.ToGrammarAction());
 }
Exemplo n.º 2
0
 public TableGrammar Before(Action action)
 {
     return Before(action.ToGrammarAction());
 }
Exemplo n.º 3
0
 public SimpleGrammar(string text, Action action)
     : this(text, action.ToGrammarAction())
 {
 }