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;
// Start the synchronized block.
emitLine (sb, indent, "synchronized (" + getSource(sof.getSynchronizingObject(), indent, 14, context) + ") {");
// Add the method invocation.
sb.append (getSource(new ExpressionStatement(sof.getMethodInvocation()), context, indent + 1));
// Finish the block.
emitLine (sb, indent, "}");
} else
if (statement instanceof AssertStatement) {