textFilePatch is an implementation of fdiff.FilePatch interface
| 175 | |
| 176 | // textFilePatch is an implementation of fdiff.FilePatch interface |
| 177 | type textFilePatch struct { |
| 178 | chunks []fdiff.Chunk |
| 179 | from, to ChangeEntry |
| 180 | } |
| 181 | |
| 182 | func (tf *textFilePatch) Files() (from fdiff.File, to fdiff.File) { |
| 183 | f := &changeEntryWrapper{tf.from} |
nothing calls this directly
no outgoing calls
no test coverage detected