Files
react/compiler/crates/react_hermes_parser/tests/fixtures/object-properties.js
2024-04-02 16:49:31 -07:00

8 lines
109 B
JavaScript

function foo(a, b, c) {
const x = a.x;
const y = { ...b.c.d };
y.z = c.d.e;
foo(a.b.c);
[a.b.c];
}