* Consolidate contiguous var declarations in destructuring transform Fixes #3081. * Simplify var node coalescing in es2015-destructuring * Revert "Simplify var node coalescing in es2015-destructuring" This reverts commit 15cb373f0726f68225f7080a7ae206a63af174ee. * More careful condition for var coalescing in es2015-destructuring
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
// #3861
|
|
function t() {
|
|
var x = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "default";
|
|
var _ref = arguments[1];
|
|
var a = _ref.a,
|
|
b = _ref.b;
|
|
|
|
for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
|
args[_key - 2] = arguments[_key];
|
|
}
|
|
|
|
console.log(x, a, b, args);
|
|
}
|