Files
babel/packages/babylon/test/fixtures/comments/basic/switch-fallthrough-comment-in-function/input.js
2018-01-09 15:36:42 +01:00

10 lines
142 B
JavaScript
Executable File

function bar(foo) {
switch(foo) {
// foo
case 1:
// falls through
case 2:
doIt();
}
}