When using the 'continue' statement is possible to specify a label: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/continue#Using_continue_with_a_label but this is not squeezed properly input: ``` outer: do { for (var i = 0; i < 10; ++i) { if (i > 1) { continue outer } } } while (true) ``` output: ``` ;outer:do{for(var i=0;i<10;++i){if(i>1){continue;outer}}} while(!0); ``` the semicolon is placed after 'continue' which makes continuing the wrong loop, the `for` loop instead of the `do`
When using the 'continue' statement is possible to specify a label:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/continue#Using_continue_with_a_label
but this is not squeezed properly
input:
output:
the semicolon is placed after 'continue' which makes continuing the wrong loop, the
forloop instead of thedo