File: hunk.go

package info (click to toggle)
golang-gitea-noerw-unidiff-comments 0.0~git20220822.50f4daa%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: makefile: 4
file content (10 lines) | stat: -rw-r--r-- 178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
package types

type Hunk struct {
	SourceLine      int64
	SourceSpan      int64
	DestinationLine int64
	DestinationSpan int64
	Truncated       bool
	Segments        []*Segment
}