Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for foundParams (0.08 sec)

  1. src/cmd/link/internal/ld/dwarf_test.go

    					st = 2
    				} else {
    					st = 1
    				}
    			}
    			if name, ok := child.Val(dwarf.AttrName).(string); ok {
    				foundParams[name] = fmt.Sprintf("%d:%d", idx, st)
    				idx++
    			}
    		}
    	}
    
    	found := make([]string, 0, len(foundParams))
    	for k, v := range foundParams {
    		found = append(found, fmt.Sprintf("%s:%s", k, v))
    	}
    	sort.Strings(found)
    
    	return fmt.Sprintf("%+v", found)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top