Ejemplo n.º 1
0
 private void visitBinaryLogicalInstructionRead(BitwiseBinaryInstruction instr) {
   ValueRef op1 = instr.getOp1();
   ValueRef op2 = instr.getOp2();
   visitValueRef(op1);
   visitValueRef(op2);
 }
Ejemplo n.º 2
0
 @Override
 public ResolvedType caseBitwiseBinaryInstruction(BitwiseBinaryInstruction object) {
   return resolve(object.getType());
 }