(s string)
| 151 | } |
| 152 | |
| 153 | func (wb *writeBuffer) WriteString(s string) (int, error) { |
| 154 | return io.WriteString(wb.w, s) |
| 155 | } |
| 156 | |
| 157 | func (wb *writeBuffer) Flush() error { |
| 158 | if x, ok := wb.w.(interface{ Flush() error }); ok { |
no outgoing calls
no test coverage detected