-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Open
Labels
FeatureRequestIssues asking for a new feature that does not need a proposal.Issues asking for a new feature that does not need a proposal.ToolsThis label describes issues relating to any tools in the x/tools repository.This label describes issues relating to any tools in the x/tools repository.goplsIssues related to the Go language server, gopls.Issues related to the Go language server, gopls.
Milestone
Description
Is your feature request related to a problem? Please describe.
I wanted to understand why this allocates:
func normalize(v any) (any, typeCode, bool) {
switch v := v.(type) {
case string:
return v, typeCodeString, true
// ...
}
}Describe the solution you'd like
I'd like to be able to select a line and view the assembly for that line (or for a range of lines).
Describe alternatives you've considered
I can (and did) use "Browse amd64 assembly for normalize" but that doesn't scale well to larger functions.
Additional context
#67478
Metadata
Metadata
Assignees
Labels
FeatureRequestIssues asking for a new feature that does not need a proposal.Issues asking for a new feature that does not need a proposal.ToolsThis label describes issues relating to any tools in the x/tools repository.This label describes issues relating to any tools in the x/tools repository.goplsIssues related to the Go language server, gopls.Issues related to the Go language server, gopls.