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

14 lines
180 B
JavaScript

//// [numericMethodName1.ts]
class C {
1 = 2;
}
//// [numericMethodName1.js]
var C = (function () {
function C() {
this[1] = 2;
}
return C;
})();