They will still be visited if the arrow functions are transformed to regular functions. Fixes #5004
4 lines
70 B
JavaScript
4 lines
70 B
JavaScript
const x = () => x;
|
|
const y = x => x();
|
|
const z = { z: () => y(x) }.z;
|