Microsoft.JScript.NumericBinaryAssign.NumericBinaryAssign C# (CSharp) Method

NumericBinaryAssign() private method

private NumericBinaryAssign ( Context context, AST operand1, AST operand2, JSToken operatorTok ) : System
context Context
operand1 AST
operand2 AST
operatorTok JSToken
return System
      internal NumericBinaryAssign(Context context, AST operand1, AST operand2, JSToken operatorTok)
        : base(context, operand1, operand2, operatorTok){
        this.binOp = new NumericBinary(context, operand1, operand2, operatorTok);
        this.metaData = null;
      }