(toml string, target reflect.Type, highlight []byte)
| 426 | } |
| 427 | |
| 428 | func (d *decoder) typeMismatchError(toml string, target reflect.Type, highlight []byte) error { |
| 429 | return &typeMismatchError{ |
| 430 | toml: toml, |
| 431 | target: target, |
| 432 | highlight: highlight, |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | type typeMismatchError struct { |
| 437 | toml string |
no outgoing calls
no test coverage detected