( currentActor: any, methodName: string, )
| 3 | } |
| 4 | |
| 5 | export function assertClosure( |
| 6 | currentActor: any, |
| 7 | methodName: string, |
| 8 | ): asserts currentActor { |
| 9 | if (!currentActor) |
| 10 | throw Error(`${methodName}() called outside from using() closure`) |
| 11 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…