File: labels.js

package info (click to toggle)
node-lexical-scope 1.2.0%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 216 kB
  • sloc: javascript: 459; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
test_label1: while(true) {
  break test_label1;
  continue test_label1;
}

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