Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/capturing-func-mutate-3.js
T

16 lines
228 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
function component(a, b) {
let y = {b};
let z = {a};
let x = function () {
z.a = 2;
y.b;
};
return z;
}
export const FIXTURE_ENTRYPOINT = {
fn: component,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};