(ctx context.Context)
| 239 | } |
| 240 | |
| 241 | func (p *TSimpleJSONProtocol) WriteStructEnd(ctx context.Context) error { |
| 242 | return p.OutputObjectEnd() |
| 243 | } |
| 244 | |
| 245 | func (p *TSimpleJSONProtocol) WriteFieldBegin(ctx context.Context, name string, typeId TType, id int16) error { |
| 246 | if e := p.WriteString(ctx, name); e != nil { |
nothing calls this directly
no test coverage detected