(p *profile.Profile)
| 171 | } |
| 172 | |
| 173 | func sampleTypes(p *profile.Profile) []string { |
| 174 | types := make([]string, len(p.SampleType)) |
| 175 | for i, t := range p.SampleType { |
| 176 | types[i] = t.Type |
| 177 | } |
| 178 | return types |
| 179 | } |
| 180 | |
| 181 | func printCurrentOptions(p *profile.Profile, ui plugin.UI) { |
| 182 | var args []string |
no outgoing calls
no test coverage detected
searching dependent graphs…