Run invocation and collect output.
(self, verbose)
| 305 | return cls(command, entry['directory'], source_file) |
| 306 | |
| 307 | def start(self, verbose): |
| 308 | """ Run invocation and collect output. """ |
| 309 | if verbose: |
| 310 | print('# %s' % self, file=sys.stderr) |
| 311 | |
| 312 | return Process.start(self) |
| 313 | |
| 314 | |
| 315 | def fixup_compilation_db(compilation_db): |