()
| 155 | } |
| 156 | |
| 157 | func (wb *writeBuffer) Flush() error { |
| 158 | if x, ok := wb.w.(interface{ Flush() error }); ok { |
| 159 | return x.Flush() |
| 160 | } |
| 161 | return nil |
| 162 | } |
| 163 | |
| 164 | type writable interface { |
| 165 | writeTo(*writeBuffer) |
no outgoing calls
no test coverage detected