Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of not found exported types (#50845)
This was missed in #50437. Wonder if we should have just introduced a new overload of GetType that returns `object`. This "return resolution failure that we then need to not forget to check" looks like a potential bug farm. ```csharp public MetadataType GetType(string nameSpace, string name, bool throwIfNotFound = true) { /* the obvious implementation that calls the virtual method */ } public abstract object GetType(string nameSpace, string name, NotFoundBehavior notFoundBehavior) ```
- Loading branch information