(result, inputFilename: string, tempPath: string)
| 284 | } |
| 285 | |
| 286 | parseOutput(result, inputFilename: string, tempPath: string) { |
| 287 | const fileWithoutPath = path.basename(inputFilename); |
| 288 | result.inputFilename = fileWithoutPath; |
| 289 | result.stdout = utils.parseOutput(result.stdout, fileWithoutPath, tempPath); |
| 290 | result.stderr = utils.parseOutput(result.stderr, fileWithoutPath, tempPath); |
| 291 | return result; |
| 292 | } |
| 293 | |
| 294 | override getArgumentParserClass() { |
| 295 | return PascalParser; |
no outgoing calls
no test coverage detected