(ctx context.Context)
| 88 | } |
| 89 | |
| 90 | func (p *TJSONProtocol) WriteStructEnd(ctx context.Context) error { |
| 91 | return p.OutputObjectEnd() |
| 92 | } |
| 93 | |
| 94 | func (p *TJSONProtocol) WriteFieldBegin(ctx context.Context, name string, typeId TType, id int16) error { |
| 95 | if e := p.WriteI16(ctx, id); e != nil { |
nothing calls this directly
no test coverage detected