TypeScript/tests/baselines/reference/numericMethodName1.js

14 lines
180 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [numericMethodName1.ts]
class C {
1 = 2;
}
//// [numericMethodName1.js]
var C = (function () {
function C() {
this[1] = 2;
}
return C;
})();