(v value)
| 143 | } |
| 144 | |
| 145 | func (e *encoder) encodeNullString(v value) { |
| 146 | e.writeNullString(v.string()) |
| 147 | } |
| 148 | |
| 149 | func (e *encoder) encodeCompactNullString(v value) { |
| 150 | e.writeCompactNullString(v.string()) |
nothing calls this directly
no test coverage detected