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
Don't return null target methods in GetInterfaceMap for abstract classes, or classes using DIMs (mono#21112)
* Don't return null target methods in GetInterfaceMap for abstract classes, or classes using DIMs
If the interface method is reabstracted, and either the found implementation
method is abstract, or the found implementation method is from another
DIM (meaning neither klass nor any of its ancestor classes implemented the
method), then say the target method is null. Otherwise return the found
implementation method, even if it is abstract.
Corresponding dotnet/runtime PR is dotnet/runtime#53972Fixesdotnet/runtime#53933
* Add method flags accessors; cleanup interface map code
Ported from dotnet/runtime#54271
0 commit comments