Files
react/compiler/crates/react_hermes_parser/tests/fixtures/capturing-nested-member-expr.js
2024-04-02 16:49:31 -07:00

8 lines
115 B
JavaScript

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