mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
type(of:) now returns the dynamic type of the contents of an extended existential (just like it does for a regular existential) Mirror can now reflect fields of a value stored inside an extended existential (just like it can with a regular existential). This requires type(of:) support, since Mirror internals use that to determine how to reflect a value. Resolves rdar://102906195