Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for typAt (0.03 sec)

  1. src/go/internal/gcimporter/iimport.go

    	if pkg, ok := p.pkgCache[off]; ok {
    		return pkg
    	}
    	path := p.stringAt(off)
    	errorf("missing package %q in %q", path, p.ipath)
    	return nil
    }
    
    func (p *iimporter) typAt(off uint64, base *types.Named) types.Type {
    	if t, ok := p.typCache[off]; ok && canReuse(base, t) {
    		return t
    	}
    
    	if off < predeclReserved {
    		errorf("predeclared type missing from cache: %v", off)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top