test case for TS generated comments const enum to show that they are supressed by removeComments flag

This commit is contained in:
Stan Thomas
2015-01-29 18:27:26 -05:00
parent 17763ab040
commit 0b435f56ee

View File

@@ -88,3 +88,8 @@ module m1 {
/// this is x
declare var x;
/** const enum member value comment (generated by TS) */
const enum color { red, green, blue }
var shade = color.green;