use of org.drools.mvelcompiler.ast.DoStmtT in project drools by kiegroup.
the class StatementVisitor method visit.
@Override
public TypedExpression visit(DoStmt n, Void arg) {
TypedExpression typedCondition = new RHSPhase(mvelCompilerContext).invoke(n.getCondition());
TypedExpression typedThen = n.getBody().accept(this, arg);
return new DoStmtT(typedCondition, typedThen);
}
Aggregations