(self)
| 9942 | |
| 9943 | @property |
| 9944 | def libraries(self) -> List[str]: |
| 9945 | try: |
| 9946 | result: List[str] = [] |
| 9947 | libs = self.query_metadata("Libraries") |
| 9948 | assert isinstance(libs, list) |
| 9949 | for s in libs: |
| 9950 | assert isinstance(s, str) |
| 9951 | result.append(s) |
| 9952 | return result |
| 9953 | except KeyError: |
| 9954 | return [] |
| 9955 | |
| 9956 | def typed_data_accessor(self, address: int, type: '_types.Type') -> 'TypedDataAccessor': |
| 9957 | return TypedDataAccessor(type, address, self, self.endianness) |
nothing calls this directly
no test coverage detected