1function foo(a, b, c) {2 label: if (a) {3 while (b) {4 if (c) {5 break label;6 }7 }8 }9 return c;10}1112export const FIXTURE_ENTRYPOINT = {13 fn: foo,14 params: ['TodoAdd'],15 isComponent: 'TodoAdd',16};
Findings
✓ No findings reported for this file.