(fn api.FunctionDefinition, pc experimental.ProgramCounter)
| 306 | } |
| 307 | |
| 308 | func makeLocationKey(fn api.FunctionDefinition, pc experimental.ProgramCounter) locationKey { |
| 309 | return locationKey{ |
| 310 | module: fn.ModuleName(), |
| 311 | index: fn.Index(), |
| 312 | name: fn.Name(), |
| 313 | pc: uint64(pc), |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | type stackCounterMap map[uint64]*stackCounter |
| 318 |
no test coverage detected