(entries: any[], source?: string, lineStarts?: number[])
| 929 | } |
| 930 | |
| 931 | function hasVisibleTextInEntries(entries: any[], source?: string, lineStarts?: number[]): boolean { |
| 932 | return entries.some((entry) => /\S/.test(getRenderedChildText(entry, source, lineStarts))); |
| 933 | } |
| 934 | |
| 935 | function mergeAdjacentTextLikeChildren(children: any[]): any[] { |
| 936 | const merged: any[] = []; |
no test coverage detected