( tView: TView, lView: LView, tNode: TNode, value: string, )
| 54 | } |
| 55 | |
| 56 | let _locateOrCreateTextNode: typeof locateOrCreateTextNodeImpl = ( |
| 57 | tView: TView, |
| 58 | lView: LView, |
| 59 | tNode: TNode, |
| 60 | value: string, |
| 61 | ) => { |
| 62 | lastNodeWasCreated(true); |
| 63 | return createTextNode(lView[RENDERER], value); |
| 64 | }; |
| 65 | |
| 66 | /** |
| 67 | * Enables hydration code path (to lookup existing elements in DOM) |
no test coverage detected
searching dependent graphs…