public void testDeleteContinue() throws Exception {
String str = "<?php continue $a;?>";
String expected = "<?php continue;?>";
parseAndCompare(str, expected, new ICodeManiplator() {
public void manipulate(Program program) {
ContinueStatement statement = (ContinueStatement) program
.statements().get(0);
statement.getExpression().delete();
}
});
}