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
While working on #30692, I noticed that we currently do not invoke shadowed package-private init/destroy methods declared in a different package.
Instead, we only invoke the last such init/destroy method found in the type hierarchy.
We should therefore track "non-visible" package-private init/destroy methods by their fully-qualified method name, analogous to how we track private init/destroy methods.
Overview
While working on #30692, I noticed that we currently do not invoke shadowed package-private init/destroy methods declared in a different package.
Instead, we only invoke the last such init/destroy method found in the type hierarchy.
We should therefore track "non-visible" package-private init/destroy methods by their fully-qualified method name, analogous to how we track
private
init/destroy methods.Related Issues
private
init/destroy methods are not supported in AOT mode #30692The text was updated successfully, but these errors were encountered: