()
| 325 | } |
| 326 | |
| 327 | private function readJSONNumericChars() |
| 328 | { |
| 329 | $strbld = array(); |
| 330 | |
| 331 | while (true) { |
| 332 | $ch = $this->reader_->peek(); |
| 333 | |
| 334 | if (!$this->isJSONNumeric($ch)) { |
| 335 | break; |
| 336 | } |
| 337 | |
| 338 | $strbld[] = $this->reader_->read(); |
| 339 | } |
| 340 | |
| 341 | return implode("", $strbld); |
| 342 | } |
| 343 | |
| 344 | private function readJSONInteger() |
| 345 | { |
no test coverage detected