| 26 | } |
| 27 | |
| 28 | type depcheck struct { |
| 29 | debugMode bool |
| 30 | ctx context.Context |
| 31 | versionInfos map[string][]versionInfo |
| 32 | visited map[string]bool |
| 33 | path []string |
| 34 | } |
| 35 | |
| 36 | func (d *depcheck) log(format string, v ...any) { |
| 37 | if d.debugMode { |
nothing calls this directly
no outgoing calls
no test coverage detected