(self, data)
| 242 | class LoadDyLib(LoadCommand): |
| 243 | |
| 244 | def __init__(self, data): |
| 245 | super().__init__(data) |
| 246 | self.str_offset = unpack("<L", self.FR.read(4))[0] |
| 247 | self.time_stamp = unpack("<L", self.FR.read(4))[0] |
| 248 | self.current_version = unpack("<L", self.FR.read(4))[0] |
| 249 | self.compatibility_version = unpack("<L", self.FR.read(4))[0] |
| 250 | self.name = self.FR.readString(4) |
| 251 | |
| 252 | # def __str__(self): |
| 253 | # return (" Dylib: name %s" % self.name) |
nothing calls this directly
no test coverage detected