(self, command, cwd, source_file)
| 274 | class Invocation(object): |
| 275 | """ Holds arguments of an IWYU invocation. """ |
| 276 | def __init__(self, command, cwd, source_file): |
| 277 | self.command = command |
| 278 | self.cwd = cwd |
| 279 | self.source_file = source_file |
| 280 | |
| 281 | def __str__(self): |
| 282 | return ' '.join(self.command) |
nothing calls this directly
no outgoing calls
no test coverage detected