Skip to content

Commit 8912752

Browse files
committed
gopls/internal/protocol: optimized DocumentURI.Path for MODCACHE
This CL removes an overly conservative check in DocumentURI.Path that caused files in the module cache to go through the slow path of URL parsing, unnecessarily. Thanks to Josh Bleecher Snyder for pointing it out. Change-Id: Id64ccb3b0a2b57258f9c4ebca11469fc77e37b3e Reviewed-on: https://go-review.googlesource.com/c/tools/+/642082 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Alan Donovan <[email protected]> Reviewed-by: Robert Findley <[email protected]>
1 parent cecec2c commit 8912752

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gopls/internal/protocol/uri.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,13 @@ func filename(uri DocumentURI) (string, error) {
121121
if b < ' ' || b == 0x7f || // control character
122122
b == '%' || b == '+' || // URI escape
123123
b == ':' || // Windows drive letter
124-
b == '@' || b == '&' || b == '?' { // authority or query
124+
b == '&' || b == '?' { // authority or query
125125
goto slow
126126
}
127+
// We do not reject '@' as it cannot be part of the
128+
// authority (e.g. user:[email protected]) in a
129+
// "file:///" URL, and '@' commonly appears in file
130+
// paths such as GOMODCACHE/module@version/...
127131
}
128132
return rest, nil
129133
}

0 commit comments

Comments
 (0)