(self, thread_id, frame_id)
| 431 | return self._thread_id_to_frames_list.get(thread_id) |
| 432 | |
| 433 | def find_frame(self, thread_id, frame_id): |
| 434 | with self._lock: |
| 435 | return self._frame_id_to_frame.get(frame_id) |
| 436 | |
| 437 | def create_thread_suspend_command(self, thread_id, stop_reason, message, trace_suspend_type, thread, additional_info): |
| 438 | with self._lock: |
no test coverage detected