From fe5121652d05cfec583962c9066bcc71425e00b7 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Wed, 6 Apr 2016 17:19:59 -0700 Subject: [PATCH] Do not emit rest param if not the last. --- tests/baselines/reference/parserParameterList1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/baselines/reference/parserParameterList1.js b/tests/baselines/reference/parserParameterList1.js index 7fabad715e1..01ef6a149dc 100644 --- a/tests/baselines/reference/parserParameterList1.js +++ b/tests/baselines/reference/parserParameterList1.js @@ -7,6 +7,6 @@ class C { var C = (function () { function C() { } - C.prototype.F = function (A, B) { }; + C.prototype.F = function (B) { }; return C; }());