(&$elemType, &$size)
| 662 | } |
| 663 | |
| 664 | public function readListBegin(&$elemType, &$size) |
| 665 | { |
| 666 | $this->readJSONArrayStart(); |
| 667 | $elemType = $this->getTypeIDForTypeName($this->readJSONString(false)); |
| 668 | $size = $this->readJSONInteger(); |
| 669 | |
| 670 | return true; |
| 671 | } |
| 672 | |
| 673 | public function readListEnd() |
| 674 | { |
nothing calls this directly
no test coverage detected