(tNode: TNode, lView: LView)
| 36 | // expression.](https://github.com/microsoft/TypeScript/issues/37295) |
| 37 | |
| 38 | export function assertTNodeForLView(tNode: TNode, lView: LView) { |
| 39 | assertTNodeForTView(tNode, lView[TVIEW]); |
| 40 | } |
| 41 | |
| 42 | export function assertTNodeCreationIndex(lView: LView, index: number) { |
| 43 | const adjustedIndex = index + HEADER_OFFSET; |
no test coverage detected
searching dependent graphs…