Home
last modified time | relevance | path

Searched refs:MkModule (Results 1 – 4 of 4) sorted by relevance

/build/bazel/mkcompare/
Dmkdiff_test.go77 …refMod1 := MkModule{Type: "foo", Location: 1, Variables: map[string]string{"var1": "a", "var2": "b…
78 …ourMod1 := MkModule{Type: "foo", Location: 3, Variables: map[string]string{"var1": "a", "var2": "c…
81 refMod *MkModule
82 ourMod *MkModule
105 ourMod: &MkModule{Type: "foo", Variables: map[string]string{"var2": "b", "var3": "c"}},
Dmkfile.go18 type MkModule struct { struct
27 Modules map[string]*MkModule
58 func (mk *MkFile) handleModule(scanner *myScanner, moduleType string) (*MkModule, error) {
59 mod := MkModule{Location: scanner.lineNo, Type: moduleType, Variables: make(map[string]string)}
113 func (mk *MkFile) moduleKey(mod *MkModule) (string, error) {
149 mkFile := &MkFile{Modules: make(map[string]*MkModule)}
Dmkdiff.go61 Ref *MkModule `json:"-"`
62 Our *MkModule `json:"-"`
111 func Compare(refMod *MkModule, ourMod *MkModule, varFilter func(string) bool) MkModuleDiff { argument
Dmkfile_test.go34 Modules: map[string]*MkModule{