* Simplify the special-case printing of single-param arrow functions * Update test fixtures with single-param arrow functions * Add some explicit snapshot tests for known edge-cases
14 lines
216 B
JavaScript
14 lines
216 B
JavaScript
const get = () => {
|
|
fireTheMissiles();
|
|
return 3;
|
|
};
|
|
|
|
const f = _ref => {
|
|
let {
|
|
a = get(),
|
|
b
|
|
} = _ref,
|
|
z = babelHelpers.objectWithoutPropertiesLoose(_ref, ["a", "b", "c"]);
|
|
const v = b + 3;
|
|
};
|