(tView: TView, tDetails: TDeferBlockDetails)
| 136 | |
| 137 | /** Retrieves a TNode that represents main content of a defer block. */ |
| 138 | export function getPrimaryBlockTNode(tView: TView, tDetails: TDeferBlockDetails): TContainerNode { |
| 139 | const adjustedIndex = tDetails.primaryTmplIndex + HEADER_OFFSET; |
| 140 | return getTNode(tView, adjustedIndex) as TContainerNode; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Asserts whether all dependencies for a defer block are loaded. |
no test coverage detected
searching dependent graphs…