(self, node)
| 389 | data.extend(self.construct_sequence(node)) |
| 390 | |
| 391 | def construct_yaml_map(self, node): |
| 392 | data = {} |
| 393 | yield data |
| 394 | value = self.construct_mapping(node) |
| 395 | data.update(value) |
| 396 | |
| 397 | def construct_yaml_object(self, node, cls): |
| 398 | data = cls.__new__(cls) |
nothing calls this directly
no test coverage detected