MCPcopy Index your code
hub / github.com/maruel/panicparse / updateLocations

Method updateLocations

stack/stack.go:630–637  ·  view source on GitHub ↗

updateLocations calls updateLocations on each call frame and returns true if they were all resolved.

(goroot, localgoroot string, localgomods, gopaths map[string]string)

Source from the content-addressed store, hash-verified

628// updateLocations calls updateLocations on each call frame and returns true if
629// they were all resolved.
630func (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//

Callers

nothing calls this directly

Calls 1

updateLocationsMethod · 0.45

Tested by

no test coverage detected