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.
assumes that analysis of other modules is complete and GetEntriesThatImportModule will return the correct set. However, if analysis of dependencies hasn't been completed yet, the set may be incomplete. So in find reference tests code that loads dependency first like
When analyzing
mod1
that importsmod2
code inassumes that analysis of other modules is complete and
GetEntriesThatImportModule
will return the correct set. However, if analysis of dependencies hasn't been completed yet, the set may be incomplete. So in find reference tests code that loads dependency first likewill succeed because mod2 will be placed in the queue first, but code that loads dependency last
will lead to incomplete analysis with references missing
The text was updated successfully, but these errors were encountered: