(condition: any, msg: string)
| 1 | export function assert(condition: any, msg: string): asserts condition { |
| 2 | if (!condition) throw Error(msg) |
| 3 | } |
| 4 | |
| 5 | export function assertClosure( |
| 6 | currentActor: any, |
no outgoing calls
no test coverage detected
searching dependent graphs…