MCPcopy Index your code
hub / github.com/antonmedv/gitmal / Line

Struct Line

pkg/gitdiff/gitdiff.go:157–160  ·  view source on GitHub ↗

Line is a line in a text fragment.

Source from the content-addressed store, hash-verified

155
156// Line is a line in a text fragment.
157type Line struct {
158 Op LineOp
159 Line string
160}
161
162func (fl Line) String() string {
163 return fl.Op.String() + fl.Line

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected