Files
react/compiler/crates/react_hermes_parser/tests/fixtures/capturing-nested-member-expr-in-nested-func.js
T

10 lines
146 B
JavaScript

function component(a) {
let z = { a: { a } };
let x = function () {
(function () {
console.log(z.a.a);
})();
};
return x;
}