blob: 7432a719ce0494fc8e5efa5f84f18ca54ecc2872 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package commitquery
import (
commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read"
objectid "codeberg.org/lindenii/furgit/object/id"
)
// node stores one mutable commit traversal node.
type node struct {
id objectid.ObjectID
parents []nodeIndex
commitTime int64
generation uint64
hasGeneration bool
hasGraphPos bool
loaded bool
graphPos commitgraphread.Position
marks markBits
touchedPhase uint32
}
|