()
| 217 | } |
| 218 | |
| 219 | func (s *Snapshot) guessPaths() bool { |
| 220 | b := s.findRoots() == 0 |
| 221 | for _, r := range s.Goroutines { |
| 222 | // Note that this is important to call it even if |
| 223 | // s.RemoteGOROOT == s.LocalGOROOT. |
| 224 | b = r.updateLocations(s.RemoteGOROOT, s.LocalGOROOT, s.LocalGomods, s.RemoteGOPATHs) && b |
| 225 | } |
| 226 | return b |
| 227 | } |
| 228 | |
| 229 | // augment processes source files to improve calls to be more descriptive. |
| 230 | // |