TypeScript/tests/baselines/reference/numericMethodName1.js
2015-12-08 17:51:10 -08:00

14 lines
180 B
TypeScript

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