Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for typeParamVertex (0.12 sec)

  1. src/go/types/mono.go

    					}
    
    					w.addEdge(idx, w.typeParamVertex(tpar), 1, obj.Pos(), tpar)
    				}
    			}
    		}
    	}
    
    	if w.nameIdx == nil {
    		w.nameIdx = make(map[*TypeName]int)
    	}
    	w.nameIdx[obj] = idx
    	return idx
    }
    
    // typeParamVertex returns the index of the vertex representing tpar.
    func (w *monoGraph) typeParamVertex(tpar *TypeParam) int {
    	if x, ok := w.canon[tpar]; ok {
    		tpar = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/mono.go

    					}
    
    					w.addEdge(idx, w.typeParamVertex(tpar), 1, obj.Pos(), tpar)
    				}
    			}
    		}
    	}
    
    	if w.nameIdx == nil {
    		w.nameIdx = make(map[*TypeName]int)
    	}
    	w.nameIdx[obj] = idx
    	return idx
    }
    
    // typeParamVertex returns the index of the vertex representing tpar.
    func (w *monoGraph) typeParamVertex(tpar *TypeParam) int {
    	if x, ok := w.canon[tpar]; ok {
    		tpar = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top