(ctx context.Context)
| 534 | } |
| 535 | |
| 536 | func (p *TSimpleJSONProtocol) ReadDouble(ctx context.Context) (float64, error) { |
| 537 | v, _, err := p.ParseF64() |
| 538 | return v, err |
| 539 | } |
| 540 | |
| 541 | func (p *TSimpleJSONProtocol) ReadString(ctx context.Context) (string, error) { |
| 542 | var v string |