Exemplo n.º 1
0
Arquivo: Sum.java Projeto: 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;
 }
Exemplo n.º 2
0
 public void visitAnyChar(CharI c) {
   result_ = getBooleanResult(c.equals(op2_));
 }