(self, frame_id)
| 463 | return name_to_scopes |
| 464 | |
| 465 | def get_step_in_targets(self, frame_id): |
| 466 | request = self.write_request(pydevd_schema.StepInTargetsRequest(pydevd_schema.StepInTargetsArguments(frame_id))) |
| 467 | |
| 468 | # : :type response: StepInTargetsResponse |
| 469 | response = self.wait_for_response(request) |
| 470 | |
| 471 | # : :type body: StepInTargetsResponseBody |
| 472 | body = response.body |
| 473 | targets = body.targets |
| 474 | # : :type targets: List[StepInTarget] |
| 475 | return targets |
| 476 | |
| 477 | def get_name_to_var(self, variables_reference): |
| 478 | variables_response = self.get_variables_response(variables_reference) |
no test coverage detected