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

PartiallyEvaluate() private method

private PartiallyEvaluate ( ) : AST
return AST
      internal override AST PartiallyEvaluate(){
        this.operand = this.operand.PartiallyEvaluate();
        if (!(this.operand is Binding) || !((Binding)this.operand).RefersToMemoryLocation())
          this.context.HandleError(JSError.DoesNotHaveAnAddress);
        return this;
      }