Expand description
Go symbol canonicalization.
Go emits frames in forms like:
main.handleRequestmain.(*Server).handleRequest— pointer receivermain.Server.handleRequest— value receivermain.handleRequest.func1— closure inside funcgithub.com/foo/bar.(*Client).Do— full import pathruntime.goexit— runtime built-instype:.eq.[...]— auto-generated
Canonical form preserves pointer-vs-value receiver distinction
(they’re different methods in Go). Closures (.func1, .func2) are
flagged synthetic — their numeric suffix isn’t stable across edits.