* 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, )
| 558 | * @param lView current `LView` |
| 559 | */ |
| 560 | function getInsertInFrontOfRNode( |
| 561 | parentTNode: TNode, |
| 562 | currentTNode: TNode, |
| 563 | lView: LView, |
| 564 | ): RNode | null { |
| 565 | return _getInsertInFrontOfRNodeWithI18n(parentTNode, currentTNode, lView); |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * Find a node in front of which `currentTNode` should be inserted. (Does not take i18n into |
no outgoing calls
no test coverage detected
searching dependent graphs…