(code int)
| 1355 | return (*rwState)(w).doHeader() |
| 1356 | } |
| 1357 | func (w *rw2) WriteHeader(code int) { |
| 1358 | (*rwState)(w).doWriteHeader(code) |
| 1359 | } |
| 1360 | func (w *rw2) Write(b []byte) (int, error) { |
| 1361 | return (*rwState)(w).doWrite(b) |
| 1362 | } |
nothing calls this directly
no test coverage detected