(v value)
| 147 | } |
| 148 | |
| 149 | func (e *encoder) encodeCompactNullString(v value) { |
| 150 | e.writeCompactNullString(v.string()) |
| 151 | } |
| 152 | |
| 153 | func (e *encoder) encodeBytes(v value) { |
| 154 | e.writeBytes(v.bytes()) |
nothing calls this directly
no test coverage detected