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

Method get_locals_name_to_var

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

Source from the content-addressed store, hash-verified

479 return dict((variable["name"], pydevd_schema.Variable(**variable)) for variable in variables_response.body.variables)
480
481 def get_locals_name_to_var(self, frame_id):
482 name_to_scope = self.get_name_to_scope(frame_id)
483
484 return self.get_name_to_var(name_to_scope["Locals"].variablesReference)
485
486 def get_globals_name_to_var(self, frame_id):
487 name_to_scope = self.get_name_to_scope(frame_id)

Callers 2

get_local_varMethod · 0.95
test_pandasFunction · 0.95

Calls 2

get_name_to_scopeMethod · 0.95
get_name_to_varMethod · 0.95

Tested by

no test coverage detected