function mutate(x, y) {
'use no forget';
if (x != null) {
x.value = (x.value ?? 0) + 1;
}
if (y != null) {
y.value = (y.value ?? 0) + 1;
}
}
function cond(x) {
'use no forget';
return x.value > 5;
}
function testFunction(props) {
let a = {};
let b = {};
let c = {};
let d = {};
while (true) {
let z = a;
a = b;
b = c;
c = d;
d = z;
mutate(a, b);
if (cond(a)) {
break;
}
}
if (a) {
}
if (b) {
}
if (c) {
}
if (d) {
}
mutate(d, null);
return {a, b, c, d};
}
export const FIXTURE_ENTRYPOINT = {
fn: testFunction,
params: [{}],
isComponent: false,
};