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

9 lines
113 B
JavaScript

function component(a) {
let y = { b: { a } };
let x = function () {
y.b.a = 2;
};
x();
return y;
}