DEBSOURCES
Skip Quicknav
sources / node-babylon / 6.18.0-2 / test / fixtures / comments / basic / switch-fallthrough-comment-in-function / actual.js
123456789
function bar(foo) { switch(foo) { // foo case 1: // falls through case 2: doIt(); } }