(self, py_db, seq, thread_id, frame_id, vars)
| 342 | py_db.post_internal_command(int_cmd, thread_id) |
| 343 | |
| 344 | def request_load_full_value(self, py_db, seq, thread_id, frame_id, vars): |
| 345 | int_cmd = InternalLoadFullValue(seq, thread_id, frame_id, vars) |
| 346 | py_db.post_internal_command(int_cmd, thread_id) |
| 347 | |
| 348 | def request_get_description(self, py_db, seq, thread_id, frame_id, expression): |
| 349 | py_db.post_method_as_internal_command(thread_id, internal_get_description, seq, thread_id, frame_id, expression) |
no test coverage detected