(v reflect.Value, opts encOpts)
| 332 | } |
| 333 | |
| 334 | func (e *encodeState) reflectValue(v reflect.Value, opts encOpts) { |
| 335 | valueEncoder(v)(e, v, opts) |
| 336 | } |
| 337 | |
| 338 | type encOpts struct { |
| 339 | // quoted causes primitive fields to be encoded inside JSON strings. |
no test coverage detected