TypeScript/tests/cases/compiler/commentsAfterCaseClauses3.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

16 lines
368 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: /*six*/
return "world";
}
}