()
| 129 | |
| 130 | // Relative paths of all files in corpus. |
| 131 | *relFiles() { |
| 132 | for (const relPath of this.permittedFiles) { |
| 133 | yield relPath; |
| 134 | } |
| 135 | for (const relPath of this.softSkippedFiles) { |
| 136 | yield relPath; |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | // Relative paths of all files in corpus including generated skipped. |
| 141 | *relFilesForGenSkipped() { |
no outgoing calls
no test coverage detected