()
| 158 | } |
| 159 | |
| 160 | func newReport() report.Report { |
| 161 | p := "%4.4f" |
| 162 | if precise { |
| 163 | p = "%g" |
| 164 | } |
| 165 | if sample { |
| 166 | return report.NewReportSample(p) |
| 167 | } |
| 168 | return report.NewReport(p) |
| 169 | } |
| 170 | |
| 171 | func newWeightedReport() report.Report { |
| 172 | p := "%4.4f" |
no outgoing calls
no test coverage detected
searching dependent graphs…