Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for IsExported (0.16 sec)

  1. src/go/ast/filter.go

    // ----------------------------------------------------------------------------
    // Export filtering
    
    // exportFilter is a special filter function to extract exported nodes.
    func exportFilter(name string) bool {
    	return IsExported(name)
    }
    
    // FileExports trims the AST for a Go source file in place such that
    // only exported nodes remain: all top-level identifiers which are not exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/encoding/json/encode.go

    					if t.Kind() == reflect.Pointer {
    						t = t.Elem()
    					}
    					if !sf.IsExported() && t.Kind() != reflect.Struct {
    						// Ignore embedded fields of unexported non-struct types.
    						continue
    					}
    					// Do not ignore embedded fields of unexported struct types
    					// since they may have exported fields.
    				} else if !sf.IsExported() {
    					// Ignore unexported non-embedded fields.
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    // visible reports whether sym is exported or locally defined.
    func visible(sym *types.Sym) bool {
    	return sym != nil && (types.IsExported(sym.Name) || sym.Pkg == types.LocalPkg)
    }
    
    // nonexported reports whether sym is an unexported field.
    func nonexported(sym *types.Sym) bool {
    	return sym != nil && !types.IsExported(sym.Name)
    }
    
    func checklvalue(n ir.Node, verb string) {
    	if !ir.IsAddressable(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/encoding/asn1/marshal.go

    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return int64Encoder(v.Int()), nil
    	case reflect.Struct:
    		t := v.Type()
    
    		for i := 0; i < t.NumField(); i++ {
    			if !t.Field(i).IsExported() {
    				return nil, StructuralError{"struct contains unexported fields"}
    			}
    		}
    
    		startingField := 0
    
    		n := t.NumField()
    		if n == 0 {
    			return bytesEncoder(nil), nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/runtime/iface.go

    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    				pkgPath := pkgPath(tname)
    				if pkgPath == "" {
    					pkgPath = rtyp.nameOff(x.PkgPath).Name()
    				}
    				if tname.IsExported() || pkgPath == ipkg {
    					ifn := rtyp.textOff(t.Ifn)
    					if k == 0 {
    						fun0 = ifn // we'll set m.Fun[0] at the end
    					} else if firstTime {
    						methods[k] = ifn
    					}
    					continue imethods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/expr.go

    				// function is compiled as if in the source
    				// package of the generic function.
    				if !(ir.CurFunc != nil && strings.Contains(ir.CurFunc.Nname.Sym().Name, "[")) {
    					if s != nil && !types.IsExported(s.Name) && s.Pkg != types.LocalPkg {
    						base.Errorf("implicit assignment of unexported field '%s' in %v literal", s.Name, t)
    					}
    				}
    				// No pushtype allowed here. Must name fields for that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/net/http/response_test.go

    	if hv.Type() != wv.Type() {
    		t.Errorf("%s: type mismatch %v want %v", prefix, hv.Type(), wv.Type())
    	}
    	for i := 0; i < hv.NumField(); i++ {
    		name := hv.Type().Field(i).Name
    		if !token.IsExported(name) {
    			continue
    		}
    		hf := hv.Field(i).Interface()
    		wf := wv.Field(i).Interface()
    		if !reflect.DeepEqual(hf, wf) {
    			t.Errorf("%s: %s = %v want %v", prefix, name, hf, wf)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    		// Look up the method index in orig, and only instantiate method at the
    		// matching index (if any).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/resolver.go

    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if isExported(name) {
    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/go/types/named.go

    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    		// Look up the method index in orig, and only instantiate method at the
    		// matching index (if any).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top