TypeScript/tests/baselines/reference/parserParameterList17.js

13 lines
206 B
JavaScript
Raw Normal View History

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