| 192 | |
| 193 | |
| 194 | class File(CompilationData): |
| 195 | def __init__(self, file, target, loc, in_bytes, expanded, expanded_bytes): |
| 196 | super().__init__(loc, in_bytes, expanded, expanded_bytes) |
| 197 | self.file = file |
| 198 | self.target = target |
| 199 | |
| 200 | def to_string(self): |
| 201 | return "{} {} {}".format(super().to_string(), self.file, self.target) |
| 202 | |
| 203 | |
| 204 | class Group(CompilationData): |