File: actual.js

package info (click to toggle)
node-babylon 6.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 26,872 kB
  • sloc: makefile: 33; sh: 2
file content (9 lines) | stat: -rwxr-xr-x 142 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
function bar(foo) {
    switch(foo) {
        // foo
        case 1:
            // falls through
        case 2:
            doIt();
    }
}