Files
babel/packages/babel-parser/test/fixtures/comments/basic/switch-fallthrough-comment-in-function/input.js
2018-05-19 00:03:05 -04:00

10 lines
142 B
JavaScript
Executable File

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