()
| 1728 | func (jsonString) Len() int { return 0 } |
| 1729 | func (j jsonArray) Len() int { return len(j) } |
| 1730 | func (j jsonObject) Len() int { return len(j) } |
| 1731 | |
| 1732 | func (jsonNull) toGoRepr() (interface{}, error) { return nil, nil } |
| 1733 | func (jsonTrue) toGoRepr() (interface{}, error) { return true, nil } |
no outgoing calls
no test coverage detected