TypeScript/tests/baselines/reference/parserConstructorDeclaration1.js

12 lines
196 B
JavaScript
Raw Normal View History

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