Exemple #1
0
 //for single token
 public void AddRight(IQueryManagers.ITypeToken tk)
 {
     this.tokens.Add(tk);
 }
Exemple #2
0
 public void AddLeft(IQueryManagers.ITypeToken tk)
 {
     this.tokens.Insert(0, tk);
 }
Exemple #3
0
 public ITokenChain AddLeft(IQueryManagers.ITypeToken input_)
 {
     tb.AddLeft(input_);
     return(this);
 }