(ctx context.Context, name string)
| 81 | } |
| 82 | |
| 83 | func (p *TJSONProtocol) WriteStructBegin(ctx context.Context, name string) error { |
| 84 | if e := p.OutputObjectBegin(); e != nil { |
| 85 | return e |
| 86 | } |
| 87 | return nil |
| 88 | } |
| 89 | |
| 90 | func (p *TJSONProtocol) WriteStructEnd(ctx context.Context) error { |
| 91 | return p.OutputObjectEnd() |
nothing calls this directly
no test coverage detected