(text: string)
| 131 | } |
| 132 | |
| 133 | function normalizeDoctorProcessTree(text: string): string { |
| 134 | return text.replace( |
| 135 | /(^|\n)(Process Tree\n)(?: <PID> \(ppid <PID>\): <PROCESS>\n)+/g, |
| 136 | '$1$2 <PID> (ppid <PID>): <PROCESS>\n <PID> (ppid <PID>): <PROCESS>\n <PID> (ppid <PID>): <PROCESS>\n', |
| 137 | ); |
| 138 | } |
| 139 | |
| 140 | function trimVolatileDebugStackPrefix(text: string): string { |
| 141 | const lines = text.split('\n'); |
no outgoing calls
no test coverage detected