()
| 55 | } |
| 56 | |
| 57 | func getSource() Source { |
| 58 | filename, line := GetCaller() |
| 59 | return Source{ |
| 60 | File: filename, |
| 61 | Line: line, |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | func (s Source) String() string { |
| 66 | return fmt.Sprintf("%s:%d", s.File, s.Line) |
no test coverage detected
searching dependent graphs…