(src Line)
| 415 | } |
| 416 | |
| 417 | func (pm *profileMerger) mapLine(src Line) Line { |
| 418 | ln := Line{ |
| 419 | Function: pm.mapFunction(src.Function), |
| 420 | Line: src.Line, |
| 421 | Column: src.Column, |
| 422 | } |
| 423 | return ln |
| 424 | } |
| 425 | |
| 426 | func (pm *profileMerger) mapFunction(src *Function) *Function { |
| 427 | if src == nil { |
no test coverage detected