textChunk is an implementation of fdiff.Chunk interface
| 204 | |
| 205 | // textChunk is an implementation of fdiff.Chunk interface |
| 206 | type textChunk struct { |
| 207 | content string |
| 208 | op fdiff.Operation |
| 209 | } |
| 210 | |
| 211 | func (t *textChunk) Content() string { |
| 212 | return t.content |
nothing calls this directly
no outgoing calls
no test coverage detected