(code int)
| 1372 | return (*rwState)(w).doHeader() |
| 1373 | } |
| 1374 | func (w *rw3) WriteHeader(code int) { |
| 1375 | (*rwState)(w).doWriteHeader(code) |
| 1376 | } |
| 1377 | func (w *rw3) Write(b []byte) (int, error) { |
| 1378 | return (*rwState)(w).doWrite(b) |
| 1379 | } |
nothing calls this directly
no test coverage detected