( module Module, parent Module, isDirect bool, )
| 55 | } |
| 56 | |
| 57 | func newModuleDep( |
| 58 | module Module, |
| 59 | parent Module, |
| 60 | isDirect bool, |
| 61 | ) *moduleDep { |
| 62 | return &moduleDep{ |
| 63 | Module: module, |
| 64 | parent: parent, |
| 65 | isDirect: isDirect, |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | func (m *moduleDep) Parent() Module { |
| 70 | return m.parent |
no outgoing calls
no test coverage detected
searching dependent graphs…