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 Dec 19, 2018. It is now read-only.
This results in 0 IntelliSense or coloring for using statements that match ones that exist on the main document.
The reason this occurs is we add using statement IR nodes as we encounter them and then make sure not to duplicate any. Problem is, we add ViewImports/default usings first which don't get source locations; when we encounter a using statement on the main document the using has already been added so we no-op in an effort to not duplicate an already added using.