captured records the raw TOML bytes delivered to it through the unmarshaler interface.
| 13 | // captured records the raw TOML bytes delivered to it through the unmarshaler |
| 14 | // interface. |
| 15 | type captured struct { |
| 16 | raw string |
| 17 | } |
| 18 | |
| 19 | func (c *captured) UnmarshalTOML(data []byte) error { |
| 20 | c.raw = string(data) |
nothing calls this directly
no outgoing calls
no test coverage detected