Files

15 lines
194 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function component(a) {
let z = {a};
(function () {
(function () {
z.b = 1;
})();
})();
return z;
}
export const FIXTURE_ENTRYPOINT = {
fn: component,
params: [2],
};