type gotest.tools/v3/internal/difflib.Match

13 uses

	gotest.tools/v3/internal/difflib (current package)
		difflib.go#L24: type Match struct {
		difflib.go#L72: 	matchingBlocks []Match
		difflib.go#L192: func (m *SequenceMatcher) findLongestMatch(alo, ahi, blo, bhi int) Match {
		difflib.go#L262: 	return Match{A: besti, B: bestj, Size: bestsize}
		difflib.go#L276: func (m *SequenceMatcher) GetMatchingBlocks() []Match {
		difflib.go#L281: 	var matchBlocks func(alo, ahi, blo, bhi int, matched []Match) []Match
		difflib.go#L282: 	matchBlocks = func(alo, ahi, blo, bhi int, matched []Match) []Match {
		difflib.go#L300: 	nonAdjacent := []Match{}
		difflib.go#L315: 				nonAdjacent = append(nonAdjacent, Match{i1, j1, k1})
		difflib.go#L321: 		nonAdjacent = append(nonAdjacent, Match{i1, j1, k1})
		difflib.go#L324: 	nonAdjacent = append(nonAdjacent, Match{len(m.a), len(m.b), 0})