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