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

14 lines
208 B
TypeScript

//// [ClassDeclaration21.ts]
class C {
0();
1() { }
}
//// [ClassDeclaration21.js]
var C = (function () {
function C() {
}
C.prototype[1] = function () { };
return C;
}());