(s storage.Storer)
| 18 | } |
| 19 | |
| 20 | func newObjectWalker(s storage.Storer) *objectWalker { |
| 21 | return &objectWalker{s, map[plumbing.Hash]struct{}{}} |
| 22 | } |
| 23 | |
| 24 | // walkAllRefs walks all (hash) references from the repo. |
| 25 | func (p *objectWalker) walkAllRefs() error { |
no outgoing calls
no test coverage detected
searching dependent graphs…