if (statements != null) {
for (Statement stmt : statements) {
JStatement jstmt = dispProcessStatement(stmt);
if (jstmt != null) {
jstatements.add(jstmt);
if (jstmt.unconditionalControlBreak()) {
/*
* Stop processing statements, because the remaining ones are
* unreachable. The JDT compiler might not have fully fleshed out
* the unreachable statements.
*/