#if os(anyAppleOS)
Replace error prone and verbose compilation conditionals like ``` #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(visionOS) ``` with ``` #if os(anyAppleOS) ```
SymbolLocator
Added the PDB reading code and also a `SymbolLocator` type that allows us to locate symbols for a given image. rdar://168454023