(ctx context.Context, name string)
| 232 | } |
| 233 | |
| 234 | func (p *TSimpleJSONProtocol) WriteStructBegin(ctx context.Context, name string) error { |
| 235 | if e := p.OutputObjectBegin(); e != nil { |
| 236 | return e |
| 237 | } |
| 238 | return nil |
| 239 | } |
| 240 | |
| 241 | func (p *TSimpleJSONProtocol) WriteStructEnd(ctx context.Context) error { |
| 242 | return p.OutputObjectEnd() |
nothing calls this directly
no test coverage detected