Lines Matching defs:Module
86 type Module interface { interface
130 OtherModuleName(m Module) string
131 OtherModuleErrorf(m Module, fmt string, args ...interface{})
133 VisitDirectDeps(visit func(Module))
134 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
135 VisitDepsDepthFirst(visit func(Module))
136 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
137 WalkDeps(visit func(Module, Module) bool)
149 VisitAllModuleVariants(visit func(Module))
351 Module() Module methodSpec
364 OtherModuleName(m Module) string
365 OtherModuleErrorf(m Module, fmt string, args ...interface{})
367 VisitDirectDeps(visit func(Module))
368 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
369 VisitDepsDepthFirst(visit func(Module))
370 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
371 WalkDeps(visit func(Module, Module) bool)
377 AddDependency(module Module, name ...string)
378 AddReverseDependency(module Module, name string)
452 func (mctx *mutatorContext) Module() Module { func