(nodeIndex: number, lView: LView)
| 330 | } |
| 331 | |
| 332 | export function getComponentAtNodeIndex(nodeIndex: number, lView: LView): {} | null { |
| 333 | const tNode = lView[TVIEW].data[nodeIndex] as TNode; |
| 334 | return isComponentHost(tNode) ? lView[tNode.directiveStart + tNode.componentOffset] : null; |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Returns a map of local references (local reference name => element or directive instance) that |
no test coverage detected
searching dependent graphs…