Microsoft.JScript.ASTList.PartiallyEvaluate C# (CSharp) Method

PartiallyEvaluate() private method

private PartiallyEvaluate ( ) : AST
return 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;
      }