(self)
| 198 | return 'array' |
| 199 | |
| 200 | def to_string(self): |
| 201 | capacity = int(self.val['t_'].dereference()['capacity']) |
| 202 | return 'array [size={0}, capacity={1}]'.format( |
| 203 | self.num_children(), capacity) |
| 204 | |
| 205 | def num_children(self): |
| 206 | return int(self.val['t_'].dereference()['size']) |
nothing calls this directly
no test coverage detected