DotNetWebToolkit.Cil2Js.Ast.ExprBinary.ExprBinary C# (CSharp) Method

ExprBinary() public method

public ExprBinary ( Ctx ctx, BinaryOp op, TypeReference type, Expr left, Expr right ) : System
ctx Ctx
op BinaryOp
type Mono.Cecil.TypeReference
left Expr
right Expr
return System
        public ExprBinary(Ctx ctx, BinaryOp op, TypeReference type, Expr left, Expr right)
            : base(ctx) {
            this.Op = op;
            this.type = type;
            this.Left = left;
            this.Right = right;
        }