TypeScript/tests/baselines/reference/enumWithQuotedElementName1.js

11 lines
178 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [enumWithQuotedElementName1.ts]
enum E {
'fo"o',
}
//// [enumWithQuotedElementName1.js]
var E;
(function (E) {
E[E['fo"o'] = 0] = 'fo"o';
})(E || (E = {}));