ref: a9684e72e9ec9045c4588ef103e6489868bca394
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 )