(arr: VArr['value'])
| 123 | }); |
| 124 | |
| 125 | export const ARR = (arr: VArr['value']): VArr => ({ |
| 126 | type: 'arr' as const, |
| 127 | value: arr, |
| 128 | }); |
| 129 | |
| 130 | export const FN = (params: VUserFn['params'], statements: VUserFn['statements'], scope: VUserFn['scope']): VUserFn => ({ |
| 131 | type: 'fn' as const, |
no outgoing calls
no test coverage detected