Only base async fn arity on non-default/non-rest params - fixes #4891 (#4901)

This commit is contained in:
Logan Smyth
2016-12-08 06:48:15 -08:00
committed by Henry Zhu
parent 39c92160f7
commit 80dfdd2a43
5 changed files with 54 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ let g = (() => {
yield 3;
});
return function g(_x) {
return function g() {
return _ref.apply(this, arguments);
};
})();