16 lines
174 B
JavaScript
16 lines
174 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
let y = 2;
|
|
if (y === 2) {
|
|
x = 3;
|
|
}
|
|
|
|
y = x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: foo,
|
|
params: [],
|
|
isComponent: false,
|
|
};
|