···29293030// Match is a match for a single atomic query within a file.
3131type Match struct {
3232- Line []byte
3333- LineNum int
3232+ // The line in which a match was found.
3333+ Line []byte
3434+ LineStart int
3535+ LineEnd int
3636+ LineNum int
34373538 // Offset within the line.
3639 LineOff int