use of st.gravel.support.compiler.ast.BlockNode in project gravel by gravel-st.
the class IntermediateNodeRewriter method produce$underscore$whileTrue_.
public WhileTrueNode produce$underscore$whileTrue_(final Expression _testExpr) {
final BlockNode _testBlockNode;
if (!_testExpr.isBlockNode()) {
return null;
}
_testBlockNode = ((BlockNode) _testExpr);
return WhileTrueNode.factory.testSequence_doSequence_(((SequenceNode) this.visit_(_testBlockNode.body())), null);
}
Aggregations