MaybeDecode implements the JSON interface.
()
| 855 | |
| 856 | // MaybeDecode implements the JSON interface. |
| 857 | func (j *jsonEncoded) MaybeDecode() JSON { |
| 858 | return j.mustDecode() |
| 859 | } |
| 860 | |
| 861 | // toGoRepr implements the JSON interface. |
| 862 | func (j *jsonEncoded) toGoRepr() (interface{}, error) { |
nothing calls this directly
no test coverage detected