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
We could probably improve the reachability logic a bit.
If a class is referenced somewhere, we should visit the static initializer method
If a class is instantiated somewhere, we should visit all non-static methods (because we can't really know when they're going to be invoked because of external interfaces and inheritance)
Static methods should only be visited when they're actually called.
The text was updated successfully, but these errors were encountered:
We could probably improve the reachability logic a bit.
The text was updated successfully, but these errors were encountered: