Microsoft.JScript.ASTList.PartiallyEvaluate C# (CSharp) Méthode

PartiallyEvaluate() private méthode

private PartiallyEvaluate ( ) : AST
Résultat AST
      internal override AST PartiallyEvaluate(){
        AST[] list = this.list;
        for (int i = 0, n = this.count; i < n; i++)
          list[i] = list[i].PartiallyEvaluate();
        return this;
      }