Resume the target. The call is asynchronous and returns before the target stops. :return: the reason for the stop
(self)
| 820 | return dbgcore.BNDebuggerAttachAndWait(self.handle) |
| 821 | |
| 822 | def go(self) -> bool: |
| 823 | """ |
| 824 | Resume the target. |
| 825 | |
| 826 | The call is asynchronous and returns before the target stops. |
| 827 | |
| 828 | :return: the reason for the stop |
| 829 | """ |
| 830 | return dbgcore.BNDebuggerGo(self.handle) |
| 831 | |
| 832 | def step_into(self, il: binaryninja.FunctionGraphType = binaryninja.FunctionGraphType.NormalFunctionGraph) -> bool: |
| 833 | """ |