(self, _self, fmt=None)
| 417 | return ret |
| 418 | |
| 419 | def get_dictionary(self, _self, fmt=None): |
| 420 | dct = {} |
| 421 | for key, obj, _ in self.get_contents_debug_adapter_protocol(self, fmt): |
| 422 | dct[key] = obj |
| 423 | return dct |
| 424 | |
| 425 | def resolve(self, attribute): |
| 426 | from_i, to_i = attribute[1:-1].split(":") |
no test coverage detected