Home | History | Annotate | Download | only in blueprint

Lines Matching refs:dep

55 		ctx.VisitDepsDepthFirst(func(dep Module) {
56 if ctx.OtherModuleDependencyTag(dep) != visitTagDep {
57 panic(fmt.Errorf("unexpected dependency tag on %q", ctx.OtherModuleName(dep)))
59 m.properties.VisitDepsDepthFirst = m.properties.VisitDepsDepthFirst + ctx.OtherModuleName(dep)
61 ctx.VisitDepsDepthFirstIf(func(dep Module) bool {
62 return ctx.OtherModuleName(dep) != "B"
63 }, func(dep Module) {
64 m.properties.VisitDepsDepthFirstIf = m.properties.VisitDepsDepthFirstIf + ctx.OtherModuleName(dep)
66 ctx.VisitDirectDeps(func(dep Module) {
67 m.properties.VisitDirectDeps = m.properties.VisitDirectDeps + ctx.OtherModuleName(dep)
69 ctx.VisitDirectDepsIf(func(dep Module) bool {
70 return ctx.OtherModuleName(dep) != "B"
71 }, func(dep Module) {
72 m.properties.VisitDirectDepsIf = m.properties.VisitDirectDepsIf + ctx.OtherModuleName(dep)
131 t.Errorf("unexpected dep errors:")