(w jsWriter, msg []byte, scratch []byte, depth int)
| 208 | } |
| 209 | |
| 210 | func rwNullBytes(w jsWriter, msg []byte, scratch []byte, depth int) ([]byte, []byte, error) { |
| 211 | msg, err := ReadNilBytes(msg) |
| 212 | if err != nil { |
| 213 | return msg, scratch, err |
| 214 | } |
| 215 | _, err = w.Write(null) |
| 216 | return msg, scratch, err |
| 217 | } |
| 218 | |
| 219 | func rwBoolBytes(w jsWriter, msg []byte, scratch []byte, depth int) ([]byte, []byte, error) { |
| 220 | b, msg, err := ReadBoolBytes(msg) |
nothing calls this directly
no test coverage detected
searching dependent graphs…