wrapper around a reader.
| 75 | |
| 76 | // wrapper around a reader. |
| 77 | type readerWrapper struct { |
| 78 | r io.Reader |
| 79 | tmp [8]byte |
| 80 | } |
| 81 | |
| 82 | func (r *readerWrapper) readSmall(n int) ([]byte, error) { |
| 83 | if debugAsserts && n > 8 { |
nothing calls this directly
no outgoing calls
no test coverage detected