Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for seenPkgMap (0.14 sec)

  1. src/cmd/compile/internal/types2/format.go

    	}
    	return ""
    }
    
    // markImports recursively walks pkg and its imports, to record unique import
    // paths in pkgPathMap.
    func (check *Checker) markImports(pkg *Package) {
    	if check.seenPkgMap[pkg] {
    		return
    	}
    	check.seenPkgMap[pkg] = true
    
    	forName, ok := check.pkgPathMap[pkg.name]
    	if !ok {
    		forName = make(map[string]bool)
    		check.pkgPathMap[pkg.name] = forName
    	}
    	forName[pkg.path] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/go/types/format.go

    	}
    	return ""
    }
    
    // markImports recursively walks pkg and its imports, to record unique import
    // paths in pkgPathMap.
    func (check *Checker) markImports(pkg *Package) {
    	if check.seenPkgMap[pkg] {
    		return
    	}
    	check.seenPkgMap[pkg] = true
    
    	forName, ok := check.pkgPathMap[pkg.name]
    	if !ok {
    		forName = make(map[string]bool)
    		check.pkgPathMap[pkg.name] = forName
    	}
    	forName[pkg.path] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/go/types/check.go

    	// disambiguating package names in error messages.
    	//
    	// pkgPathMap is allocated lazily, so that we don't pay the price of building
    	// it on the happy path. seenPkgMap tracks the packages that we've already
    	// walked.
    	pkgPathMap map[string]map[string]bool
    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    	// disambiguating package names in error messages.
    	//
    	// pkgPathMap is allocated lazily, so that we don't pay the price of building
    	// it on the happy path. seenPkgMap tracks the packages that we've already
    	// walked.
    	pkgPathMap map[string]map[string]bool
    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top