(self)
| 318 | raise NotImplementedError |
| 319 | |
| 320 | def GetProcessorCommand(self): |
| 321 | format_processor, options = self.GetProcessorScript() |
| 322 | if not format_processor: |
| 323 | print('Could not find the formatter for % files' % self.file_type) |
| 324 | sys.exit(1) |
| 325 | |
| 326 | command = [sys.executable, format_processor] |
| 327 | command.extend(options) |
| 328 | |
| 329 | return command |
| 330 | |
| 331 | def ProcessFiles(self, files): |
| 332 | if self.use_cache: |
no test coverage detected