Ejemplo n.º 1
0
Archivo: Sum.java Proyecto: inqwell/inq
 public void visitAnyShort(ShortI s) {
   // Only called when we are setting up the result
   AnyInt i = new AnyInt();
   if (s.isNull()) {
     i.setNull();
     isNull_ = true;
   } else i.setValue(s.getValue());
   sum_ = i;
 }
Ejemplo n.º 2
0
 public void visitAnyShort(ShortI s) {
   result_ = getBooleanResult(s.equals(op2_));
 }