(hook, args)
| 357 | const leavingVNodesCache = getLeavingNodesForType(state, vnode) |
| 358 | |
| 359 | const callHook: TransitionHookCaller = (hook, args) => { |
| 360 | hook && |
| 361 | callWithAsyncErrorHandling( |
| 362 | hook, |
| 363 | instance, |
| 364 | ErrorCodes.TRANSITION_HOOK, |
| 365 | args, |
| 366 | ) |
| 367 | } |
| 368 | |
| 369 | const callAsyncHook = ( |
| 370 | hook: Hook<(el: any, done: () => void) => void>, |
no test coverage detected