}
protected boolean handleInAndNotIn(final Node node, final Bindings b, final Map<Node, Object> d) throws NotBoundException, TypeErrorException {
final Object arg1 = Helper.unlazy(this.resultOfChildZero(node, b, d));
final Node child1 = node.jjtGetChild(1);
for(int i=0; i<child1.jjtGetNumChildren(); i++) {
final Object arg2 = Helper.unlazy(child1.jjtGetChild(i).accept(this, b, d));
if(Helper.equals(arg1, arg2)) {
return true;
}
}