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