(parent Node)
| 31 | } |
| 32 | |
| 33 | func WithParent(parent Node) NodeOption { |
| 34 | return func(node *baseNode) { |
| 35 | node.parent = parent |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func WithChecksum(checksum string) NodeOption { |
| 40 | return func(node *baseNode) { |
no outgoing calls
no test coverage detected
searching dependent graphs…