14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
for (let i = 0; i < 10; /* update is intentally a single identifier */ i) {
|
|
x += 1;
|
|
}
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: foo,
|
|
params: [],
|
|
isComponent: false,
|
|
};
|