(dirPath: string)
| 104 | } |
| 105 | |
| 106 | async readdir(dirPath: string): Promise<string[]> { |
| 107 | // Separate method allows override to find classfiles |
| 108 | // that are not in root of dirPath |
| 109 | return fs.readdir(dirPath); |
| 110 | } |
| 111 | |
| 112 | override async objdump(outputFilename: string, result: any, maxSize: number) { |
| 113 | const dirPath = path.dirname(outputFilename); |
no outgoing calls
no test coverage detected