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