TypeScript/tests/baselines/reference/parser642331.js

13 lines
184 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parser642331.ts]
class test {
constructor (static) { }
}
//// [parser642331.js]
var test = (function () {
2015-04-09 02:49:14 +02:00
function test(static) {
2014-07-13 01:04:16 +02:00
}
return test;
})();