(useCaseSensitiveFileNames bool)
| 50 | } |
| 51 | |
| 52 | func (uri DocumentUri) Path(useCaseSensitiveFileNames bool) tspath.Path { |
| 53 | fileName := uri.FileName() |
| 54 | return tspath.ToPath(fileName, "", useCaseSensitiveFileNames) |
| 55 | } |
| 56 | |
| 57 | func fixWindowsURIPath(path string) string { |
| 58 | if rest, ok := strings.CutPrefix(path, "/"); ok { |