(s string)
| 153 | } |
| 154 | |
| 155 | func (nw *narWriter) str(s string) { |
| 156 | if err := writeString(nw.w, s); err != nil { |
| 157 | panic(writeNARError{err}) |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | func writeString(w io.Writer, s string) error { |
| 162 | var buf [8]byte |
no test coverage detected