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.
The analyzer sometimes does not resolve relative paths correctly. See the screen shot below.
The problem appears to be in
PathResolverSnapshot.TryFindNamewhich contains the following lines of code: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.