Lines Matching full:our
35 var normalizer = map[string]func(ref, our string) (string, string){
43 func normalizePrebuiltModuleFile(ref string, our string) (string, string) {
44 …return strings.ReplaceAll(ref, "/bazelCombined/", "/combined/"), strings.ReplaceAll(our, "/bazelCo…
49 func normalizeInstallPairs(ref string, our string) (string, string) {
50 … rexRemoveInstallSource.ReplaceAllString(ref, ""), rexRemoveInstallSource.ReplaceAllString(our, "")
59 // MkModuleDiff holds module difference between reference and our mkfile.
62 Our *MkModule `json:"-"` member
80 fmt.Fprintf(sink, "%s (ref line %d, our line %d):\n", name, d.Ref.Location, d.Our.Location)
82 fmt.Fprintf(sink, " type %s <-> %s\n", d.Ref.Type, d.Our.Type)
86 fmt.Fprintf(sink, " extras %d <-> %d\n", d.Ref.Extras, d.Our.Extras)
114 Our: ourMod,
119 d.MissingVars, common, d.ExtraVars = Classify(d.Ref.Variables, d.Our.Variables, varFilter)
125 ourValue := d.Our.Variables[v]
142 func compareVariableValues(ref string, our string, sortItems bool) ([]string, []string) {
144 ourTokens := strings.Split(our, " ")