function f(a, b) { let x = []; // <- x starts being mutable here. if (a.length === 1) { if (b) { x.push(b); // <- x stops being mutable here. } } return
{x}
; } export const FIXTURE_ENTRYPOINT = { fn: f, params: ['TodoAdd'], isComponent: 'TodoAdd', };