| 182 | } |
| 183 | |
| 184 | TAfterColonContext TBuf::CompatWriteKeyWithoutQuotes(const TStringBuf& s) { |
| 185 | BeginKey(); |
| 186 | Y_ASSERT(AllOf(s, [](char x) { return 'a' <= x && x <= 'z'; })); |
| 187 | UnsafeWriteRawBytes(s); |
| 188 | RawWriteChar(':'); |
| 189 | return TAfterColonContext(*this); |
| 190 | } |
| 191 | |
| 192 | TBuf& TBuf::EndList() { |
| 193 | CheckAndPop(JE_LIST); |
no test coverage detected