(key, field string)
| 1506 | } |
| 1507 | |
| 1508 | func (d decoder) prependField(key, field string) string { |
| 1509 | if field != "" { |
| 1510 | return key + "." + field |
| 1511 | } |
| 1512 | return key |
| 1513 | } |
| 1514 | |
| 1515 | func (d decoder) inputError(b []byte, t reflect.Type) ([]byte, error) { |
| 1516 | if len(b) == 0 { |
no outgoing calls
no test coverage detected