Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for forwardType (0.16 sec)

  1. src/cmd/compile/internal/types/type.go

    func (t *Type) SetUnderlying(underlying *Type) {
    	if underlying.kind == TFORW {
    		// This type isn't computed yet; when it is, update n.
    		underlying.forwardType().Copyto = append(underlying.forwardType().Copyto, t)
    		return
    	}
    
    	ft := t.forwardType()
    
    	// TODO(mdempsky): Fix Type rekinding.
    	t.kind = underlying.kind
    	t.extra = underlying.extra
    	t.width = underlying.width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top