@Override public void visitDoLoop(JCDoWhileLoop node) {
DoWhile dw = new DoWhile();
JCExpression cond = node.getCondition();
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) {