()
| 35 | } |
| 36 | |
| 37 | func newProtoFileTracker() *protoFileTracker { |
| 38 | return &protoFileTracker{ |
| 39 | opaqueIDToProtoFileExists: make(map[string]bool), |
| 40 | protoPathToOpaqueIDMap: make(map[string]map[string]struct{}), |
| 41 | opaqueIDToDescription: make(map[string]string), |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // trackModule says to track the Module to see if it has any .proto files. |
| 46 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…