TypeScript/tests/baselines/reference/parserParameterList1.js

13 lines
212 B
TypeScript

//// [parserParameterList1.ts]
class C {
F(...A, B) { }
}
//// [parserParameterList1.js]
var C = (function () {
function C() {
}
C.prototype.F = function (A, B) { };
return C;
})();