(ctx context.Context, name string, typeId TType, id int16)
| 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 { |
| 247 | return e |
| 248 | } |
| 249 | return nil |
| 250 | } |
| 251 | |
| 252 | func (p *TSimpleJSONProtocol) WriteFieldEnd(ctx context.Context) error { |
| 253 | return nil |
nothing calls this directly
no test coverage detected