You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/lexical-scope/test/files/labels.js

11 lines
175 B
JavaScript

test_label1: while(true) {
break test_label1;
continue test_label1;
}
function nest() {
test_label2: while(true) {
break test_label2;
continue test_label2;
}
};