(self, **arguments)
| 317 | return self._write_launch_or_attach("launch", **arguments) |
| 318 | |
| 319 | def write_attach(self, **arguments): |
| 320 | return self._write_launch_or_attach("attach", **arguments) |
| 321 | |
| 322 | def write_disconnect(self, wait_for_response=True, terminate_debugee=False): |
| 323 | assert self._sent_launch_or_attach |
no test coverage detected