Dep is a task dependency
| 8 | |
| 9 | // Dep is a task dependency |
| 10 | type Dep struct { |
| 11 | Task string |
| 12 | For *For |
| 13 | Vars *Vars |
| 14 | Silent bool |
| 15 | } |
| 16 | |
| 17 | func (d *Dep) DeepCopy() *Dep { |
| 18 | if d == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected