Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CompiledImports (0.7 sec)

  1. src/cmd/go/internal/list/list.go

    				srcPath = p.Internal.RawImports[i]
    			} else {
    				// This path is not within the raw imports, so it must be an import
    				// found only within CompiledGoFiles. Those paths are found in
    				// CompiledImports.
    				srcPath = p.Internal.CompiledImports[i-nRaw]
    			}
    
    			if path != srcPath {
    				if p.ImportMap == nil {
    					p.ImportMap = make(map[string]string)
    				}
    				p.ImportMap[srcPath] = path
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top