| 157 | } |
| 158 | |
| 159 | TPairContext TBuf::BeginObject() { |
| 160 | BeginValue(); |
| 161 | RawWriteChar('{'); |
| 162 | NeedNewline = true; |
| 163 | StackPush(JE_OBJECT); |
| 164 | NeedComma = false; |
| 165 | return TPairContext(*this); |
| 166 | } |
| 167 | |
| 168 | TAfterColonContext TBuf::UnsafeWriteKey(const TStringBuf& s) { |
| 169 | BeginKey(); |
nothing calls this directly
no test coverage detected