(id: string)
| 2501 | |
| 2502 | const waitState = ref<Record<string, number>>({}) |
| 2503 | const registerWait = (id: string) => { |
| 2504 | // console.debug("register wait", id) |
| 2505 | waitState.value[id] = waitState.value[id] ? waitState.value[id] + 1 : 1 |
| 2506 | } |
| 2507 | const unregisterWait = (id: string) => { |
| 2508 | // console.debug("unregister wait", id) |
| 2509 | if (waitState.value[id]) { |
no outgoing calls
no test coverage detected
searching dependent graphs…