(v value)
| 139 | } |
| 140 | |
| 141 | func (e *encoder) encodeCompactString(v value) { |
| 142 | e.writeCompactString(v.string()) |
| 143 | } |
| 144 | |
| 145 | func (e *encoder) encodeNullString(v value) { |
| 146 | e.writeNullString(v.string()) |
nothing calls this directly
no test coverage detected