use of com.developmentontheedge.sql.model.AstBeUnless in project be5 by DevelopmentOnTheEdge.
the class ContextApplier method applyConditions.
private int applyConditions(SimpleNode newTree, int i) {
AstBeCondition condNode = (AstBeCondition) newTree.child(i);
boolean correct = checkConditions(condNode);
if (condNode instanceof AstBeUnless)
i = setUnlessResult(newTree, i, condNode, correct);
else if (condNode instanceof AstBeIf)
i = setIfResult(newTree, i, condNode, correct);
return i;
}
Aggregations