예제 #1
0
파일: Sum.java 프로젝트: inqwell/inq
 public void visitAnyByte(ByteI b) {
   // Only called when we are setting up the result
   AnyInt i = new AnyInt();
   if (b.isNull()) {
     i.setNull();
     isNull_ = true;
   } else i.setValue(b.getValue());
   sum_ = i;
 }
예제 #2
0
파일: Equals.java 프로젝트: inqwell/inq
 public void visitAnyByte(ByteI b) {
   result_ = getBooleanResult(b.equals(op2_));
 }