TypeScript/tests/baselines/reference/enumWithQuotedElementName2.js

11 lines
178 B
TypeScript
Raw Normal View History

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