(self, eval_format)
| 539 | eval_format.format(for_evaluation(self._data[index]))) |
| 540 | |
| 541 | def iter_eval(self, eval_format): |
| 542 | data_eval = for_evaluation(self._data) |
| 543 | for i in range(self._size): |
| 544 | yield gdb.parse_and_eval( |
| 545 | eval_format.format(f"{data_eval}[{i}]")) |
| 546 | |
| 547 | @property |
| 548 | def size(self): |
nothing calls this directly
no test coverage detected