Searched refs:MkModule (Results 1 – 4 of 4) sorted by relevance
/build/bazel/mkcompare/ |
D | mkdiff_test.go | 77 …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"}},
|
D | mkfile.go | 18 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)}
|
D | mkdiff.go | 61 Ref *MkModule `json:"-"` 62 Our *MkModule `json:"-"` 111 func Compare(refMod *MkModule, ourMod *MkModule, varFilter func(string) bool) MkModuleDiff { argument
|
D | mkfile_test.go | 34 Modules: map[string]*MkModule{
|