(s *stack.Signature)
| 67 | } |
| 68 | |
| 69 | func (pf pathFormat) createdByString(s *stack.Signature) string { |
| 70 | if len(s.CreatedBy.Calls) == 0 { |
| 71 | return "" |
| 72 | } |
| 73 | return s.CreatedBy.Calls[0].Func.DirName + "." + s.CreatedBy.Calls[0].Func.Name + " @ " + pf.formatCall(&s.CreatedBy.Calls[0]) |
| 74 | } |
| 75 | |
| 76 | // calcBucketsLengths returns the maximum length of the source lines and |
| 77 | // package names. |
no test coverage detected