updateLocations calls updateLocations on each call frame and returns true if they were all resolved.
(goroot, localgoroot string, localgomods, gopaths map[string]string)
| 628 | // updateLocations calls updateLocations on each call frame and returns true if |
| 629 | // they were all resolved. |
| 630 | func (s *Stack) updateLocations(goroot, localgoroot string, localgomods, gopaths map[string]string) bool { |
| 631 | // If there were none, it was "resolved". |
| 632 | r := true |
| 633 | for i := range s.Calls { |
| 634 | r = s.Calls[i].updateLocations(goroot, localgoroot, localgomods, gopaths) && r |
| 635 | } |
| 636 | return r |
| 637 | } |
| 638 | |
| 639 | // Signature represents the signature of one or multiple goroutines. |
| 640 | // |
nothing calls this directly
no test coverage detected