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; }
public void visitAnyByte(ByteI b) { result_ = getBooleanResult(b.equals(op2_)); }