| 77 | bool Double(double d) { PrettyPrefix(kNumberType); return Base::WriteDouble(d); } |
| 78 | |
| 79 | bool String(const Ch* str, SizeType length, bool copy = false) { |
| 80 | (void)copy; |
| 81 | PrettyPrefix(kStringType); |
| 82 | return Base::WriteString(str, length); |
| 83 | } |
| 84 | |
| 85 | bool StartObject() { |
| 86 | PrettyPrefix(kObjectType); |
no test coverage detected