(code int)
| 1472 | return (*rwState)(w).doHeader() |
| 1473 | } |
| 1474 | func (w *rw8) WriteHeader(code int) { |
| 1475 | (*rwState)(w).doWriteHeader(code) |
| 1476 | } |
| 1477 | func (w *rw8) Write(b []byte) (int, error) { |
| 1478 | return (*rwState)(w).doWrite(b) |
| 1479 | } |
nothing calls this directly
no test coverage detected