Files
enviPy-bayer/static/js/ketcher2/node_modules/lexical-scope/test/files/labels.js
2025-06-23 20:13:54 +02:00

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;
}
};