public override void FillQueryTokens(List <QueryToken> list)
 {
     ValueProvider.FillQueryTokens(list);
     AnyBlock.FillQueryTokens(list);
     if (NotAnyBlock != null)
     {
         NotAnyBlock.FillQueryTokens(list);
     }
 }
예제 #2
0
        public override void FillTokens(List <QueryToken> tokens)
        {
            ValueProvider.FillQueryTokens(tokens);

            this.ForeachBlock !.FillTokens(tokens);
        }
예제 #3
0
 public override void FillTokens(List <QueryToken> tokens)
 {
     ValueProvider.FillQueryTokens(tokens);
 }
 public override void FillQueryTokens(List <QueryToken> list)
 {
     ValueProvider.FillQueryTokens(list);
     Block.FillQueryTokens(list);
 }