Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expandMethod (0.42 sec)

  1. src/cmd/compile/internal/types2/named.go

    		t.methods[i] = t.expandMethod(i)
    		t.inst.expandedMethods++
    
    		// Check if we've created all methods at this point. If we have, mark the
    		// type as fully expanded.
    		if t.inst.expandedMethods == len(orig.methods) {
    			t.setState(complete)
    			t.inst.ctxt = nil // no need for a context anymore
    		}
    	}
    
    	return t.methods[i]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/go/types/named.go

    		t.methods[i] = t.expandMethod(i)
    		t.inst.expandedMethods++
    
    		// Check if we've created all methods at this point. If we have, mark the
    		// type as fully expanded.
    		if t.inst.expandedMethods == len(orig.methods) {
    			t.setState(complete)
    			t.inst.ctxt = nil // no need for a context anymore
    		}
    	}
    
    	return t.methods[i]
    }
    
    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