Esempio n. 1
0
 public BinaryArithExpr(ArithExpr left, ArithExpr right, ArithNodeType type)
     : base(type, left, right)
 {
 }
Esempio n. 2
0
 public UnaryArithExpr(ArithExpr operand, ArithNodeType type)
     : base(type, operand)
 {
 }