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

13 lines
184 B
JavaScript

//// [parser642331.ts]
class test {
constructor (static) { }
}
//// [parser642331.js]
var test = (function () {
function test(static) {
}
return test;
})();