15 lines
186 B
JavaScript
15 lines
186 B
JavaScript
function foo() {
|
|
const x = 42;
|
|
const f = () => {
|
|
console.log(x);
|
|
};
|
|
f();
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: foo,
|
|
params: [],
|
|
isComponent: false,
|
|
};
|