(line: string)
| 95 | } |
| 96 | |
| 97 | function countParentheses(line: string): number { |
| 98 | let delta = 0; |
| 99 | for (const character of line) { |
| 100 | if (character === '(') { |
| 101 | delta += 1; |
| 102 | } else if (character === ')') { |
| 103 | delta -= 1; |
| 104 | } |
| 105 | } |
| 106 | return delta; |
| 107 | } |
| 108 | |
| 109 | function collectXCTestTypes(lines: string[]): Set<string> { |
| 110 | const xctestTypes = new Set<string>(); |
no outgoing calls
no test coverage detected