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

Method collect_all_dap

tests_python/test_resolvers.py:419–425  ·  view source on GitHub ↗
(self, variable, level=0)

Source from the content-addressed store, hash-verified

417 self.data_regression.check(found)
418
419 def collect_all_dap(self, variable, level=0):
420 children_variables = variable.get_children_variables()
421 for var in children_variables:
422 if var.name in ("special variables", "function variables"):
423 continue
424 yield level, var
425 yield from self.collect_all_dap(var, level + 1)
426
427
428@pytest.fixture

Callers 1

checkMethod · 0.95

Calls 1

Tested by

no test coverage detected