main
js 12 lines 191 Bytes
Raw
1 function g(props) {
2 const a = {b: {c: props.c}};
3 a.b.c = a.b.c + 1;
4 a.b.c *= 2;
5 return a;
6 }
7
8 export const FIXTURE_ENTRYPOINT = {
9 fn: g,
10 params: [{c: 2}],
11 isComponent: false,
12 };