return null;
}
public Object visit(ASTAndNode node, Object data) {
boolean previouslyInAndContext = false;
EvaluationContext ctx = null;
if (null != data && data instanceof EvaluationContext) {
ctx = (EvaluationContext) data;
previouslyInAndContext = ctx.inAndContext;
} else {
ctx = new EvaluationContext();
}
ctx.inAndContext = true;
// Are we being called from the checkChildren method? If so, then we
// are rolling up terms. If not, then we need to call check children.
if (currentlyInCheckChildren) {