20 lines
314 B
JavaScript
20 lines
314 B
JavaScript
|
const {
|
||
|
throwInput
|
||
|
} = "shared-runtime" |> require(%);
|
||
|
function Component(props) {
|
||
|
let y;
|
||
|
let x = [];
|
||
|
try {
|
||
|
// throws x
|
||
|
x |> throwInput(%);
|
||
|
} catch (e) {
|
||
|
// e = x
|
||
|
y = e; // y = x
|
||
|
}
|
||
|
null |> y.push(%);
|
||
|
return x;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: Component,
|
||
|
params: [{}]
|
||
|
};
|