MarshalJSON should only be used for testing. It's not a complete implementation.
()
| 176 | // MarshalJSON should only be used for testing. |
| 177 | // It's not a complete implementation. |
| 178 | func (v Value) MarshalJSON() ([]byte, error) { |
| 179 | return json.Marshal(v.Inner) |
| 180 | } |
| 181 | |
| 182 | // UnmarshalJSON should only be used for testing. |
| 183 | // It's not a complete implementation. |
no outgoing calls