Files
react/compiler/crates/react_hermes_parser/tests/fixtures/assignment-expression-nested-path.js
2024-04-02 16:49:31 -07:00

7 lines
104 B
JavaScript

function g(props) {
const a = { b: { c: props.c } };
a.b.c = a.b.c + 1;
a.b.c *= 2;
return a;
}