(self, name, project, *args)
| 16 | class MessageTargetClass(targets.BasicTarget): |
| 17 | |
| 18 | def __init__(self, name, project, *args): |
| 19 | |
| 20 | targets.BasicTarget.__init__(self, name, project, []) |
| 21 | self.args = args |
| 22 | self.built = False |
| 23 | |
| 24 | def construct(self, name, sources, ps): |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected