(self, variable, level=0)
| 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 |
no test coverage detected