Merge branch 'master' into code-generator
Conflicts: lib/6to5/transformers/rest-parameters.js
This commit is contained in:
3
test/fixtures/transformation/rest-parameters/arrow-functions/actual.js
vendored
Normal file
3
test/fixtures/transformation/rest-parameters/arrow-functions/actual.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var concat = (...arrs) => {
|
||||
|
||||
};
|
||||
5
test/fixtures/transformation/rest-parameters/arrow-functions/expected.js
vendored
Normal file
5
test/fixtures/transformation/rest-parameters/arrow-functions/expected.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
var _slice = Array.prototype.slice;
|
||||
var concat = function () {
|
||||
var arrs = _slice.call(arguments);
|
||||
};
|
||||
Reference in New Issue
Block a user