function Foo() { const getX = () => x; console.log(getX()); let x = 4; x += 5; return ; } export const FIXTURE_ENTRYPOINT = { fn: Foo, params: [], };