LocalModuleWithFullName returns a new LocalModuleOption that adds the given FullName to the result Module. Use LocalModuleWithFullNameAndCommitID if you'd also like to add a CommitID.
(moduleFullName bufparse.FullName)
| 162 | // |
| 163 | // Use LocalModuleWithFullNameAndCommitID if you'd also like to add a CommitID. |
| 164 | func LocalModuleWithFullName(moduleFullName bufparse.FullName) LocalModuleOption { |
| 165 | return func(localModuleOptions *localModuleOptions) { |
| 166 | localModuleOptions.moduleFullName = moduleFullName |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | // LocalModuleWithFullNameAndCommitID returns a new LocalModuleOption that adds the given FullName and CommitID |
| 171 | // to the result Module. |
no outgoing calls
searching dependent graphs…