updateLocations calls updateLocations on both CreatedBy and Stack and returns true if they were both resolved.
(goroot, localgoroot string, localgomods, gopaths map[string]string)
| 772 | // updateLocations calls updateLocations on both CreatedBy and Stack and |
| 773 | // returns true if they were both resolved. |
| 774 | func (s *Signature) updateLocations(goroot, localgoroot string, localgomods, gopaths map[string]string) bool { |
| 775 | r := s.CreatedBy.updateLocations(goroot, localgoroot, localgomods, gopaths) |
| 776 | r = s.Stack.updateLocations(goroot, localgoroot, localgomods, gopaths) && r |
| 777 | return r |
| 778 | } |
| 779 | |
| 780 | // Goroutine represents the state of one goroutine, including the stack trace. |
| 781 | type Goroutine struct { |
nothing calls this directly
no test coverage detected