* Fork the given state into a new state for hydrating children.
(state: I18nHydrationState, nextNode: Node | null)
| 400 | * Fork the given state into a new state for hydrating children. |
| 401 | */ |
| 402 | function forkHydrationState(state: I18nHydrationState, nextNode: Node | null) { |
| 403 | return {currentNode: nextNode, isConnected: state.isConnected}; |
| 404 | } |
| 405 | |
| 406 | function prepareI18nBlockForHydrationImpl( |
| 407 | lView: LView, |
no outgoing calls
no test coverage detected
searching dependent graphs…