emitLine (sb, indent, whileStatement.getLabel() + ": while (true) {");
sb.append(getSource(whileStatement.getBody(), context, indent + 1));
emitLine (sb, indent, "}");
} else
if (statement instanceof LabelledContinue) {
LabelledContinue lc = (LabelledContinue)statement;
emitLine (sb, indent, "continue " + lc.getLabel() + ";");
} else
if (statement instanceof SynchronizedMethodInvocation){
// A method invocation wrapped in a synchronization block.
SynchronizedMethodInvocation sof = (SynchronizedMethodInvocation)statement;