(segments: ImmediateTextSegment[])
| 1174 | } |
| 1175 | |
| 1176 | function getSegmentsText(segments: ImmediateTextSegment[]): string { |
| 1177 | return segments.map((segment) => segment.text).join(""); |
| 1178 | } |
| 1179 | |
| 1180 | function flattenRangeIntoText(parentNode: any, firstChildIndex: number, lastChildIndex: number, replacementText: string): boolean { |
| 1181 | const children = parentNode.children; |
no outgoing calls
no test coverage detected