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
In a path a::b::c::d we handle the a and the d, but not b or c. We used to have a hack in DXR to do some approximation of name resolution, but that is dumb. We should change the compiler to give spans and name resolution info for each path segment, especially as that info would be useful elsewhere in the compiler. Unfortunately, I think the required changes are quite complex.
The text was updated successfully, but these errors were encountered:
In a path
a::b::c::d
we handle thea
and thed
, but notb
orc
. We used to have a hack in DXR to do some approximation of name resolution, but that is dumb. We should change the compiler to give spans and name resolution info for each path segment, especially as that info would be useful elsewhere in the compiler. Unfortunately, I think the required changes are quite complex.The text was updated successfully, but these errors were encountered: