MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_step_in_targets

Method get_step_in_targets

tests_python/test_debugger_json.py:465–475  ·  view source on GitHub ↗
(self, frame_id)

Source from the content-addressed store, hash-verified

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)

Calls 2

write_requestMethod · 0.95
wait_for_responseMethod · 0.95

Tested by

no test coverage detected