(self)
| 87 | |
| 88 | @property |
| 89 | def core_file(self) -> 'ProjectFile': |
| 90 | core_handle = core.BNRemoteFileGetCoreFile(self._handle) |
| 91 | if core_handle is None: |
| 92 | raise RuntimeError(util._last_error()) |
| 93 | return ProjectFile(handle=ctypes.cast(core_handle, ctypes.POINTER(core.BNProjectFile))) |
| 94 | |
| 95 | @property |
| 96 | def project(self) -> 'project.RemoteProject': |
nothing calls this directly
no test coverage detected