Do not emit rest param if not the last.

This commit is contained in:
Mohamed Hegazy
2016-04-06 17:19:59 -07:00
parent 68a9615bd2
commit fe5121652d

View File

@@ -7,6 +7,6 @@ class C {
var C = (function () {
function C() {
}
C.prototype.F = function (A, B) { };
C.prototype.F = function (B) { };
return C;
}());