Get the status of the target
(self)
| 1044 | |
| 1045 | @property |
| 1046 | def target_status(self) -> DebugAdapterTargetStatus: |
| 1047 | """ |
| 1048 | Get the status of the target |
| 1049 | """ |
| 1050 | return DebugAdapterTargetStatus(dbgcore.BNDebuggerGetTargetStatus(self.handle)) |
| 1051 | |
| 1052 | @property |
| 1053 | def remote_host(self) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected