type gotest.tools/v3/internal/difflib.Match
13 uses
gotest.tools/v3/internal/difflib (current package)
difflib.go#L25: type Match struct {
difflib.go#L73: matchingBlocks []Match
difflib.go#L196: func (m *SequenceMatcher) findLongestMatch(alo, ahi, blo, bhi int) Match {
difflib.go#L266: return Match{A: besti, B: bestj, Size: bestsize}
difflib.go#L280: func (m *SequenceMatcher) GetMatchingBlocks() []Match {
difflib.go#L285: var matchBlocks func(alo, ahi, blo, bhi int, matched []Match) []Match
difflib.go#L286: matchBlocks = func(alo, ahi, blo, bhi int, matched []Match) []Match {
difflib.go#L304: nonAdjacent := []Match{}
difflib.go#L319: nonAdjacent = append(nonAdjacent, Match{i1, j1, k1})
difflib.go#L325: nonAdjacent = append(nonAdjacent, Match{i1, j1, k1})
difflib.go#L328: nonAdjacent = append(nonAdjacent, Match{len(m.a), len(m.b), 0})