func path/filepath.ToSlash

8 uses

	path/filepath (current package)
		path.go#L166: func ToSlash(path string) string {

	go/build
		build.go#L186: 	return filepath.ToSlash(dir[len(root):]), true
		build.go#L1720: 	srcdir = filepath.ToSlash(srcdir)

	golang.org/x/tools/go/packages
		golist.go#L369: 			filepath.ToSlash(response.Packages[0].PkgPath) == filepath.ToSlash(query) {
		golist.go#L796: 			return path.Join(rpath, filepath.ToSlash(r)), true, nil
		golist.go#L798: 		return filepath.ToSlash(r), true, nil
		golist.go#L1121: 		noSeparator := strings.Join(strings.Split(filepath.ToSlash(k), "/"), "")