($num)
| 218 | } |
| 219 | |
| 220 | private function writeJSONInteger($num) |
| 221 | { |
| 222 | $this->context_->write(); |
| 223 | |
| 224 | if ($this->context_->escapeNum()) { |
| 225 | $this->trans_->write(self::QUOTE); |
| 226 | } |
| 227 | |
| 228 | $this->trans_->write($num); |
| 229 | |
| 230 | if ($this->context_->escapeNum()) { |
| 231 | $this->trans_->write(self::QUOTE); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | private function writeJSONDouble($num) |
| 236 | { |
no test coverage detected