Get the connection status of the debugger
(self)
| 1037 | |
| 1038 | @property |
| 1039 | def connection_status(self) -> DebugAdapterConnectionStatus: |
| 1040 | """ |
| 1041 | Get the connection status of the debugger |
| 1042 | """ |
| 1043 | return DebugAdapterConnectionStatus(dbgcore.BNDebuggerGetConnectionStatus(self.handle)) |
| 1044 | |
| 1045 | @property |
| 1046 | def target_status(self) -> DebugAdapterTargetStatus: |
nothing calls this directly
no outgoing calls
no test coverage detected