(s string)
| 344 | } |
| 345 | |
| 346 | func (w *binaryWriter) writeString(s string) error { |
| 347 | _, err := io.WriteString(w.w, s) |
| 348 | return err |
| 349 | } |
| 350 | |
| 351 | func (w *binaryWriter) writeByte(b byte) error { |
| 352 | // The special cases are intended to reduce the runtime overheadof testing |
no test coverage detected