| 262 | static const size_t kDefaultLevelDepth = 32; |
| 263 | |
| 264 | bool WriteNull() { |
| 265 | PutReserve(*os_, 4); |
| 266 | PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'u'); PutUnsafe(*os_, 'l'); PutUnsafe(*os_, 'l'); return true; |
| 267 | } |
| 268 | |
| 269 | bool WriteBool(bool b) { |
| 270 | if (b) { |
nothing calls this directly
no test coverage detected