* Registers cleanup functions for a defer block when the block has finished * fetching and rendering
(lDetails: LDeferBlockDetails, callback: VoidFunction)
| 578 | * fetching and rendering |
| 579 | */ |
| 580 | function onDeferBlockCompletion(lDetails: LDeferBlockDetails, callback: VoidFunction) { |
| 581 | if (!Array.isArray(lDetails[ON_COMPLETE_FNS])) { |
| 582 | lDetails[ON_COMPLETE_FNS] = []; |
| 583 | } |
| 584 | lDetails[ON_COMPLETE_FNS].push(callback); |
| 585 | } |
| 586 | |
| 587 | /** |
| 588 | * Determines whether specific trigger types should be attached during an instruction firing |
no test coverage detected
searching dependent graphs…