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

13 lines
188 B
TypeScript

//// [parserClassDeclaration10.ts]
class C {
constructor();
foo();
}
//// [parserClassDeclaration10.js]
var C = (function () {
function C() {
}
return C;
})();