| 166 | } |
| 167 | |
| 168 | TAfterColonContext TBuf::UnsafeWriteKey(const TStringBuf& s) { |
| 169 | BeginKey(); |
| 170 | RawWriteChar('"'); |
| 171 | UnsafeWriteRawBytes(s); |
| 172 | UnsafeWriteRawBytes("\":", 2); |
| 173 | return TAfterColonContext(*this); |
| 174 | } |
| 175 | |
| 176 | TAfterColonContext TBuf::WriteKey(const TStringBuf& s) { |
| 177 | // use the default escaping mode for this object |
no test coverage detected