* add new custom eslint rule, replace remaining t.identifier("undefined") with buildUndefinedNode(), update tests
* change no-undefined-identifier reporting descriptor
38 lines
924 B
JavaScript
38 lines
924 B
JavaScript
function somethingAdvanced(_ref, p2, p3) {
|
|
var _ref$topLeft = _ref.topLeft;
|
|
_ref$topLeft = _ref$topLeft === void 0 ? {} : _ref$topLeft;
|
|
var x1 = _ref$topLeft.x,
|
|
y1 = _ref$topLeft.y,
|
|
_ref$bottomRight = _ref.bottomRight;
|
|
_ref$bottomRight = _ref$bottomRight === void 0 ? {} : _ref$bottomRight;
|
|
var x2 = _ref$bottomRight.x,
|
|
y2 = _ref$bottomRight.y;
|
|
}
|
|
|
|
function unpackObject(_ref2) {
|
|
var title = _ref2.title,
|
|
author = _ref2.author;
|
|
return title + " " + author;
|
|
}
|
|
|
|
console.log(unpackObject({
|
|
title: "title",
|
|
author: "author"
|
|
}));
|
|
|
|
var unpackArray = function (_ref3, _ref4) {
|
|
var _ref5 = babelHelpers.slicedToArray(_ref3, 3),
|
|
a = _ref5[0],
|
|
b = _ref5[1],
|
|
c = _ref5[2];
|
|
|
|
var _ref6 = babelHelpers.slicedToArray(_ref4, 3),
|
|
x = _ref6[0],
|
|
y = _ref6[1],
|
|
z = _ref6[2];
|
|
|
|
return a + b + c;
|
|
};
|
|
|
|
console.log(unpackArray(["hello", ", ", "world"], [1, 2, 3]));
|