You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
The analyzer sometimes does not resolve relative paths correctly. See the screen shot below.
The problem appears to be in PathResolverSnapshot.TryFindName which contains the following lines of code:
if (lastEdge.End.IsModule) {
return false;
}
I don't understand why this logic is needed. When I comment out these three lines, the relative paths resolve correctly and other imports also appear to resolve as expected.