Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/assignment-expression-nested-path.js
2026-08-27 21:09:14 +00:00

13 lines
191 B
JavaScript

function g(props) {
const a = {b: {c: props.c}};
a.b.c = a.b.c + 1;
a.b.c *= 2;
return a;
}
export const FIXTURE_ENTRYPOINT = {
fn: g,
params: [{c: 2}],
isComponent: false,
};