MaybeDecode implements the JSON interface.
()
| 784 | |
| 785 | // MaybeDecode implements the JSON interface. |
| 786 | func (j *jsonEncoded) MaybeDecode() JSON { |
| 787 | return j.mustDecode() |
| 788 | } |
| 789 | |
| 790 | // toGoRepr implements the JSON interface. |
| 791 | func (j *jsonEncoded) toGoRepr() (interface{}, error) { |
nothing calls this directly
no test coverage detected