Exemple #1
0
 protected QuantifierEntry Between(int from, int to, params Entry[] entries)
 {
     return(new QuantifierEntry(Inline(entries), QuantifierHelper.Between(from, to), QuantifierMode.Greedy));
 }
Exemple #2
0
 protected QuantifierEntry Between(int from, int to, FiniteState state)
 {
     return(new QuantifierEntry(state, QuantifierHelper.Between(from, to), QuantifierMode.Greedy));
 }
Exemple #3
0
 protected QuantifierEntry Between(int from, int to, TOperand operand)
 {
     return(new QuantifierEntry(operand, QuantifierHelper.Between(from, to), QuantifierMode.Greedy));
 }
Exemple #4
0
 protected QuantifierEntry Between(int from, int to, PrimitiveMatchEntry match)
 {
     return(new QuantifierEntry(match, QuantifierHelper.Between(from, to), QuantifierMode.Greedy));
 }
 public ParserQuantifierEntry Between(int from, int to, QuantifierMode mode = QuantifierMode.Greedy)
 {
     return(new ParserQuantifierEntry(this, QuantifierHelper.Between(from, to), mode));
 }
Exemple #6
0
 public QuantifierEntry Between(int from, int to, QuantifierMode mode = QuantifierMode.Greedy)
 {
     return(new QuantifierEntry(new TokenFragmentEntry(this), QuantifierHelper.Between(from, to), mode));
 }