(dst io.Writer, rpt *report.Report, obj plugin.ObjTool)
| 164 | } |
| 165 | |
| 166 | func printWebList(dst io.Writer, rpt *report.Report, obj plugin.ObjTool) error { |
| 167 | listing, err := report.MakeWebList(rpt, obj, -1) |
| 168 | if err != nil { |
| 169 | return err |
| 170 | } |
| 171 | legend := report.ProfileLabels(rpt) |
| 172 | return renderHTML(dst, "sourcelisting", rpt, nil, legend, webArgs{ |
| 173 | Standalone: true, |
| 174 | Listing: listing, |
| 175 | }) |
| 176 | } |
| 177 | |
| 178 | func applyCommandOverrides(cmd string, outputFormat int, cfg config) config { |
| 179 | // Some report types override the trim flag to false below. This is to make |
no test coverage detected
searching dependent graphs…