(ctx context.Context)
| 328 | } |
| 329 | |
| 330 | func (p *TJSONProtocol) ReadMapEnd(ctx context.Context) error { |
| 331 | e := p.ParseObjectEnd() |
| 332 | if e != nil { |
| 333 | return e |
| 334 | } |
| 335 | return p.ParseListEnd() |
| 336 | } |
| 337 | |
| 338 | func (p *TJSONProtocol) ReadListBegin(ctx context.Context) (elemType TType, size int, e error) { |
| 339 | return p.ParseElemListBegin() |