rawRecorder implements unstable.Unmarshaler and records the raw bytes it receives.
| 5150 | // rawRecorder implements unstable.Unmarshaler and records the raw bytes it |
| 5151 | // receives. |
| 5152 | type rawRecorder struct { |
| 5153 | Raw string |
| 5154 | } |
| 5155 | |
| 5156 | func (r *rawRecorder) UnmarshalTOML(b []byte) error { |
| 5157 | r.Raw = string(b) |
nothing calls this directly
no outgoing calls
no test coverage detected