AST.MultAssign.ConstructBinaryOp C# (CSharp) Method

ConstructBinaryOp() public method

public ConstructBinaryOp ( ) : Expr
return Expr
        public override Expr ConstructBinaryOp() => Multiply.Create(this.Left, this.Right);
    }