()
| 22 | func (r *reader) int() int { return r.buf.ReadAny().(int) } |
| 23 | func (r *reader) int64() int64 { return r.buf.ReadAny().(int64) } |
| 24 | func (r *reader) string() string { return r.buf.ReadAny().(string) } |
| 25 | |
| 26 | func (r *reader) tag() interface{} { return reflect.Zero(r.buf.ReadAny().(reflect.Type)).Interface() } |
| 27 |
no test coverage detected