(x interface{})
| 100 | } |
| 101 | |
| 102 | func fmtClean(x interface{}) string { |
| 103 | spv := fmt.Sprintf("%+v", x) |
| 104 | spv = fileref.ReplaceAllString(spv, "<path>:<lineno>") |
| 105 | spv = strings.ReplaceAll(spv, "\t", "<tab>") |
| 106 | return spv |
| 107 | } |
| 108 | |
| 109 | var fileref = regexp.MustCompile(`([a-zA-Z0-9\._/@-]*\.(?:go|s):\d+)`) |
no outgoing calls
no test coverage detected
searching dependent graphs…