* fix: register function expression id after params * implement bugfix plugin * add more testcases * fix: do not skip pattern binding referencing id * update compat-table * add bugfix plugin to preset-env * update Babel 8 test fixtures * Update packages/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression/README.md * chore: bundle bugfix plugin * address review comments * add runtime version check * update compat table * fix syntax error * update test fixtures * revert bugfixes targets update * update Babel 8 test fixtures
8 lines
76 B
JavaScript
8 lines
76 B
JavaScript
(function a(a) {});
|
|
|
|
(function a([_a]) {});
|
|
|
|
(function a({
|
|
a: _a2
|
|
}) {});
|