ref: af08c84539f9353718604988ba27ae3c466860fc
dir: /reachability/domain.go/
package reachability // Domain specifies which graph edges are traversed. type Domain uint8 const ( // DomainCommits traverses commit-parent edges and annotated-tag target edges. DomainCommits Domain = iota // DomainObjects traverses full commit/tree/blob objects. DomainObjects )