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