( target: Array<Chunk | PrecomputedChunk>, text: string, renderState: RenderState, textEmbedded: boolean, )
| 146 | } |
| 147 | |
| 148 | export function pushTextInstance( |
| 149 | target: Array<Chunk | PrecomputedChunk>, |
| 150 | text: string, |
| 151 | renderState: RenderState, |
| 152 | textEmbedded: boolean, |
| 153 | ): boolean { |
| 154 | // Markup doesn't need any termination. |
| 155 | target.push(stringToChunk(escapeTextForBrowser(text))); |
| 156 | return false; |
| 157 | } |
| 158 | |
| 159 | export function pushSegmentFinale( |
| 160 | target: Array<Chunk | PrecomputedChunk>, |
no test coverage detected