TypeScript/tests/baselines/reference/quotedPropertyName2.js
2014-07-12 17:30:19 -07:00

13 lines
213 B
TypeScript

//// [quotedPropertyName2.ts]
class Test1 {
static "prop1" = 0;
}
//// [quotedPropertyName2.js]
var Test1 = (function () {
function Test1() {
}
Test1["prop1"] = 0;
return Test1;
})();