Files
react/compiler/crates/react_hermes_parser/tests/fixtures/assignment-variations-complex-lvalue.js
2024-04-02 16:49:31 -07:00

7 lines
93 B
JavaScript

function g() {
const x = { y: { z: 1 } };
x.y.z = x.y.z + 1;
x.y.z *= 2;
return x;
}