()
| 686 | } |
| 687 | |
| 688 | func (p *TSimpleJSONProtocol) OutputNull() error { |
| 689 | if e := p.OutputPreValue(); e != nil { |
| 690 | return e |
| 691 | } |
| 692 | if _, e := p.write(JSON_NULL); e != nil { |
| 693 | return NewTProtocolException(e) |
| 694 | } |
| 695 | return p.OutputPostValue() |
| 696 | } |
| 697 | |
| 698 | func (p *TSimpleJSONProtocol) OutputF64(value float64) error { |
| 699 | if e := p.OutputPreValue(); e != nil { |
nothing calls this directly
no test coverage detected