(self, val)
| 1339 | class QJsonArrayPrinter(QCborContainerPrinterBase): |
| 1340 | |
| 1341 | def __init__(self, val): |
| 1342 | if dumper.qtVersionAtLeast(0x050f00): # also works in Qt6 |
| 1343 | container_ptr = int(pointer_from_possible_totally_ordered_wrapper(val['a']['d'])) |
| 1344 | else: |
| 1345 | raise RuntimeError("Qt version too old for inspecting QJsonArray") |
| 1346 | super().__init__(container_ptr, 'QJsonArray') |
| 1347 | |
| 1348 | class QJsonObjectPrinter(QCborContainerPrinterBase): |
| 1349 |
nothing calls this directly
no test coverage detected