()
| 1734 | func (jsonFalse) toGoRepr() (interface{}, error) { return false, nil } |
| 1735 | func (j jsonString) toGoRepr() (interface{}, error) { return string(j), nil } |
| 1736 | func (j jsonNumber) toGoRepr() (interface{}, error) { return json.Number(j.String()), nil } |
| 1737 | func (j jsonArray) toGoRepr() (interface{}, error) { |
| 1738 | result := make([]interface{}, len(j)) |
| 1739 | for i, e := range j { |