(output: string)
| 72 | } |
| 73 | |
| 74 | function collectFindPaths(output: string): string[] { |
| 75 | return output |
| 76 | .trim() |
| 77 | .split('\n') |
| 78 | .map((path) => path.trim()) |
| 79 | .filter(Boolean); |
| 80 | } |
| 81 | |
| 82 | export async function findXcodeStateFile( |
| 83 | ctx: XcodeStateReaderContext, |
no outgoing calls
no test coverage detected