* 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, )
| 564 | * @param lView current `LView` |
| 565 | */ |
| 566 | function getInsertInFrontOfRNode( |
| 567 | parentTNode: TNode, |
| 568 | currentTNode: TNode, |
| 569 | lView: LView, |
| 570 | ): RNode | null { |
| 571 | return _getInsertInFrontOfRNodeWithI18n(parentTNode, currentTNode, lView); |
| 572 | } |
| 573 | |
| 574 | /** |
| 575 | * Find a node in front of which `currentTNode` should be inserted. (Does not take i18n into |
no outgoing calls
no test coverage detected