(self)
| 1855 | return "array" |
| 1856 | |
| 1857 | def children(self): |
| 1858 | for i, chunk in enumerate(self.chunks): |
| 1859 | printer = ArrayPrinter(deref(chunk)) |
| 1860 | yield str(i), printer._format_contents() |
| 1861 | |
| 1862 | def to_string(self): |
| 1863 | ty = deref(self.val['type_']) |
nothing calls this directly
no test coverage detected