setConversionPositionInfo(dw, "()", getPosition(cond));
set(node, dw.rawCondition(toTree(removeParens(cond))).rawStatement(toTree(node.getStatement())));
}
@Override public void visitContinue(JCContinue node) {
Continue c = new Continue();
if (node.getLabel() != null) {
c.astLabel(new Identifier().astValue(node.getLabel().toString()));
}
set(node, c);
}