TypeScript/tests/baselines/reference/parserParameterList1.js
2016-04-06 17:19:59 -07:00

13 lines
209 B
TypeScript

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