Esempio n. 1
0
 public TermBinary(Term argLeft, Term argRight, BinaryOpCode op)
 {
     ArgLeft  = argLeft;
     ArgRight = argRight;
     Op       = op;
 }
Esempio n. 2
0
 public BinaryOp(CliType type, BinaryOpCode code, AstNode left, AstNode rght) : base(type)
 {
     this.code = code;
     this.left = left;
     this.rght = rght;
 }