(self, proc, outfile, source_file)
| 232 | class Process(object): |
| 233 | """ Manages an IWYU process in flight """ |
| 234 | def __init__(self, proc, outfile, source_file): |
| 235 | self.proc = proc |
| 236 | self.outfile = outfile |
| 237 | self.output = None |
| 238 | self.source_file = source_file |
| 239 | |
| 240 | def poll(self): |
| 241 | """ Return the exit code if the process has completed, None otherwise. |
nothing calls this directly
no outgoing calls
no test coverage detected