16 lines
254 B
JavaScript
16 lines
254 B
JavaScript
|
function foo(a, b, c, d) {
|
||
|
let y = [];
|
||
|
label: if (a) {
|
||
|
if (b) {
|
||
|
c |> y.push(%);
|
||
|
break label;
|
||
|
}
|
||
|
d |> y.push(%);
|
||
|
}
|
||
|
return y;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: foo,
|
||
|
params: ["TodoAdd"],
|
||
|
isComponent: "TodoAdd"
|
||
|
};
|