(s string)
| 753 | } |
| 754 | |
| 755 | func (p *TSimpleJSONProtocol) OutputStringData(s string) error { |
| 756 | _, e := p.write([]byte(s)) |
| 757 | return NewTProtocolException(e) |
| 758 | } |
| 759 | |
| 760 | func (p *TSimpleJSONProtocol) OutputObjectBegin() error { |
| 761 | if e := p.OutputPreValue(); e != nil { |
no test coverage detected