Get the backing analysis cache kvs (read-only)
(self)
| 360 | |
| 361 | @property |
| 362 | def analysis_cache(self) -> KeyValueStore: |
| 363 | """Get the backing analysis cache kvs (read-only)""" |
| 364 | handle = core.BNReadDatabaseAnalysisCache(self.handle) |
| 365 | assert handle is not None |
| 366 | return KeyValueStore(handle=handle) |
nothing calls this directly
no test coverage detected