TypeScript/tests/baselines/reference/enumWithUnicodeEscape1.js

12 lines
190 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [enumWithUnicodeEscape1.ts]
enum E {
'gold \u2730'
}
//// [enumWithUnicodeEscape1.js]
var E;
(function (E) {
E[E['gold \u2730'] = 0] = 'gold \u2730';
})(E || (E = {}));