push(new JsContinue(labelRef));
}
// @Override
public void endVisit(JDoStatement x, Context ctx) {
JsDoWhile stmt = new JsDoWhile();
if (x.getBody() != null) {
stmt.setBody((JsStatement) pop()); // body
} else {
stmt.setBody(jsProgram.getEmptyStmt());
}
stmt.setCondition((JsExpression) pop()); // testExpr
push(stmt);
}