Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for validType0 (0.2 sec)

  1. src/go/types/generate_test.go

    	"typeterm.go":      nil,
    	"typestring.go":    nil,
    	"under.go":         nil,
    	"unify.go":         fixSprintf,
    	"universe.go":      fixGlobalTypVarDecl,
    	"util_test.go":     fixTokenPos,
    	"validtype.go":     func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    }
    
    // TODO(gri) We should be able to make these rewriters more configurable/composable.
    //           For now this is a good starting point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    	obj   *TypeName // corresponding declared object for declared types; see above for instantiated types
    
    	// fromRHS holds the type (on RHS of declaration) this *Named type is derived
    	// from (for cycle reporting). Only used by validType, and therefore does not
    	// require synchronization.
    	fromRHS Type
    
    	// information for instantiated types; nil otherwise
    	inst *instance
    
    	mu         sync.Mutex     // guards all fields below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/go/types/named.go

    	obj   *TypeName // corresponding declared object for declared types; see above for instantiated types
    
    	// fromRHS holds the type (on RHS of declaration) this *Named type is derived
    	// from (for cycle reporting). Only used by validType, and therefore does not
    	// require synchronization.
    	fromRHS Type
    
    	// information for instantiated types; nil otherwise
    	inst *instance
    
    	mu         sync.Mutex     // guards all fields below
    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