( moduleFullName bufparse.FullName, commitID uuid.UUID, getDigest func() (Digest, error), )
| 135 | } |
| 136 | |
| 137 | func newModuleKeyNoValidate( |
| 138 | moduleFullName bufparse.FullName, |
| 139 | commitID uuid.UUID, |
| 140 | getDigest func() (Digest, error), |
| 141 | ) *moduleKey { |
| 142 | return &moduleKey{ |
| 143 | moduleFullName: moduleFullName, |
| 144 | commitID: commitID, |
| 145 | getDigest: sync.OnceValues(getDigest), |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | func (m *moduleKey) FullName() bufparse.FullName { |
| 150 | return m.moduleFullName |
no outgoing calls
no test coverage detected
searching dependent graphs…