(s string)
| 89 | } |
| 90 | |
| 91 | func (w *responseWriter) WriteString(s string) (n int, err error) { |
| 92 | w.WriteHeaderNow() |
| 93 | n, err = io.WriteString(w.ResponseWriter, s) |
| 94 | w.size += n |
| 95 | return |
| 96 | } |
| 97 | |
| 98 | func (w *responseWriter) Status() int { |
| 99 | return w.status |
nothing calls this directly
no test coverage detected