Note: only called when using the DAP (Debug Adapter Protocol).
(self)
| 913 | return self._on_configuration_done_event.is_set() |
| 914 | |
| 915 | def on_disconnect(self): |
| 916 | """ |
| 917 | Note: only called when using the DAP (Debug Adapter Protocol). |
| 918 | """ |
| 919 | self.authentication.logout() |
| 920 | self._on_configuration_done_event.clear() |
| 921 | |
| 922 | def set_ignore_system_exit_codes(self, ignore_system_exit_codes): |
| 923 | assert isinstance(ignore_system_exit_codes, (list, tuple, set)) |
no test coverage detected