(tNode: TNode | null, isParent: boolean)
| 395 | } |
| 396 | |
| 397 | export function setCurrentTNode(tNode: TNode | null, isParent: boolean) { |
| 398 | ngDevMode && tNode && assertTNodeForTView(tNode, instructionState.lFrame.tView); |
| 399 | const lFrame = instructionState.lFrame; |
| 400 | lFrame.currentTNode = tNode; |
| 401 | lFrame.isParent = isParent; |
| 402 | } |
| 403 | |
| 404 | export function isCurrentTNodeParent(): boolean { |
| 405 | return instructionState.lFrame.isParent; |
no test coverage detected
searching dependent graphs…