(fn: VNativeFn['native'], fnSync?: VNativeFn['nativeSync'])
| 135 | }); |
| 136 | |
| 137 | export const FN_NATIVE = (fn: VNativeFn['native'], fnSync?: VNativeFn['nativeSync']): VNativeFn => ({ |
| 138 | type: 'fn' as const, |
| 139 | native: fn, |
| 140 | nativeSync: fnSync, |
| 141 | }); |
| 142 | |
| 143 | export const ERROR = (name: string, info?: Value): Value => ({ |
| 144 | type: 'error' as const, |
no outgoing calls
no test coverage detected