Esempio n. 1
0
File: Sum.java Progetto: inqwell/inq
 public void visitAnyChar(CharI c) {
   // Only called when we are setting up the result
   AnyInt i = new AnyInt();
   if (c.isNull()) {
     i.setNull();
     isNull_ = true;
   } else i.setValue(c.getValue());
   sum_ = i;
 }
Esempio n. 2
0
 public void visitAnyChar(CharI c) {
   result_ = getBooleanResult(c.equals(op2_));
 }