dce-loop.js16 lines
mainRawfunction foo(props) {
let x = 0;
let y = 0;
while (y < props.max) {
x++;
y++;
}
return y;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: [{max: 10}],
isComponent: false,
};
Loading syntax highlighting…