Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 257 for Implicits (0.26 sec)

  1. src/go/types/api.go

    // or nil if not found.
    //
    // For dot-imports, the package name is ".".
    //
    // Precondition: the Defs and Implicts maps are populated.
    func (info *Info) PkgNameOf(imp *ast.ImportSpec) *PkgName {
    	var obj Object
    	if imp.Name != nil {
    		obj = info.Defs[imp.Name]
    	} else {
    		obj = info.Implicits[imp]
    	}
    	pkgname, _ := obj.(*PkgName)
    	return pkgname
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    // or nil if not found.
    //
    // For dot-imports, the package name is ".".
    //
    // Precondition: the Defs and Implicts maps are populated.
    func (info *Info) PkgNameOf(imp *syntax.ImportDecl) *PkgName {
    	var obj Object
    	if imp.LocalPkgName != nil {
    		obj = info.Defs[imp.LocalPkgName]
    	} else {
    		obj = info.Implicits[imp]
    	}
    	pkgname, _ := obj.(*PkgName)
    	return pkgname
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    			}
    		case *types.Interface:
    			for i := 0; i < T.NumMethods(); i++ {
    				addObj(T.Method(i))
    			}
    			for i := 0; i < T.NumEmbeddeds(); i++ {
    				addType(T.EmbeddedType(i)) // walk Embedded for implicits
    			}
    		case *types.Union:
    			for i := 0; i < T.Len(); i++ {
    				addType(T.Term(i).Type())
    			}
    		case *types.TypeParam:
    			if !typs[T] {
    				typs[T] = true
    				addObj(T.Obj())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/ureader.go

    	var dict readerDict
    
    	{
    		r := pr.tempReader(pkgbits.RelocObjDict, idx, pkgbits.SyncObject1)
    		if implicits := r.Len(); implicits != 0 {
    			errorf("unexpected object with %v implicit type parameter(s)", implicits)
    		}
    
    		dict.bounds = make([]typeInfo, r.Len())
    		for i := range dict.bounds {
    			dict.bounds[i] = r.typInfo()
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/go/ast/scope.go

    // flag to disable syntactic object resolution (which also saves CPU
    // and memory), and instead use the type checker [go/types] if object
    // resolution is desired. See the Defs, Uses, and Implicits fields of
    // the [types.Info] struct for details.
    type Object struct {
    	Kind ObjKind
    	Name string // declared name
    	Decl any    // corresponding Field, XxxSpec, FuncDecl, LabeledStmt, AssignStmt, Scope; or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range tests {
    		info := Info{
    			Implicits: make(map[syntax.Node]Object),
    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    	}
    
    	for _, test := range tests {
    		info := Info{
    			Implicits: make(map[ast.Node]Object),
    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    		GoVersion: cfg.GoVersion,
    	}
    	info := &types.Info{
    		Types:      make(map[ast.Expr]types.TypeAndValue),
    		Defs:       make(map[*ast.Ident]types.Object),
    		Uses:       make(map[*ast.Ident]types.Object),
    		Implicits:  make(map[ast.Node]types.Object),
    		Instances:  make(map[*ast.Ident]types.Instance),
    		Scopes:     make(map[ast.Node]*types.Scope),
    		Selections: make(map[*ast.SelectorExpr]*types.Selection),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/go/types/check_test.go

    	info := Info{
    		Types:        make(map[ast.Expr]TypeAndValue),
    		Instances:    make(map[*ast.Ident]Instance),
    		Defs:         make(map[*ast.Ident]Object),
    		Uses:         make(map[*ast.Ident]Object),
    		Implicits:    make(map[ast.Node]Object),
    		Selections:   make(map[*ast.SelectorExpr]*Selection),
    		Scopes:       make(map[ast.Node]*Scope),
    		FileVersions: make(map[*ast.File]string),
    	}
    
    	// typecheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check_test.go

    	info := Info{
    		Types:        make(map[syntax.Expr]TypeAndValue),
    		Instances:    make(map[*syntax.Name]Instance),
    		Defs:         make(map[*syntax.Name]Object),
    		Uses:         make(map[*syntax.Name]Object),
    		Implicits:    make(map[syntax.Node]Object),
    		Selections:   make(map[*syntax.SelectorExpr]*Selection),
    		Scopes:       make(map[syntax.Node]*Scope),
    		FileVersions: make(map[*syntax.PosBase]string),
    	}
    
    	// typecheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top