()
| 278 | } |
| 279 | |
| 280 | export function checkDidRenderIdHook(): boolean { |
| 281 | // This should be called immediately after every finishHooks call. |
| 282 | // Conceptually, it's part of the return value of finishHooks; it's only a |
| 283 | // separate function to avoid using an array tuple. |
| 284 | const didRenderIdHook = localIdCounter !== 0; |
| 285 | return didRenderIdHook; |
| 286 | } |
| 287 | |
| 288 | export function getActionStateCount(): number { |
| 289 | // This should be called immediately after every finishHooks call. |
no outgoing calls
no test coverage detected