TypeScript/tests/cases/compiler/commentsAfterCaseClauses2.ts
Yui e4aa515191 [Master] Fix 15179 missing comment in switch case clause (#16033)
* Fix emit comments after switch case clause

* Update baselines

* Add new tests and baselines
2017-05-23 10:24:46 -07:00

17 lines
440 B
TypeScript

function getSecurity(level) {
switch(level){
case 0: // Zero
case 1: // one
case 2: // two
// Leading comments
return "Hi";
case 3: // three
case 4: // four
return "hello";
case 5: // five
default: // default
return "world";
// Comment After
} /*Comment 1*/ // Comment After 1
// Comment After 2
}