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
Not 100% sure what the best semantics here. Definitely seems suboptimal to require folks to add new deps...
I guess what we want is all the suggestions to come from the modules that have implicit imports, so we are just switching implicit to explicit. I think we should have a name => [exporting_modules] dict (which find_implicit_imports could return), and then instead of resolving names via which directly, we could check which of the modules that provides a given name resolves to the same binding as the one in the actual module does, and then print that exporting module rather than the "source module".
because:
so if you use
StaticVector
, we suggestusing StaticArraysCore: StaticVector
rather thanusing StaticArrays: StaticVector
.In some cases folks would prefer to get the outermost suggestion, xref JuliaStats/MixedModels.jl#748 (comment).
The text was updated successfully, but these errors were encountered: