formattingCapture captures the raw TOML bytes to verify formatting preservation
| 5094 | |
| 5095 | // formattingCapture captures the raw TOML bytes to verify formatting preservation |
| 5096 | type formattingCapture struct { |
| 5097 | RawBytes string |
| 5098 | } |
| 5099 | |
| 5100 | func (f *formattingCapture) UnmarshalTOML(data []byte) error { |
| 5101 | f.RawBytes = string(data) |
nothing calls this directly
no outgoing calls
no test coverage detected