| 144 | } |
| 145 | |
| 146 | TValueContext TBuf::BeginList() { |
| 147 | NeedNewline = true; |
| 148 | BeginValue(); |
| 149 | RawWriteChar('['); |
| 150 | StackPush(JE_LIST); |
| 151 | NeedComma = false; |
| 152 | return TValueContext(*this); |
| 153 | } |
| 154 | |
| 155 | TPairContext TBuf::BeginObject() { |
| 156 | NeedNewline = true; |
nothing calls this directly
no test coverage detected