()
| 59 | } |
| 60 | |
| 61 | *getAbsoluteFileIterator(): Iterable<string> { |
| 62 | for (const file of this.getFileIterator()) { |
| 63 | yield fastPath.resolve(this._rootDir, file); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | matchFiles(pattern: RegExp | string): Array<string> { |
| 68 | if (!(pattern instanceof RegExp)) { |
no test coverage detected