($elemType, $size)
| 522 | } |
| 523 | |
| 524 | public function writeListBegin($elemType, $size) |
| 525 | { |
| 526 | $this->writeJSONArrayStart(); |
| 527 | $this->writeJSONString($this->getTypeNameForTypeID($elemType)); |
| 528 | $this->writeJSONInteger($size); |
| 529 | } |
| 530 | |
| 531 | public function writeListEnd() |
| 532 | { |
nothing calls this directly
no test coverage detected