(oid git.OID)
| 544 | } |
| 545 | |
| 546 | func newTreeRecord(oid git.OID) *treeRecord { |
| 547 | return &treeRecord{ |
| 548 | oid: oid, |
| 549 | size: TreeSize{ExpandedTreeCount: 1}, |
| 550 | pending: -1, |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | // Initialize `r` (which is empty) based on `tree`. |
| 555 | func (r *treeRecord) initialize(g *Graph, oid git.OID, tree *git.Tree) error { |
no outgoing calls
no test coverage detected