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; }
public void visitAnyChar(CharI c) { result_ = getBooleanResult(c.equals(op2_)); }