This repository was archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 133
Analysis order based on import graph #135
Labels
Comments
I am experiencing an issue where in some cases, from module import BaseClass
class DerivedClass(BaseClass):
... After analysis is finished, I can query variable The above import for the first time is analyzed before I wonder, if this is the root cause for this behavior. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
GetEntriesThatImportModule
is required to queue dependent modules for reanalysis when the dependency has changed. If dependent module analysis isn't finished,GetEntriesThatImportModule
skips it.The text was updated successfully, but these errors were encountered: