ref: 1e2daa32b76bf6a04a01f52e2671755d8611f363
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 )