(w jsWriter, msg []byte, scratch []byte, depth int)
| 175 | } |
| 176 | |
| 177 | func rwStringBytes(w jsWriter, msg []byte, scratch []byte, depth int) ([]byte, []byte, error) { |
| 178 | str, msg, err := ReadStringZC(msg) |
| 179 | if err != nil { |
| 180 | return msg, scratch, err |
| 181 | } |
| 182 | _, err = rwquoted(w, str) |
| 183 | return msg, scratch, err |
| 184 | } |
| 185 | |
| 186 | func rwBytesBytes(w jsWriter, msg []byte, scratch []byte, depth int) ([]byte, []byte, error) { |
| 187 | bts, msg, err := ReadBytesZC(msg) |
no test coverage detected
searching dependent graphs…