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