* Find a node in front of which `currentTNode` should be inserted. * * This method determines the `RNode` in front of which we should insert the `currentRNode`. This * takes `TNode.insertBeforeIndex` into account if i18n code has been invoked. * * @param parentTNode parent `TNode` * @param cur
( parentTNode: TNode, currentTNode: TNode, lView: LView, )
| 588 | * @param lView current `LView` |
| 589 | */ |
| 590 | function getInsertInFrontOfRNode( |
| 591 | parentTNode: TNode, |
| 592 | currentTNode: TNode, |
| 593 | lView: LView, |
| 594 | ): RNode | null { |
| 595 | return _getInsertInFrontOfRNodeWithI18n(parentTNode, currentTNode, lView); |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Find a node in front of which `currentTNode` should be inserted. (Does not take i18n into |
no outgoing calls
no test coverage detected