├── .gitignore ├── AccessibilityAnnouncer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── AccessibilityAnnouncer.xcscheme │ └── AnnouncerDemoApp.xcscheme ├── AccessibilityAnnouncer ├── AccessibilityAnnouncer.h ├── AccessibilityAnnouncer.swift └── Info.plist ├── AnnouncerDemoApp ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── Cartfile ├── Cartfile.resolved ├── Carthage └── Build │ ├── .ReactiveSwift.version │ ├── .Result.version │ └── iOS │ ├── 1D2367DE-0B58-3DDF-A47C-CBA3AF6427FD.bcsymbolmap │ ├── 393C1D40-7C2B-3E2C-95B4-A063A600E0FB.bcsymbolmap │ ├── 40A06643-98F8-373A-9853-3A1B36700518.bcsymbolmap │ ├── 44B103F9-E3AB-3DC3-9683-C7667ACF1C03.bcsymbolmap │ ├── 589BFBFE-FA50-3193-B503-D0BA66DD8347.bcsymbolmap │ ├── 6ED10DF2-5B1C-3AE6-AF51-22F2CA6266B8.bcsymbolmap │ ├── 6F4CA3DD-D901-315A-8882-4397EA1B64AE.bcsymbolmap │ ├── 7443D5DE-13FA-3965-870B-45BF0EF4E9E1.bcsymbolmap │ ├── 75E5DA8C-F6E8-3FA7-9A24-9183FAE66F7A.bcsymbolmap │ ├── 7661D9C9-C52F-352E-A970-C30E2536A315.bcsymbolmap │ ├── 9875A082-D3FF-385C-8599-088B6401FB67.bcsymbolmap │ ├── A0DA3821-A517-3BD9-A301-9C4EAABFB22C.bcsymbolmap │ ├── D4D1DDC2-302B-3132-B694-A068A176880B.bcsymbolmap │ ├── F81924C0-6455-3B03-9433-013A35D2AACE.bcsymbolmap │ ├── ReactiveSwift.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── ReactiveSwift │ ├── ReactiveSwift.framework │ ├── Headers │ │ ├── ReactiveSwift-Swift.h │ │ └── ReactiveSwift.h │ ├── Info.plist │ ├── Modules │ │ ├── ReactiveSwift.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ └── ReactiveSwift │ ├── Result.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── Result │ └── Result.framework │ ├── Headers │ ├── Result-Swift.h │ └── Result.h │ ├── Info.plist │ ├── Modules │ ├── Result.swiftmodule │ │ ├── arm.swiftdoc │ │ ├── arm.swiftmodule │ │ ├── arm64.swiftdoc │ │ ├── arm64.swiftmodule │ │ ├── i386.swiftdoc │ │ ├── i386.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap │ └── Result ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pbxuser 2 | !default.pbxuser 3 | *.mode1v3 4 | !default.mode1v3 5 | *.mode2v3 6 | !default.mode2v3 7 | *.perspectivev3 8 | !default.perspectivev3 9 | xcuserdata 10 | *.xccheckout 11 | *.moved-aside 12 | DerivedData 13 | *.hmap 14 | *.ipa 15 | *.xcuserstate 16 | 17 | Carthage/Checkouts/ 18 | Carthage/Builds/Mac -------------------------------------------------------------------------------- /AccessibilityAnnouncer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 789798F91F99F27E00B93A41 /* ReactiveSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 789798F81F99F27E00B93A41 /* ReactiveSwift.framework */; }; 11 | 789798FB1F99F29400B93A41 /* ReactiveSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 789798FA1F99F29400B93A41 /* ReactiveSwift.framework */; }; 12 | 789798FC1F99F29400B93A41 /* ReactiveSwift.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 789798FA1F99F29400B93A41 /* ReactiveSwift.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 13 | 870BEB661BA3BF84004643C9 /* AccessibilityAnnouncer.h in Headers */ = {isa = PBXBuildFile; fileRef = 870BEB651BA3BF84004643C9 /* AccessibilityAnnouncer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 870BEB741BA3C091004643C9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 870BEB731BA3C091004643C9 /* AppDelegate.swift */; }; 15 | 870BEB761BA3C091004643C9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 870BEB751BA3C091004643C9 /* ViewController.swift */; }; 16 | 870BEB791BA3C091004643C9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 870BEB771BA3C091004643C9 /* Main.storyboard */; }; 17 | 870BEB7B1BA3C091004643C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 870BEB7A1BA3C091004643C9 /* Assets.xcassets */; }; 18 | 870BEB7E1BA3C091004643C9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 870BEB7C1BA3C091004643C9 /* LaunchScreen.storyboard */; }; 19 | 870BEB831BA3C0B3004643C9 /* AccessibilityAnnouncer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 870BEB621BA3BF84004643C9 /* AccessibilityAnnouncer.framework */; }; 20 | 870BEB841BA3C0B3004643C9 /* AccessibilityAnnouncer.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 870BEB621BA3BF84004643C9 /* AccessibilityAnnouncer.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 21 | 870BEB891BA3C679004643C9 /* AccessibilityAnnouncer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 870BEB881BA3C679004643C9 /* AccessibilityAnnouncer.swift */; }; 22 | 870BEB8D1BA3C802004643C9 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 870BEB8B1BA3C802004643C9 /* Result.framework */; }; 23 | 870BEB911BA3CCAA004643C9 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 870BEB8B1BA3C802004643C9 /* Result.framework */; }; 24 | 870BEB921BA3CCAA004643C9 /* Result.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 870BEB8B1BA3C802004643C9 /* Result.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXContainerItemProxy section */ 28 | 870BEB851BA3C0B3004643C9 /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = 870BEB591BA3BF84004643C9 /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = 870BEB611BA3BF84004643C9; 33 | remoteInfo = AccessibilityAnnouncer; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXCopyFilesBuildPhase section */ 38 | 870BEB871BA3C0B3004643C9 /* Embed Frameworks */ = { 39 | isa = PBXCopyFilesBuildPhase; 40 | buildActionMask = 2147483647; 41 | dstPath = ""; 42 | dstSubfolderSpec = 10; 43 | files = ( 44 | 870BEB921BA3CCAA004643C9 /* Result.framework in Embed Frameworks */, 45 | 870BEB841BA3C0B3004643C9 /* AccessibilityAnnouncer.framework in Embed Frameworks */, 46 | 789798FC1F99F29400B93A41 /* ReactiveSwift.framework in Embed Frameworks */, 47 | ); 48 | name = "Embed Frameworks"; 49 | runOnlyForDeploymentPostprocessing = 0; 50 | }; 51 | /* End PBXCopyFilesBuildPhase section */ 52 | 53 | /* Begin PBXFileReference section */ 54 | 789798F81F99F27E00B93A41 /* ReactiveSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReactiveSwift.framework; path = Carthage/Build/iOS/ReactiveSwift.framework; sourceTree = ""; }; 55 | 789798FA1F99F29400B93A41 /* ReactiveSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReactiveSwift.framework; path = Carthage/Build/iOS/ReactiveSwift.framework; sourceTree = ""; }; 56 | 870BEB621BA3BF84004643C9 /* AccessibilityAnnouncer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AccessibilityAnnouncer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 870BEB651BA3BF84004643C9 /* AccessibilityAnnouncer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccessibilityAnnouncer.h; sourceTree = ""; }; 58 | 870BEB671BA3BF84004643C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | 870BEB711BA3C091004643C9 /* AnnouncerDemoApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AnnouncerDemoApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 870BEB731BA3C091004643C9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 61 | 870BEB751BA3C091004643C9 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 62 | 870BEB781BA3C091004643C9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 63 | 870BEB7A1BA3C091004643C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 64 | 870BEB7D1BA3C091004643C9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 65 | 870BEB7F1BA3C091004643C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 66 | 870BEB881BA3C679004643C9 /* AccessibilityAnnouncer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AccessibilityAnnouncer.swift; sourceTree = ""; }; 67 | 870BEB8B1BA3C802004643C9 /* Result.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Result.framework; path = Carthage/Build/iOS/Result.framework; sourceTree = ""; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 870BEB5E1BA3BF84004643C9 /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 870BEB8D1BA3C802004643C9 /* Result.framework in Frameworks */, 76 | 789798F91F99F27E00B93A41 /* ReactiveSwift.framework in Frameworks */, 77 | ); 78 | runOnlyForDeploymentPostprocessing = 0; 79 | }; 80 | 870BEB6E1BA3C091004643C9 /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | 870BEB911BA3CCAA004643C9 /* Result.framework in Frameworks */, 85 | 870BEB831BA3C0B3004643C9 /* AccessibilityAnnouncer.framework in Frameworks */, 86 | 789798FB1F99F29400B93A41 /* ReactiveSwift.framework in Frameworks */, 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | /* End PBXFrameworksBuildPhase section */ 91 | 92 | /* Begin PBXGroup section */ 93 | 870BEB581BA3BF84004643C9 = { 94 | isa = PBXGroup; 95 | children = ( 96 | 789798FA1F99F29400B93A41 /* ReactiveSwift.framework */, 97 | 870BEB641BA3BF84004643C9 /* AccessibilityAnnouncer */, 98 | 870BEB721BA3C091004643C9 /* AnnouncerDemoApp */, 99 | 870BEB631BA3BF84004643C9 /* Products */, 100 | 870BEB8E1BA3C819004643C9 /* Frameworks */, 101 | ); 102 | sourceTree = ""; 103 | }; 104 | 870BEB631BA3BF84004643C9 /* Products */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 870BEB621BA3BF84004643C9 /* AccessibilityAnnouncer.framework */, 108 | 870BEB711BA3C091004643C9 /* AnnouncerDemoApp.app */, 109 | ); 110 | name = Products; 111 | sourceTree = ""; 112 | }; 113 | 870BEB641BA3BF84004643C9 /* AccessibilityAnnouncer */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 870BEB651BA3BF84004643C9 /* AccessibilityAnnouncer.h */, 117 | 870BEB881BA3C679004643C9 /* AccessibilityAnnouncer.swift */, 118 | 870BEB671BA3BF84004643C9 /* Info.plist */, 119 | ); 120 | path = AccessibilityAnnouncer; 121 | sourceTree = ""; 122 | }; 123 | 870BEB721BA3C091004643C9 /* AnnouncerDemoApp */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | 870BEB731BA3C091004643C9 /* AppDelegate.swift */, 127 | 870BEB751BA3C091004643C9 /* ViewController.swift */, 128 | 870BEB771BA3C091004643C9 /* Main.storyboard */, 129 | 870BEB7A1BA3C091004643C9 /* Assets.xcassets */, 130 | 870BEB7C1BA3C091004643C9 /* LaunchScreen.storyboard */, 131 | 870BEB7F1BA3C091004643C9 /* Info.plist */, 132 | ); 133 | path = AnnouncerDemoApp; 134 | sourceTree = ""; 135 | }; 136 | 870BEB8E1BA3C819004643C9 /* Frameworks */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | 789798F81F99F27E00B93A41 /* ReactiveSwift.framework */, 140 | 870BEB8B1BA3C802004643C9 /* Result.framework */, 141 | ); 142 | name = Frameworks; 143 | sourceTree = ""; 144 | }; 145 | /* End PBXGroup section */ 146 | 147 | /* Begin PBXHeadersBuildPhase section */ 148 | 870BEB5F1BA3BF84004643C9 /* Headers */ = { 149 | isa = PBXHeadersBuildPhase; 150 | buildActionMask = 2147483647; 151 | files = ( 152 | 870BEB661BA3BF84004643C9 /* AccessibilityAnnouncer.h in Headers */, 153 | ); 154 | runOnlyForDeploymentPostprocessing = 0; 155 | }; 156 | /* End PBXHeadersBuildPhase section */ 157 | 158 | /* Begin PBXNativeTarget section */ 159 | 870BEB611BA3BF84004643C9 /* AccessibilityAnnouncer */ = { 160 | isa = PBXNativeTarget; 161 | buildConfigurationList = 870BEB6A1BA3BF84004643C9 /* Build configuration list for PBXNativeTarget "AccessibilityAnnouncer" */; 162 | buildPhases = ( 163 | 870BEB5D1BA3BF84004643C9 /* Sources */, 164 | 870BEB5E1BA3BF84004643C9 /* Frameworks */, 165 | 870BEB5F1BA3BF84004643C9 /* Headers */, 166 | 870BEB601BA3BF84004643C9 /* Resources */, 167 | ); 168 | buildRules = ( 169 | ); 170 | dependencies = ( 171 | ); 172 | name = AccessibilityAnnouncer; 173 | productName = AccessibilityAnnouncer; 174 | productReference = 870BEB621BA3BF84004643C9 /* AccessibilityAnnouncer.framework */; 175 | productType = "com.apple.product-type.framework"; 176 | }; 177 | 870BEB701BA3C091004643C9 /* AnnouncerDemoApp */ = { 178 | isa = PBXNativeTarget; 179 | buildConfigurationList = 870BEB801BA3C091004643C9 /* Build configuration list for PBXNativeTarget "AnnouncerDemoApp" */; 180 | buildPhases = ( 181 | 870BEB6D1BA3C091004643C9 /* Sources */, 182 | 870BEB6E1BA3C091004643C9 /* Frameworks */, 183 | 870BEB6F1BA3C091004643C9 /* Resources */, 184 | 870BEB871BA3C0B3004643C9 /* Embed Frameworks */, 185 | ); 186 | buildRules = ( 187 | ); 188 | dependencies = ( 189 | 870BEB861BA3C0B3004643C9 /* PBXTargetDependency */, 190 | ); 191 | name = AnnouncerDemoApp; 192 | productName = AnnouncerDemoApp; 193 | productReference = 870BEB711BA3C091004643C9 /* AnnouncerDemoApp.app */; 194 | productType = "com.apple.product-type.application"; 195 | }; 196 | /* End PBXNativeTarget section */ 197 | 198 | /* Begin PBXProject section */ 199 | 870BEB591BA3BF84004643C9 /* Project object */ = { 200 | isa = PBXProject; 201 | attributes = { 202 | LastSwiftUpdateCheck = 0700; 203 | LastUpgradeCheck = 0900; 204 | ORGANIZATIONNAME = "Sommer Panage"; 205 | TargetAttributes = { 206 | 870BEB611BA3BF84004643C9 = { 207 | CreatedOnToolsVersion = 7.0; 208 | LastSwiftMigration = 0900; 209 | }; 210 | 870BEB701BA3C091004643C9 = { 211 | CreatedOnToolsVersion = 7.0; 212 | DevelopmentTeam = GMC2CJG4U4; 213 | }; 214 | }; 215 | }; 216 | buildConfigurationList = 870BEB5C1BA3BF84004643C9 /* Build configuration list for PBXProject "AccessibilityAnnouncer" */; 217 | compatibilityVersion = "Xcode 3.2"; 218 | developmentRegion = English; 219 | hasScannedForEncodings = 0; 220 | knownRegions = ( 221 | en, 222 | Base, 223 | ); 224 | mainGroup = 870BEB581BA3BF84004643C9; 225 | productRefGroup = 870BEB631BA3BF84004643C9 /* Products */; 226 | projectDirPath = ""; 227 | projectRoot = ""; 228 | targets = ( 229 | 870BEB611BA3BF84004643C9 /* AccessibilityAnnouncer */, 230 | 870BEB701BA3C091004643C9 /* AnnouncerDemoApp */, 231 | ); 232 | }; 233 | /* End PBXProject section */ 234 | 235 | /* Begin PBXResourcesBuildPhase section */ 236 | 870BEB601BA3BF84004643C9 /* Resources */ = { 237 | isa = PBXResourcesBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | ); 241 | runOnlyForDeploymentPostprocessing = 0; 242 | }; 243 | 870BEB6F1BA3C091004643C9 /* Resources */ = { 244 | isa = PBXResourcesBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | 870BEB7E1BA3C091004643C9 /* LaunchScreen.storyboard in Resources */, 248 | 870BEB7B1BA3C091004643C9 /* Assets.xcassets in Resources */, 249 | 870BEB791BA3C091004643C9 /* Main.storyboard in Resources */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | /* End PBXResourcesBuildPhase section */ 254 | 255 | /* Begin PBXSourcesBuildPhase section */ 256 | 870BEB5D1BA3BF84004643C9 /* Sources */ = { 257 | isa = PBXSourcesBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | 870BEB891BA3C679004643C9 /* AccessibilityAnnouncer.swift in Sources */, 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | 870BEB6D1BA3C091004643C9 /* Sources */ = { 265 | isa = PBXSourcesBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | 870BEB761BA3C091004643C9 /* ViewController.swift in Sources */, 269 | 870BEB741BA3C091004643C9 /* AppDelegate.swift in Sources */, 270 | ); 271 | runOnlyForDeploymentPostprocessing = 0; 272 | }; 273 | /* End PBXSourcesBuildPhase section */ 274 | 275 | /* Begin PBXTargetDependency section */ 276 | 870BEB861BA3C0B3004643C9 /* PBXTargetDependency */ = { 277 | isa = PBXTargetDependency; 278 | target = 870BEB611BA3BF84004643C9 /* AccessibilityAnnouncer */; 279 | targetProxy = 870BEB851BA3C0B3004643C9 /* PBXContainerItemProxy */; 280 | }; 281 | /* End PBXTargetDependency section */ 282 | 283 | /* Begin PBXVariantGroup section */ 284 | 870BEB771BA3C091004643C9 /* Main.storyboard */ = { 285 | isa = PBXVariantGroup; 286 | children = ( 287 | 870BEB781BA3C091004643C9 /* Base */, 288 | ); 289 | name = Main.storyboard; 290 | sourceTree = ""; 291 | }; 292 | 870BEB7C1BA3C091004643C9 /* LaunchScreen.storyboard */ = { 293 | isa = PBXVariantGroup; 294 | children = ( 295 | 870BEB7D1BA3C091004643C9 /* Base */, 296 | ); 297 | name = LaunchScreen.storyboard; 298 | sourceTree = ""; 299 | }; 300 | /* End PBXVariantGroup section */ 301 | 302 | /* Begin XCBuildConfiguration section */ 303 | 870BEB681BA3BF84004643C9 /* Debug */ = { 304 | isa = XCBuildConfiguration; 305 | buildSettings = { 306 | ALWAYS_SEARCH_USER_PATHS = NO; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 316 | CLANG_WARN_EMPTY_BODY = YES; 317 | CLANG_WARN_ENUM_CONVERSION = YES; 318 | CLANG_WARN_INFINITE_RECURSION = YES; 319 | CLANG_WARN_INT_CONVERSION = YES; 320 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 321 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 323 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 324 | CLANG_WARN_STRICT_PROTOTYPES = YES; 325 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 326 | CLANG_WARN_UNREACHABLE_CODE = YES; 327 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 328 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 329 | COPY_PHASE_STRIP = NO; 330 | CURRENT_PROJECT_VERSION = 1; 331 | DEBUG_INFORMATION_FORMAT = dwarf; 332 | ENABLE_STRICT_OBJC_MSGSEND = YES; 333 | ENABLE_TESTABILITY = YES; 334 | GCC_C_LANGUAGE_STANDARD = gnu99; 335 | GCC_DYNAMIC_NO_PIC = NO; 336 | GCC_NO_COMMON_BLOCKS = YES; 337 | GCC_OPTIMIZATION_LEVEL = 0; 338 | GCC_PREPROCESSOR_DEFINITIONS = ( 339 | "DEBUG=1", 340 | "$(inherited)", 341 | ); 342 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 343 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 344 | GCC_WARN_UNDECLARED_SELECTOR = YES; 345 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 346 | GCC_WARN_UNUSED_FUNCTION = YES; 347 | GCC_WARN_UNUSED_VARIABLE = YES; 348 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 349 | MTL_ENABLE_DEBUG_INFO = YES; 350 | ONLY_ACTIVE_ARCH = YES; 351 | SDKROOT = iphoneos; 352 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | VERSIONING_SYSTEM = "apple-generic"; 355 | VERSION_INFO_PREFIX = ""; 356 | }; 357 | name = Debug; 358 | }; 359 | 870BEB691BA3BF84004643C9 /* Release */ = { 360 | isa = XCBuildConfiguration; 361 | buildSettings = { 362 | ALWAYS_SEARCH_USER_PATHS = NO; 363 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 364 | CLANG_CXX_LIBRARY = "libc++"; 365 | CLANG_ENABLE_MODULES = YES; 366 | CLANG_ENABLE_OBJC_ARC = YES; 367 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 368 | CLANG_WARN_BOOL_CONVERSION = YES; 369 | CLANG_WARN_COMMA = YES; 370 | CLANG_WARN_CONSTANT_CONVERSION = YES; 371 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 372 | CLANG_WARN_EMPTY_BODY = YES; 373 | CLANG_WARN_ENUM_CONVERSION = YES; 374 | CLANG_WARN_INFINITE_RECURSION = YES; 375 | CLANG_WARN_INT_CONVERSION = YES; 376 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 377 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 378 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 379 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 380 | CLANG_WARN_STRICT_PROTOTYPES = YES; 381 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 382 | CLANG_WARN_UNREACHABLE_CODE = YES; 383 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 384 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 385 | COPY_PHASE_STRIP = NO; 386 | CURRENT_PROJECT_VERSION = 1; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | SDKROOT = iphoneos; 401 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 402 | TARGETED_DEVICE_FAMILY = "1,2"; 403 | VALIDATE_PRODUCT = YES; 404 | VERSIONING_SYSTEM = "apple-generic"; 405 | VERSION_INFO_PREFIX = ""; 406 | }; 407 | name = Release; 408 | }; 409 | 870BEB6B1BA3BF84004643C9 /* Debug */ = { 410 | isa = XCBuildConfiguration; 411 | buildSettings = { 412 | CLANG_ENABLE_MODULES = YES; 413 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 414 | DEFINES_MODULE = YES; 415 | DYLIB_COMPATIBILITY_VERSION = 1; 416 | DYLIB_CURRENT_VERSION = 1; 417 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 418 | FRAMEWORK_SEARCH_PATHS = ( 419 | "$(inherited)", 420 | "$(PROJECT_DIR)/Carthage/Build/iOS", 421 | ); 422 | INFOPLIST_FILE = AccessibilityAnnouncer/Info.plist; 423 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 424 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 425 | PRODUCT_BUNDLE_IDENTIFIER = com.sommerpanage.AccessibilityAnnouncer; 426 | PRODUCT_NAME = "$(TARGET_NAME)"; 427 | SKIP_INSTALL = YES; 428 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 429 | SWIFT_SWIFT3_OBJC_INFERENCE = Off; 430 | SWIFT_VERSION = 4.0; 431 | }; 432 | name = Debug; 433 | }; 434 | 870BEB6C1BA3BF84004643C9 /* Release */ = { 435 | isa = XCBuildConfiguration; 436 | buildSettings = { 437 | CLANG_ENABLE_MODULES = YES; 438 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 439 | DEFINES_MODULE = YES; 440 | DYLIB_COMPATIBILITY_VERSION = 1; 441 | DYLIB_CURRENT_VERSION = 1; 442 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 443 | FRAMEWORK_SEARCH_PATHS = ( 444 | "$(inherited)", 445 | "$(PROJECT_DIR)/Carthage/Build/iOS", 446 | ); 447 | INFOPLIST_FILE = AccessibilityAnnouncer/Info.plist; 448 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 449 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 450 | PRODUCT_BUNDLE_IDENTIFIER = com.sommerpanage.AccessibilityAnnouncer; 451 | PRODUCT_NAME = "$(TARGET_NAME)"; 452 | SKIP_INSTALL = YES; 453 | SWIFT_SWIFT3_OBJC_INFERENCE = Off; 454 | SWIFT_VERSION = 4.0; 455 | }; 456 | name = Release; 457 | }; 458 | 870BEB811BA3C091004643C9 /* Debug */ = { 459 | isa = XCBuildConfiguration; 460 | buildSettings = { 461 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 462 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 463 | DEVELOPMENT_TEAM = GMC2CJG4U4; 464 | FRAMEWORK_SEARCH_PATHS = ( 465 | "$(inherited)", 466 | "$(PROJECT_DIR)/Carthage/Build/iOS", 467 | ); 468 | INFOPLIST_FILE = AnnouncerDemoApp/Info.plist; 469 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 470 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 471 | PRODUCT_BUNDLE_IDENTIFIER = com.sommerpanage.AnnouncerDemoApp; 472 | PRODUCT_NAME = "$(TARGET_NAME)"; 473 | SWIFT_VERSION = 4.0; 474 | }; 475 | name = Debug; 476 | }; 477 | 870BEB821BA3C091004643C9 /* Release */ = { 478 | isa = XCBuildConfiguration; 479 | buildSettings = { 480 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 481 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 482 | DEVELOPMENT_TEAM = GMC2CJG4U4; 483 | FRAMEWORK_SEARCH_PATHS = ( 484 | "$(inherited)", 485 | "$(PROJECT_DIR)/Carthage/Build/iOS", 486 | ); 487 | INFOPLIST_FILE = AnnouncerDemoApp/Info.plist; 488 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 489 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 490 | PRODUCT_BUNDLE_IDENTIFIER = com.sommerpanage.AnnouncerDemoApp; 491 | PRODUCT_NAME = "$(TARGET_NAME)"; 492 | SWIFT_VERSION = 4.0; 493 | }; 494 | name = Release; 495 | }; 496 | /* End XCBuildConfiguration section */ 497 | 498 | /* Begin XCConfigurationList section */ 499 | 870BEB5C1BA3BF84004643C9 /* Build configuration list for PBXProject "AccessibilityAnnouncer" */ = { 500 | isa = XCConfigurationList; 501 | buildConfigurations = ( 502 | 870BEB681BA3BF84004643C9 /* Debug */, 503 | 870BEB691BA3BF84004643C9 /* Release */, 504 | ); 505 | defaultConfigurationIsVisible = 0; 506 | defaultConfigurationName = Release; 507 | }; 508 | 870BEB6A1BA3BF84004643C9 /* Build configuration list for PBXNativeTarget "AccessibilityAnnouncer" */ = { 509 | isa = XCConfigurationList; 510 | buildConfigurations = ( 511 | 870BEB6B1BA3BF84004643C9 /* Debug */, 512 | 870BEB6C1BA3BF84004643C9 /* Release */, 513 | ); 514 | defaultConfigurationIsVisible = 0; 515 | defaultConfigurationName = Release; 516 | }; 517 | 870BEB801BA3C091004643C9 /* Build configuration list for PBXNativeTarget "AnnouncerDemoApp" */ = { 518 | isa = XCConfigurationList; 519 | buildConfigurations = ( 520 | 870BEB811BA3C091004643C9 /* Debug */, 521 | 870BEB821BA3C091004643C9 /* Release */, 522 | ); 523 | defaultConfigurationIsVisible = 0; 524 | defaultConfigurationName = Release; 525 | }; 526 | /* End XCConfigurationList section */ 527 | }; 528 | rootObject = 870BEB591BA3BF84004643C9 /* Project object */; 529 | } 530 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer.xcodeproj/xcshareddata/xcschemes/AccessibilityAnnouncer.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 47 | 48 | 54 | 55 | 56 | 57 | 58 | 59 | 65 | 66 | 72 | 73 | 74 | 75 | 77 | 78 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer.xcodeproj/xcshareddata/xcschemes/AnnouncerDemoApp.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer/AccessibilityAnnouncer.h: -------------------------------------------------------------------------------- 1 | // 2 | // AccessibilityAnnouncer.h 3 | // AccessibilityAnnouncer 4 | // 5 | // Created by Sommer Panage on 9/11/15. 6 | // Copyright © 2015 Sommer Panage. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for AccessibilityAnnouncer. 12 | FOUNDATION_EXPORT double AccessibilityAnnouncerVersionNumber; 13 | 14 | //! Project version string for AccessibilityAnnouncer. 15 | FOUNDATION_EXPORT const unsigned char AccessibilityAnnouncerVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer/AccessibilityAnnouncer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AccessibilityAnnouncer.swift 3 | // AccessibilityAnnouncer 4 | // 5 | // Created by Sommer Panage on 9/11/15. 6 | // Copyright © 2015 Sommer Panage. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import ReactiveSwift 11 | import Result 12 | import struct Result.AnyError 13 | import enum Result.NoError 14 | 15 | public final class AccessibilityAnnouncer { 16 | 17 | // Amount of time for which our announcer should retry a failing announcement before 18 | // giving up. We recommend no more than 3 seconds for this, otherwise the annoucnement 19 | // will be out of context. If 0 is set in the initializer, then there will be no retry 20 | // behavior by default. 21 | public let defaultRetryTimeout: TimeInterval 22 | 23 | private typealias AnnouncerProducer = SignalProducer<(), NoError> 24 | private typealias NotifierProducer = SignalProducer<(), NotificationError> 25 | 26 | private let signal: Signal 27 | private let sink: Signal.Observer 28 | private let disposable: Disposable 29 | 30 | public init(defaultTimeout: TimeInterval = 3.0) { 31 | self.defaultRetryTimeout = defaultTimeout 32 | 33 | (signal, sink) = Signal.pipe() 34 | 35 | disposable = signal 36 | .flatten(.concat) 37 | .observeValues { }! 38 | } 39 | 40 | deinit { 41 | disposable.dispose() 42 | } 43 | 44 | public func announce(_ announcement: String) { 45 | announce(announcement, withRetryTimeout: defaultRetryTimeout) 46 | } 47 | 48 | // Passing a timeout here overrides the default timeout for this announcement only. 49 | public func announce(_ announcement: String, withRetryTimeout timeout: TimeInterval) { 50 | let announcer = createProducerForAnnouncer(announcement) 51 | let notifier = createProducerForNotifier(announcement) 52 | 53 | let announceAndCheckNotificationProducer = announcer 54 | .promoteError(NotificationError.self) 55 | .concat(notifier) 56 | 57 | let retryTilTimeoutProducer = announceAndCheckNotificationProducer 58 | .retry(upTo: Int.max) 59 | .timeout(after: timeout, raising: .announcementTimedOut, on: QueueScheduler()) 60 | .flatMapError{ _ in AnnouncerProducer.empty } 61 | 62 | sink.send(value: retryTilTimeoutProducer) 63 | } 64 | 65 | private func createProducerForAnnouncer(_ announcement: String) -> AnnouncerProducer { 66 | return SignalProducer { sink, disposable in 67 | UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, announcement) 68 | sink.sendCompleted() 69 | } 70 | } 71 | 72 | private func createProducerForNotifier(_ announcement: String) -> NotifierProducer { 73 | let notificationSignal = NotificationCenter.default.reactive.notifications(forName: NSNotification.Name.UIAccessibilityAnnouncementDidFinish, object: nil) 74 | .map { $0.userInfo! } 75 | .filter { $0[UIAccessibilityAnnouncementKeyStringValue] as! String? == announcement } 76 | .take(first: 1) 77 | .promoteError(NotificationError.self) 78 | let notificationProducer = SignalProducer(notificationSignal) 79 | 80 | return notificationProducer.flatMap(.merge) { userInfo -> NotifierProducer in 81 | let success = (userInfo[UIAccessibilityAnnouncementKeyWasSuccessful]! as AnyObject).boolValue! 82 | 83 | if (success) { 84 | return .empty 85 | } else { 86 | return SignalProducer(error: .announcementFailed) 87 | } 88 | } 89 | } 90 | 91 | fileprivate enum NotificationError: Error { 92 | case announcementFailed 93 | case announcementTimedOut 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /AccessibilityAnnouncer/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /AnnouncerDemoApp/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // AnnouncerDemoApp 4 | // 5 | // Created by Sommer Panage on 9/11/15. 6 | // Copyright © 2015 Sommer Panage. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | private func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /AnnouncerDemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /AnnouncerDemoApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /AnnouncerDemoApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 33 | 41 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /AnnouncerDemoApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /AnnouncerDemoApp/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // AnnouncerDemoApp 4 | // 5 | // Created by Sommer Panage on 9/11/15. 6 | // Copyright © 2015 Sommer Panage. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import AccessibilityAnnouncer 11 | 12 | class ViewController: UIViewController { 13 | 14 | private let announcer = AccessibilityAnnouncer(defaultTimeout: 5.0) 15 | 16 | @IBOutlet var delayControl: UISegmentedControl! 17 | 18 | override func viewDidLoad() { 19 | super.viewDidLoad() 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | override func didReceiveMemoryWarning() { 24 | super.didReceiveMemoryWarning() 25 | // Dispose of any resources that can be recreated. 26 | } 27 | 28 | @IBAction func didTapShortAnnouncement(_ sender: Any) { 29 | DispatchQueue.main.asyncAfter(deadline: deadline) { 30 | self.announcer.announce("Short.") 31 | } 32 | } 33 | 34 | @IBAction func didTapLongAnnouncement(_ sender: Any) { 35 | DispatchQueue.main.asyncAfter(deadline: deadline) { 36 | self.announcer.announce("This is a long announcement with a lot to say.") 37 | } 38 | } 39 | 40 | private var deadline: DispatchTime { 41 | let index = delayControl.selectedSegmentIndex 42 | let stringValue = delayControl.titleForSegment(at: index)! 43 | return .now() + .seconds(Int(stringValue)!) 44 | } 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveCocoa/ReactiveSwift" ~> 3.0.0 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveCocoa/ReactiveSwift" "3.0.0" 2 | github "antitypical/Result" "3.2.4" 3 | -------------------------------------------------------------------------------- /Carthage/Build/.ReactiveSwift.version: -------------------------------------------------------------------------------- 1 | { 2 | "commitish" : "3.0.0", 3 | "iOS" : [ 4 | { 5 | "name" : "ReactiveSwift", 6 | "hash" : "34f8bcea8907b2d988df283d0a53ca651662ffe5cf1e6873998f973c3af2d0ae" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Carthage/Build/.Result.version: -------------------------------------------------------------------------------- 1 | { 2 | "commitish" : "3.2.4", 3 | "iOS" : [ 4 | { 5 | "name" : "Result", 6 | "hash" : "76da332ab1f6e3d642591ea304f5bdd84f9c823ef63e28ae105e488b6e74bbb0" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Carthage/Build/iOS/40A06643-98F8-373A-9853-3A1B36700518.bcsymbolmap: -------------------------------------------------------------------------------- 1 | BCSymbolMap Version: 2.0 2 | _swift_rt_swift_retain 3 | _swift_rt_swift_release 4 | _swift_rt_swift_deallocObject 5 | _swift_rt_swift_allocObject 6 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 7 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 8 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 9 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 10 | __T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 11 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 12 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 13 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 14 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 15 | __T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 16 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 17 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 18 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 19 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfKcfU0_TA 20 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TATm 21 | _swift_rt_swift_getEnumCaseSinglePayload 22 | _swift_rt_swift_storeEnumTagSinglePayload 23 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 24 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 25 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 26 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_TA 27 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TATm 28 | __T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 29 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTW 30 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5errorAEQzSgfgTW 31 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTWTm 32 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 33 | __T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 34 | __T06Result2qqoixx_xyXKtAA0A8ProtocolRzlFxyXKfu_TA 35 | _swift_rt_swift_retain_n 36 | _swift_rt_swift_release_n 37 | __T06Result0A8Protocol_pMF 38 | __T06Result16ErrorConvertible_pMF 39 | __T06Result24ErrorProtocolConvertible_pMF 40 | ___swift_reflection_version 41 | Apple LLVM version 9.0.0 (clang-900.0.37) 42 | -emit-bc /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk -I /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos -F /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos -application-extension -g -import-underlying-module -module-cache-path /Users/spanage/Library/Developer/Xcode/DerivedData/ModuleCache -swift-version 3 -serialize-debugging-options -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-generated-files.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-own-target-headers.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-project-headers.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos/include -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/armv7 -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result -emit-module-doc-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/Result.swiftdoc -serialize-diagnostics-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/ResultProtocol.dia -O -module-name Result -emit-module-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/Result.swiftmodule -emit-objc-header-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/Result-Swift.h -emit-dependencies-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/ResultProtocol.d -num-threads 4 -o /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/ResultProtocol.bc -o /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/armv7/Result.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift 43 | 44 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result 45 | Apple Swift version 4.0 effective-3.2 (swiftlang-900.0.65 clang-900.0.37) 46 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift 47 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 48 | ResultProtocol.swift 49 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result 50 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTR 51 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 52 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_ 53 | objectdestroy.49 54 | value.get 55 | _T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZfA_ 56 | errorFromErrorType 57 | recoverWith 58 | ?? 59 | recover 60 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 61 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_ 62 | != 63 | == 64 | >>- 65 | flatMap 66 | &&& 67 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 68 | _T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 69 | tryMap 70 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 71 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_ 72 | objectdestroy.37 73 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 74 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_ 75 | objectdestroy.34 76 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 77 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_ 78 | objectdestroy.28 79 | bimap 80 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 81 | objectdestroy.25 82 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 83 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_ 84 | flatMapError 85 | mapError 86 | objectdestroy.19 87 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 88 | fanout 89 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 90 | objectdestroy.16 91 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 92 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_ 93 | objectdestroy.13 94 | map 95 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 96 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_ 97 | objectdestroy.10 98 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 99 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_ 100 | objectdestroy.7 101 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 102 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_ 103 | objectdestroy.4 104 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 105 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_ 106 | objectdestroy 107 | error.get 108 | _swift_rt_swift_getExistentialTypeMetadata 109 | _swift_rt_swift_dynamicCast 110 | __T06ResultAAO11functionKeySSfgZTm 111 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPx5ValueQz5value_tcfCTW 112 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPxAEQz5error_tcfCTW 113 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP8analysisqd__qd__5ValueQzc9ifSuccess_qd__AEQzc0F7FailuretlFTW 114 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTW 115 | __T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lsADP16debugDescriptionSSfgTW 116 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTWTm 117 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlF 118 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZTo 119 | __T0So7NSErrorC6Result16ErrorConvertibleA2cDP5errorxs0C0_p4from_tFZTW 120 | __T06Result7NoErrorOs0C0AAsADP7_domainSSfgTW 121 | __T06Result7NoErrorOs0C0AAsADP5_codeSifgTW 122 | __T06Result7NoErrorOs0C0AAsADP9_userInfoyXlSgfgTW 123 | __T06Result7NoErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 124 | __T06Result7NoErrorOs9EquatableAAsADP2eeoiSbx_xtFZTW 125 | __T06Result8AnyErrorVs0C0AAsADP7_domainSSfgTW 126 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTW 127 | __T06Result8AnyErrorVs0C0AAsADP9_userInfoyXlSgfgTW 128 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTWTm 129 | __T06Result8AnyErrorVs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 130 | __T06Result8AnyErrorVAA0C11ConvertibleA2aDP5errorxs0C0_p4from_tFZTW 131 | __T06Result8AnyErrorVs23CustomStringConvertibleAAsADP11descriptionSSfgTW 132 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP16errorDescriptionSSSgfgTW 133 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP13failureReasonSSSgfgTW 134 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgfgTW 135 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP10helpAnchorSSSgfgTW 136 | __T0So7NSErrorC6ResultE18errorFromErrorTypeABXDs0E0_pFZTo 137 | __T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 138 | __T0s11_StringCoreV6appendyABFTfq4gXn_n 139 | __T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 140 | __T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 141 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 142 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 143 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 144 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 145 | __T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 146 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 147 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 148 | __T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 149 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlFTf4g_n 150 | __T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 151 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_n 152 | __T06ResultAAO7fileKeySSfgZyt_So7NSErrorCTg5Tf4d_n 153 | __T06ResultAAO7lineKeySSfgZyt_So7NSErrorCTg5Tf4d_n 154 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_nTm 155 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 156 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZyt_AETg5Tf4ggXgXnd_n 157 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZTf4ggXgXnn_n 158 | __T06ResultAAO11descriptionSSfgSSxcfU_TA 159 | __T06ResultAAO11descriptionSSfgSSq_cfU0_TA 160 | __T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 161 | __T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 162 | _swift_rt_swift_getInitializedObjCClass 163 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 164 | __T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 165 | __T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 166 | __T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFTf4gXgXng_n 167 | ___swift_project_boxed_opaque_existential_1 168 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 169 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 170 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 171 | __T06ResultAAOwXX 172 | _swift_rt_swift_slowDealloc 173 | __T06ResultAAOwCP 174 | __T06ResultAAOwpr 175 | __T06ResultAAOwde 176 | __T06ResultAAOwxx 177 | __T06ResultAAOwCp 178 | __T06ResultAAOwcp 179 | __T06ResultAAOwca 180 | __T06ResultAAOwTk 181 | __T06ResultAAOwtk 182 | __T06ResultAAOwta 183 | __T06ResultAAOwal 184 | __T06ResultAAOwTK 185 | __T06ResultAAOwXx 186 | __T06ResultAAOwCc 187 | __T06ResultAAOwTt 188 | __T06ResultAAOwtT 189 | __T06ResultAAOwug 190 | __T06ResultAAOwup 191 | __T06ResultAAOwui 192 | _swift_rt_swift_getGenericMetadata 193 | ___swift_noop_void_return 194 | ___swift_memcpy0_1 195 | ___swift_noop_self_return 196 | ___swift_memcpy_array1_1 197 | ___swift_memmove_array1_1 198 | __T06Result7NoErrorOwug 199 | __T06Result7NoErrorOwup 200 | __T06Result7NoErrorOwui 201 | __T06Result8AnyErrorVwXX 202 | __T06Result8AnyErrorVwCP 203 | __T06Result8AnyErrorVwcp 204 | __T06Result8AnyErrorVwca 205 | ___swift_memcpy4_4 206 | __T06Result8AnyErrorVwta 207 | __T06Result8AnyErrorVwXx 208 | __T06Result8AnyErrorVwCc 209 | ___swift_memmove_array4_4 210 | __T06Result8AnyErrorVwxs 211 | __T06Result8AnyErrorVwxg 212 | _swift_rt_swift_slowAlloc 213 | __T0s23_ContiguousArrayStorageCySS_yptGMa 214 | ___swift_destroy_boxed_opaque_existential_0 215 | _swift_rt_swift_isUniquelyReferenced_nonNull_native 216 | __T06Result8AnyErrorVwCp 217 | __T0xSSIxio_xSSIxir_s5ErrorR_r0_lTRTA 218 | ___swift_destroy_boxed_opaque_existential_1 219 | __T06Result11materializeA2AOyxSo7NSErrorCGxyKclFxyKXKfu_TA 220 | __T06Result8AnyErrorVwxx 221 | __T0s5Error_pML 222 | __T0s23_ContiguousArrayStorageCySSGML 223 | __T0So7NSErrorCML 224 | __T010Foundation14LocalizedError_pML 225 | __T06ResultAAOMP 226 | __T06ResultAAOMF 227 | __T06Result7NoErrorOWV 228 | __T06Result7NoErrorOMf 229 | __T06Result7NoErrorOMF 230 | __T06Result8AnyErrorVWV 231 | __T06Result8AnyErrorVMf 232 | __T06Result8AnyErrorVMF 233 | __swift_FORCE_LOAD_$_swiftFoundation_$_Result 234 | __swift_FORCE_LOAD_$_swiftObjectiveC_$_Result 235 | __swift_FORCE_LOAD_$_swiftDarwin_$_Result 236 | __swift_FORCE_LOAD_$_swiftCoreFoundation_$_Result 237 | __swift_FORCE_LOAD_$_swiftDispatch_$_Result 238 | __T06Result7NoErrorOmML 239 | __T06Result8AnyErrorVmML 240 | __T0s23_ContiguousArrayStorageCySS_yptGML 241 | __T0SS_yptML 242 | __T0ypML 243 | __T0s37_HashableTypedNativeDictionaryStorageCySSypGML 244 | __T0yXlML 245 | __T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGML 246 | __T0s35_HasCustomAnyHashableRepresentation_pML 247 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lMA 248 | _objc_categories 249 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift 250 | __swift_destroy_boxed_opaque_existential_0 251 | Result.swift 252 | _T0s23_ContiguousArrayStorageCySS_yptGMa 253 | _T0SS_yptMa 254 | _T0ypMa 255 | _T06Result8AnyErrorVMa 256 | get_field_types_AnyError 257 | _T0s5Error_pMa 258 | _T06Result8AnyErrorVwxg 259 | _T06Result8AnyErrorVwxs 260 | __swift_memmove_array4_4 261 | _T06Result8AnyErrorVwCc 262 | _T06Result8AnyErrorVwXx 263 | _T06Result8AnyErrorVwta 264 | __swift_memcpy4_4 265 | _T06Result8AnyErrorVwca 266 | _T06Result8AnyErrorVwcp 267 | _T06Result8AnyErrorVwCP 268 | _T06Result8AnyErrorVwXX 269 | _T06Result7NoErrorOMa 270 | get_field_types_NoError 271 | _T06Result7NoErrorOwui 272 | _T06Result7NoErrorOwup 273 | _T06Result7NoErrorOwug 274 | __swift_memmove_array1_1 275 | __swift_memcpy_array1_1 276 | __swift_noop_self_return 277 | __swift_memcpy0_1 278 | __swift_noop_void_return 279 | create_generic_metadata_Result 280 | _T06ResultAAOwui 281 | _T06ResultAAOwup 282 | _T06ResultAAOwug 283 | _T06ResultAAOwtT 284 | _T06ResultAAOwTt 285 | _T06ResultAAOwCc 286 | _T06ResultAAOwXx 287 | _T06ResultAAOwTK 288 | _T06ResultAAOwal 289 | _T06ResultAAOwta 290 | _T06ResultAAOwtk 291 | _T06ResultAAOwTk 292 | _T06ResultAAOwca 293 | _T06ResultAAOwcp 294 | _T06ResultAAOwCp 295 | _T06ResultAAOwxx 296 | _T06ResultAAOwde 297 | _T06ResultAAOwpr 298 | _T06ResultAAOwCP 299 | _T06ResultAAOwXX 300 | get_field_types_Result 301 | _T06Result8AnyErrorV10Foundation09LocalizedC0AAWa 302 | _T06Result8AnyErrorVs23CustomStringConvertibleAAWa 303 | _T06Result8AnyErrorVAA0C11ConvertibleAAWa 304 | _T06Result7NoErrorOs9EquatableAAWa 305 | _T06Result7NoErrorOs0C0AAWa 306 | _T0So7NSErrorC6Result16ErrorConvertibleACWa 307 | _T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lWa 308 | _T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lWa 309 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lWa 310 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 311 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 312 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 313 | _T06Result8AnyErrorVs0C0AAWa 314 | __swift_project_boxed_opaque_existential_1 315 | try 316 | _T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFAEyKXKfu_ 317 | error 318 | _T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 319 | init 320 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5 321 | _T0S2Sx26stringInterpolationSegment_tclufCTfq4gn_n 322 | _allocateUninitializedArray 323 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_Tg5 324 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_Tg5 325 | _T0s23_ContiguousArrayStorageCySSGMa 326 | _T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 327 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 328 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 329 | _T06ResultAAOMa 330 | _T0So7NSErrorCMa 331 | objectdestroy.20 332 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 333 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_ 334 | objectdestroy.14 335 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 336 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTR 337 | objectdestroy.11 338 | _T06ResultAAO11descriptionSSfgSSq_cfU0_TA 339 | _T06ResultAAO11descriptionSSfgSSq_cfU0_ 340 | objectdestroy.8 341 | _T06ResultAAO11descriptionSSfgSSxcfU_TA 342 | _T06ResultAAO11descriptionSSfgSSxcfU_ 343 | objectdestroy.2 344 | _dictionaryUpCast 345 | subscript.set 346 | _T0s10DictionaryVAByxq_GSayx_q_tG17dictionaryLiterald_tcfCTfq4gn_nSS_ypTg5 347 | _T0s23_ContiguousArrayStorageCfDSS_ypt_Tg5 348 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5 349 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_ypt_Tg5 350 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_ypt_Tg5 351 | lineKey.get 352 | fileKey.get 353 | functionKey.get 354 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 355 | _T0SSs9EquatablessAAP2eeoiSbx_xtFZTW 356 | _T0Sa15_checkSubscripts16_DependenceTokenVSi_Sb20wasNativeTypeCheckedtFSS_ypt_Tg5 357 | _T0s12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBoundsySi_Sb03wasfgH0tFSS_ypt_Tg5 358 | _T0Sa11_getElementxSi_Sb20wasNativeTypeCheckeds16_DependenceTokenV22matchingSubscriptChecktFSS_ypt_Tg5 359 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nyp_Tg5 360 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nSS_Tg5 361 | _T0s17_squeezeHashValueS2i_SitF 362 | _T0SSs8HashablessAAP9hashValueSifgTW 363 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5 364 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5Tf4nnd_n 365 | _T0Sp10initializeyx2to_Si5counttFSu_Tgq5 366 | _T0s37_HashableTypedNativeDictionaryStorageCySSypGMa 367 | _T0Sd18exponentBitPatternSufg 368 | _T0Sa9_getCountSiyFSS_ypt_Tg5 369 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 370 | _T0SSs20TextOutputStreamablessAAP5writeyqd__z2to_ts0aB6StreamRd__lFTWSS_Tg5 371 | cast 372 | _T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 373 | _T0s35_HasCustomAnyHashableRepresentation_pMa 374 | _T0yXlMa 375 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 376 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 377 | _T0s11AnyHashableVs9EquatablessACP2eeoiSbx_xtFZTW 378 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_ns11AnyHashableV_Tg5 379 | _T0s11AnyHashableVs0B0ssACP9hashValueSifgTW 380 | _T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 381 | _T0s23_NativeDictionaryBufferV5indexs01_aB5IndexVyxq_GAF5after_tFSS_ypTg5 382 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5 383 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5Tf4nnd_n 384 | _T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGMa 385 | _T0s10DictionaryV5countSifgSS_ypTg5 386 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 387 | _T0s24_CocoaDictionaryIteratorC4nextyXl_yXltSgyF 388 | _T0Sv4loadxSi14fromByteOffset_xm2astlFs9UnmanagedVyyXlG_Tgq5Tfq4ndn_n 389 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 390 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 391 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 392 | _T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 393 | _T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 394 | _T0s11_StringCoreV6appendyABFTfq4gXn_n 395 | _T0s20ManagedBufferPointerV08_elementC0Spyq_Gfgs05_HeapB6HeaderVys07_StringB5IVarsVG_s6UInt16VTgq5 396 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFTfq4x_n 397 | _T0s8SequencePsE8containsS2b7ElementQzKc5where_tKFSRys6UInt16VG_Tgq505_T0s6E37VSbs5Error_pIxydzo_ABSbsAC_pIxidzo_TRAHSbs0H0_pIxydzo_Tfq1cn_nTfq4ng_n 398 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFSbs6UInt16VcfU_ 399 | _T0S2RyxGSPyxGSg5start_Si5counttcfCs6UInt16V_Tgq5Tfq4nnd_n 400 | _T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 401 | Failure 402 | Success 403 | helpAnchor.get 404 | recoverySuggestion.get 405 | failureReason.get 406 | errorDescription.get 407 | _T010Foundation14LocalizedError_pMa 408 | description.get 409 | _getEmbeddedNSError 410 | _code.get 411 | _domain.get 412 | _T06Result8AnyErrorVmMa 413 | _userInfo.get 414 | _T06Result7NoErrorOmMa 415 | materialize 416 | analysis 417 | debugDescription.get 418 | errorDomain.get 419 | dematerialize 420 | _stdlib_getErrorEmbeddedNSError 421 | _T036swift_stdlib_getErrorEmbeddedNSErrorTfq4g_n 422 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 423 | /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/Result_vers.c 424 | __ZL15__ARCLite__loadv 425 | __ZL30add_image_hook_autoreleasepoolPK11mach_headerl 426 | __ZL34__arclite_objc_autoreleasePoolPushv 427 | __ZL33__arclite_objc_autoreleasePoolPopPv 428 | __ZL19patch_lazy_pointersPK11mach_headerP7patch_tm 429 | __ZL42__arclite_NSArray_objectAtIndexedSubscriptP7NSArrayP13objc_selectorj 430 | __ZL53__arclite_NSMutableArray_setObject_atIndexedSubscriptP14NSMutableArrayP13objc_selectorP11objc_objectj 431 | __ZL46__arclite_NSDictionary_objectForKeyedSubscriptP12NSDictionaryP13objc_selectorP11objc_object 432 | __ZL47__arclite_NSOrderedSet_objectAtIndexedSubscriptP12NSOrderedSetP13objc_selectorj 433 | __ZL58__arclite_NSMutableOrderedSet_setObject_atIndexedSubscriptP19NSMutableOrderedSetP13objc_selectorP11objc_objectj 434 | __ZL58__arclite_NSMutableDictionary__setObject_forKeyedSubscriptP19NSMutableDictionaryP13objc_selectorP11objc_objectS4_ 435 | __ZL18add_image_hook_ARCPK11mach_headerl 436 | __ZL36__arclite_object_setInstanceVariableP11objc_objectPKcPv 437 | __ZL24__arclite_object_setIvarP11objc_objectP9objc_ivarS0_ 438 | __ZL21__arclite_object_copyP11objc_objectm 439 | __ZL21__arclite_objc_retainP11objc_object 440 | __ZL26__arclite_objc_retainBlockP11objc_object 441 | __ZL22__arclite_objc_releaseP11objc_object 442 | __ZL26__arclite_objc_autoreleaseP11objc_object 443 | __ZL32__arclite_objc_retainAutoreleaseP11objc_object 444 | __ZL37__arclite_objc_autoreleaseReturnValueP11objc_object 445 | __ZL43__arclite_objc_retainAutoreleaseReturnValueP11objc_object 446 | __ZL44__arclite_objc_retainAutoreleasedReturnValueP11objc_object 447 | __ZL26__arclite_objc_storeStrongPP11objc_objectS0_ 448 | __ZL22add_image_hook_swiftV1PK11mach_headerl 449 | __ZL42__arclite_NSUndoManagerProxy_isKindOfClassP11objc_objectP13objc_selectorP10objc_class 450 | __ZL13replaceMethodP10objc_classP13objc_selectorPFP11objc_objectS4_S2_zEPS6_ 451 | __ZL30__arclite_NSManagedObject_initP11objc_objectP13objc_selector 452 | __ZL41__arclite_NSManagedObject_allocWithEntityP11objc_objectP13objc_selectorS0_ 453 | __ZL36__arclite_NSManagedObject_allocBatchP11objc_objectP13objc_selectorPS0_S0_j 454 | __ZL37__arclite_NSKKMS_fastIndexForKnownKeyP11objc_objectP13objc_selectorS0_ 455 | __ZL28__arclite_NSKKMS_indexForKeyP11objc_objectP13objc_selectorS0_ 456 | __ZL29__arclite_NSKKsD_objectForKeyP11objc_objectP13objc_selectorS0_ 457 | __ZL35__arclite_NSKKsD_removeObjectForKeyP11objc_objectP13objc_selectorS0_ 458 | __ZL33__arclite_NSKKsD_setObject_forKeyP11objc_objectP13objc_selectorS0_S0_ 459 | __ZL41__arclite_NSKKsD_addEntriesFromDictionaryP11objc_objectP13objc_selectorP12NSDictionary 460 | __ZL28__arclite_objc_readClassPairP10objc_classPK15objc_image_info 461 | __ZL32__arclite_objc_allocateClassPairP10objc_classPKcm 462 | __ZL32__arclite_object_getIndexedIvarsP11objc_object 463 | __ZL23__arclite_objc_getClassPKc 464 | __ZL27__arclite_objc_getMetaClassPKc 465 | __ZL31__arclite_objc_getRequiredClassPKc 466 | __ZL26__arclite_objc_lookUpClassPKc 467 | __ZL26__arclite_objc_getProtocolPKc 468 | __ZL23__arclite_class_getNameP10objc_class 469 | __ZL26__arclite_protocol_getNameP8Protocol 470 | __ZL37__arclite_objc_copyClassNamesForImagePKcPj 471 | __ZL17transcribeMethodsP10objc_classP15glue_class_ro_t 472 | __ZL19transcribeProtocolsP10objc_classP15glue_class_ro_t 473 | __ZL20transcribePropertiesP10objc_classP15glue_class_ro_t 474 | __ZL14initialize_impP11objc_objectP13objc_selector 475 | __ZL18allocateMaybeSwiftP18glue_swift_class_tm 476 | __ZL22copySwiftV1MangledNamePKcb 477 | __ZL13demangledNamePKcb 478 | __ZL16scanMangledFieldRPKcS0_S1_Ri 479 | __ZL30arclite_uninitialized_functionv 480 | __ZL12cxxConstructP11objc_object 481 | __ZL20fixStringForCoreDataP11objc_object 482 | _OBJC_METACLASS_$___ARCLite__ 483 | __ZL24OBJC_CLASS_$___ARCLite__ 484 | __ZL31OBJC_METACLASS_RO_$___ARCLite__ 485 | __non_lazy_classes 486 | __ZL27OBJC_CLASS_RO_$___ARCLite__ 487 | __ZL11_class_name 488 | __ZL32OBJC_$_CLASS_METHODS___ARCLite__ 489 | __ZL17_load_method_name 490 | __ZL17_load_method_type 491 | __ZL23NSAutoreleasePool_class 492 | __ZZL30add_image_hook_autoreleasepoolPK11mach_headerlE7patches 493 | __ZGVZL30add_image_hook_autoreleasepoolPK11mach_headerlE7patches 494 | l_OBJC_PROTOCOL_$___ARCLiteIndexedSubscripting__ 495 | l_OBJC_LABEL_PROTOCOL_$___ARCLiteIndexedSubscripting__ 496 | l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteIndexedSubscripting__ 497 | l_OBJC_PROTOCOL_$___ARCLiteKeyedSubscripting__ 498 | l_OBJC_LABEL_PROTOCOL_$___ARCLiteKeyedSubscripting__ 499 | l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteKeyedSubscripting__ 500 | __ZZL18add_image_hook_ARCPK11mach_headerlE7patches 501 | __ZGVZL18add_image_hook_ARCPK11mach_headerlE7patches 502 | __ZL30NSUndoManagerProxy_targetClass 503 | __ZL29original_NSManagedObject_init 504 | __ZL40original_NSManagedObject_allocWithEntity 505 | __ZL35original_NSManagedObject_allocBatch 506 | __ZL25NSMutableDictionary_class 507 | __ZL22NSConstantString_class 508 | __ZL14NSString_class 509 | __ZL36original_NSKKMS_fastIndexForKnownKey 510 | __ZL27original_NSKKMS_indexForKey 511 | __ZL28original_NSKKsD_objectForKey 512 | __ZL34original_NSKKsD_removeObjectForKey 513 | __ZL32original_NSKKsD_setObject_forKey 514 | __ZL40original_NSKKsD_addEntriesFromDictionary 515 | __ZZL22add_image_hook_swiftV1PK11mach_headerlE7patches 516 | __ZGVZL22add_image_hook_swiftV1PK11mach_headerlE7patches 517 | __ZL31original_objc_allocateClassPair 518 | __ZL31original_object_getIndexedIvars 519 | __ZL22original_objc_getClass 520 | __ZL26original_objc_getMetaClass 521 | __ZL30original_objc_getRequiredClass 522 | __ZL25original_objc_lookUpClass 523 | __ZL25original_objc_getProtocol 524 | __ZL22original_class_getName 525 | __ZL25original_protocol_getName 526 | __ZL36original_objc_copyClassNamesForImage 527 | __ZL12demangleLock 528 | __ZL9Demangled 529 | Apple LLVM version 9.0.0 (clang-900.0.35) 530 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch armv7 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -Wno-trigraphs -fno-exceptions -fno-rtti -fno-sanitize=vptr -mpascal-strings -Os -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -D NDEBUG=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=4.3 -g -fno-threadsafe-statics -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -fembed-bitcode=all -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-generated-files.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-own-target-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-all-target-headers.hmap -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-project-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts/include -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources/armv7 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources -F/Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk/System/Library/PrivateFrameworks -Wall -Wextra -Wno-gcc-compat -Wno-error=incomplete-umbrella -Wno-error=incomplete-umbrella -MMD -MT dependencies -MF /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/armv7/arclite.d --serialize-diagnostics /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/armv7/arclite.dia -c /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66/source/arclite.mm -o /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/armv7/arclite.o -mlinker-version=302.3 -march=armv7a 531 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66/source/arclite.mm 532 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66 533 | fixStringForCoreData 534 | cxxConstruct 535 | arclite_uninitialized_function 536 | scanMangledField 537 | isdigit 538 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk/usr/include/ctype.h 539 | __isctype 540 | demangledName 541 | copySwiftV1DemangledName 542 | copySwiftV1MangledName 543 | allocateMaybeSwift 544 | word_align 545 | isSwift 546 | initialize_imp 547 | transcribeProperties 548 | property_list_nth 549 | transcribeProtocols 550 | transcribeMethods 551 | data 552 | method_list_nth 553 | __arclite_objc_copyClassNamesForImage 554 | __arclite_protocol_getName 555 | __arclite_class_getName 556 | __arclite_objc_getProtocol 557 | __arclite_objc_lookUpClass 558 | __arclite_objc_getRequiredClass 559 | __arclite_objc_getMetaClass 560 | __arclite_objc_getClass 561 | __arclite_object_getIndexedIvars 562 | __arclite_objc_allocateClassPair 563 | metaclass 564 | __arclite_objc_readClassPair 565 | transcribeIvars 566 | ivar_list_nth 567 | max 568 | alignment 569 | ro 570 | fastFlags 571 | __arclite_NSKKsD_addEntriesFromDictionary 572 | __arclite_NSKKsD_setObject_forKey 573 | __arclite_NSKKsD_removeObjectForKey 574 | __arclite_NSKKsD_objectForKey 575 | __arclite_NSKKMS_indexForKey 576 | __arclite_NSKKMS_fastIndexForKnownKey 577 | __arclite_NSManagedObject_allocBatch 578 | __arclite_NSManagedObject_allocWithEntity 579 | __arclite_NSManagedObject_init 580 | replaceMethod 581 | __arclite_NSUndoManagerProxy_isKindOfClass 582 | add_image_hook_swiftV1 583 | patch_t 584 | patch_t 585 | patch_t 586 | patch_t 587 | patch_t 588 | patch_t 589 | patch_t 590 | patch_t 591 | __arclite_objc_storeStrong 592 | __arclite_objc_release 593 | __arclite_objc_retain 594 | __arclite_objc_retainAutoreleasedReturnValue 595 | __arclite_objc_retainAutoreleaseReturnValue 596 | __arclite_objc_autoreleaseReturnValue 597 | __arclite_objc_retainAutorelease 598 | __arclite_objc_autorelease 599 | __arclite_objc_retainBlock 600 | __arclite_object_copy 601 | fixupCopiedReferences 602 | _class_getInstanceStart 603 | alignedInstanceStart 604 | __arclite_class_usesAutomaticRetainRelease 605 | classOrSuperClassesUseARR 606 | __arclite_object_setIvar 607 | isScannedOffset 608 | _ivar_getClass 609 | __arclite_object_setInstanceVariable 610 | add_image_hook_ARC 611 | patch_t 612 | patch_t 613 | patch_t 614 | patch_t 615 | patch_t 616 | patch_t 617 | __arclite_NSMutableDictionary__setObject_forKeyedSubscript 618 | __arclite_NSMutableOrderedSet_setObject_atIndexedSubscript 619 | __arclite_NSOrderedSet_objectAtIndexedSubscript 620 | __arclite_NSDictionary_objectForKeyedSubscript 621 | __arclite_NSMutableArray_setObject_atIndexedSubscript 622 | __arclite_NSArray_objectAtIndexedSubscript 623 | patch_lazy_pointers 624 | __arclite_objc_autoreleasePoolPop 625 | __arclite_objc_autoreleasePoolPush 626 | add_image_hook_autoreleasepool 627 | patch_t 628 | patch_t 629 | __ARCLite__load 630 | install_swiftV1 631 | install_ARC 632 | install_dict_nil_value 633 | addOrReplaceMethod 634 | keyedGetter 635 | install_subscripting 636 | addMethod 637 | indexedGetter 638 | install_autoreleasepool 639 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/589BFBFE-FA50-3193-B503-D0BA66DD8347.bcsymbolmap: -------------------------------------------------------------------------------- 1 | BCSymbolMap Version: 2.0 2 | _swift_rt_swift_retain 3 | _swift_rt_swift_release 4 | _swift_rt_swift_deallocObject 5 | _swift_rt_swift_allocObject 6 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 7 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 8 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 9 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 10 | __T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 11 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 12 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 13 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 14 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 15 | __T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 16 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 17 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 18 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 19 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfKcfU0_TA 20 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TATm 21 | _swift_rt_swift_getEnumCaseSinglePayload 22 | _swift_rt_swift_storeEnumTagSinglePayload 23 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 24 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 25 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 26 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_TA 27 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TATm 28 | __T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 29 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTW 30 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5errorAEQzSgfgTW 31 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTWTm 32 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 33 | __T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 34 | __T06Result2qqoixx_xyXKtAA0A8ProtocolRzlFxyXKfu_TA 35 | _swift_rt_swift_retain_n 36 | _swift_rt_swift_release_n 37 | __T06Result0A8Protocol_pMF 38 | __T06Result16ErrorConvertible_pMF 39 | __T06Result24ErrorProtocolConvertible_pMF 40 | ___swift_reflection_version 41 | Apple LLVM version 9.0.0 (clang-900.0.39.2) 42 | -emit-bc /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk -I /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos -F /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos -application-extension -g -import-underlying-module -module-cache-path /Users/nachosoto/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/ModuleCache -swift-version 3 -serialize-debugging-options -report-errors-to-debugger -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-generated-files.hmap -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-own-target-headers.hmap -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-project-headers.hmap -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/arm64 -Xcc -I/Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result -emit-module-doc-path /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftdoc -serialize-diagnostics-path /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.dia -O -module-name Result -emit-module-path /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftmodule -emit-objc-header-path /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result-Swift.h -emit-dependencies-path /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.d -num-threads 8 -o /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.bc -o /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift 43 | 44 | /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result 45 | Apple Swift version 4.0.3 effective-3.2.3 (swiftlang-900.0.74.1 clang-900.0.39.2) 46 | /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift 47 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 48 | ResultProtocol.swift 49 | /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result 50 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTR 51 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 52 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_ 53 | objectdestroy.49 54 | value.get 55 | _T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZfA_ 56 | errorFromErrorType 57 | recoverWith 58 | ?? 59 | recover 60 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 61 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_ 62 | != 63 | == 64 | >>- 65 | flatMap 66 | &&& 67 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 68 | _T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 69 | tryMap 70 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 71 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_ 72 | objectdestroy.37 73 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 74 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_ 75 | objectdestroy.34 76 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 77 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_ 78 | objectdestroy.28 79 | bimap 80 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 81 | objectdestroy.25 82 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 83 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_ 84 | flatMapError 85 | mapError 86 | objectdestroy.19 87 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 88 | fanout 89 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 90 | objectdestroy.16 91 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 92 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_ 93 | objectdestroy.13 94 | map 95 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 96 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_ 97 | objectdestroy.10 98 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 99 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_ 100 | objectdestroy.7 101 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 102 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_ 103 | objectdestroy.4 104 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 105 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_ 106 | objectdestroy 107 | error.get 108 | _swift_rt_swift_getExistentialTypeMetadata 109 | _swift_rt_swift_dynamicCast 110 | __T06ResultAAO11functionKeySSfgZTm 111 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPx5ValueQz5value_tcfCTW 112 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPxAEQz5error_tcfCTW 113 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP8analysisqd__qd__5ValueQzc9ifSuccess_qd__AEQzc0F7FailuretlFTW 114 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTW 115 | __T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lsADP16debugDescriptionSSfgTW 116 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTWTm 117 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlF 118 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZTo 119 | __T0So7NSErrorC6Result16ErrorConvertibleA2cDP5errorxs0C0_p4from_tFZTW 120 | __T06Result7NoErrorOs0C0AAsADP7_domainSSfgTW 121 | __T06Result7NoErrorOs0C0AAsADP5_codeSifgTW 122 | __T06Result7NoErrorOs0C0AAsADP9_userInfoyXlSgfgTW 123 | __T06Result7NoErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 124 | __T06Result7NoErrorOs9EquatableAAsADP2eeoiSbx_xtFZTW 125 | __T06Result8AnyErrorVs0C0AAsADP7_domainSSfgTW 126 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTW 127 | __T06Result8AnyErrorVs0C0AAsADP9_userInfoyXlSgfgTW 128 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTWTm 129 | __T06Result8AnyErrorVs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 130 | __T06Result8AnyErrorVAA0C11ConvertibleA2aDP5errorxs0C0_p4from_tFZTW 131 | __T06Result8AnyErrorVs23CustomStringConvertibleAAsADP11descriptionSSfgTW 132 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP16errorDescriptionSSSgfgTW 133 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP13failureReasonSSSgfgTW 134 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgfgTW 135 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP10helpAnchorSSSgfgTW 136 | __T0So7NSErrorC6ResultE18errorFromErrorTypeABXDs0E0_pFZTo 137 | __T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 138 | __T0s11_StringCoreV6appendyABFTfq4gXn_n 139 | __T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 140 | __T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 141 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 142 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 143 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 144 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 145 | __T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 146 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 147 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 148 | __T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 149 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlFTf4g_n 150 | __T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 151 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_n 152 | __T06ResultAAO7fileKeySSfgZyt_So7NSErrorCTg5Tf4d_n 153 | __T06ResultAAO7lineKeySSfgZyt_So7NSErrorCTg5Tf4d_n 154 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_nTm 155 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 156 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZyt_AETg5Tf4ggXgXnd_n 157 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZTf4ggXgXnn_n 158 | __T06ResultAAO11descriptionSSfgSSxcfU_TA 159 | __T06ResultAAO11descriptionSSfgSSq_cfU0_TA 160 | __T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 161 | __T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 162 | _swift_rt_swift_getInitializedObjCClass 163 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 164 | __T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 165 | __T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 166 | __T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFTf4gXgXng_n 167 | ___swift_project_boxed_opaque_existential_1 168 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 169 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 170 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 171 | __T06ResultAAOwXX 172 | _swift_rt_swift_slowDealloc 173 | __T06ResultAAOwCP 174 | __T06ResultAAOwpr 175 | __T06ResultAAOwde 176 | __T06ResultAAOwxx 177 | __T06ResultAAOwCp 178 | __T06ResultAAOwcp 179 | __T06ResultAAOwca 180 | __T06ResultAAOwTk 181 | __T06ResultAAOwtk 182 | __T06ResultAAOwta 183 | __T06ResultAAOwal 184 | __T06ResultAAOwTK 185 | __T06ResultAAOwXx 186 | __T06ResultAAOwCc 187 | __T06ResultAAOwTt 188 | __T06ResultAAOwtT 189 | __T06ResultAAOwug 190 | __T06ResultAAOwup 191 | __T06ResultAAOwui 192 | _swift_rt_swift_getGenericMetadata 193 | ___swift_noop_void_return 194 | ___swift_memcpy0_1 195 | ___swift_noop_self_return 196 | ___swift_memcpy_array1_1 197 | ___swift_memmove_array1_1 198 | __T06Result7NoErrorOwug 199 | __T06Result7NoErrorOwup 200 | __T06Result7NoErrorOwui 201 | __T06Result8AnyErrorVwXX 202 | __T06Result8AnyErrorVwCP 203 | __T06Result8AnyErrorVwcp 204 | __T06Result8AnyErrorVwca 205 | ___swift_memcpy8_8 206 | __T06Result8AnyErrorVwta 207 | __T06Result8AnyErrorVwXx 208 | __T06Result8AnyErrorVwCc 209 | ___swift_memmove_array8_8 210 | __T06Result8AnyErrorVwxs 211 | __T06Result8AnyErrorVwxg 212 | _swift_rt_swift_slowAlloc 213 | __T0s23_ContiguousArrayStorageCySS_yptGMa 214 | ___swift_destroy_boxed_opaque_existential_0 215 | _swift_rt_swift_isUniquelyReferenced_nonNull_native 216 | __T06Result8AnyErrorVwCp 217 | __T0xSSIxio_xSSIxir_s5ErrorR_r0_lTRTA 218 | ___swift_destroy_boxed_opaque_existential_1 219 | __T06Result11materializeA2AOyxSo7NSErrorCGxyKclFxyKXKfu_TA 220 | __T06Result8AnyErrorVwxx 221 | __T0s5Error_pML 222 | __T0s23_ContiguousArrayStorageCySSGML 223 | __T0So7NSErrorCML 224 | __T010Foundation14LocalizedError_pML 225 | __T06ResultAAOMP 226 | __T06ResultAAOMF 227 | __T06Result7NoErrorOWV 228 | __T06Result7NoErrorOMf 229 | __T06Result7NoErrorOMF 230 | __T06Result8AnyErrorVWV 231 | __T06Result8AnyErrorVMf 232 | __T06Result8AnyErrorVMF 233 | __swift_FORCE_LOAD_$_swiftFoundation_$_Result 234 | __swift_FORCE_LOAD_$_swiftObjectiveC_$_Result 235 | __swift_FORCE_LOAD_$_swiftDarwin_$_Result 236 | __swift_FORCE_LOAD_$_swiftCoreFoundation_$_Result 237 | __swift_FORCE_LOAD_$_swiftDispatch_$_Result 238 | __T06Result7NoErrorOmML 239 | __T06Result8AnyErrorVmML 240 | __T0s23_ContiguousArrayStorageCySS_yptGML 241 | __T0SS_yptML 242 | __T0ypML 243 | __T0s37_HashableTypedNativeDictionaryStorageCySSypGML 244 | __T0yXlML 245 | __T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGML 246 | __T0s35_HasCustomAnyHashableRepresentation_pML 247 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lMA 248 | _objc_categories 249 | /Users/nachosoto/dev/other/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift 250 | __swift_destroy_boxed_opaque_existential_0 251 | Result.swift 252 | _T0s23_ContiguousArrayStorageCySS_yptGMa 253 | _T0SS_yptMa 254 | _T0ypMa 255 | _T06Result8AnyErrorVMa 256 | get_field_types_AnyError 257 | _T0s5Error_pMa 258 | _T06Result8AnyErrorVwxg 259 | _T06Result8AnyErrorVwxs 260 | __swift_memmove_array8_8 261 | _T06Result8AnyErrorVwCc 262 | _T06Result8AnyErrorVwXx 263 | _T06Result8AnyErrorVwta 264 | __swift_memcpy8_8 265 | _T06Result8AnyErrorVwca 266 | _T06Result8AnyErrorVwcp 267 | _T06Result8AnyErrorVwCP 268 | _T06Result8AnyErrorVwXX 269 | _T06Result7NoErrorOMa 270 | get_field_types_NoError 271 | _T06Result7NoErrorOwui 272 | _T06Result7NoErrorOwup 273 | _T06Result7NoErrorOwug 274 | __swift_memmove_array1_1 275 | __swift_memcpy_array1_1 276 | __swift_noop_self_return 277 | __swift_memcpy0_1 278 | __swift_noop_void_return 279 | create_generic_metadata_Result 280 | _T06ResultAAOwui 281 | _T06ResultAAOwup 282 | _T06ResultAAOwug 283 | _T06ResultAAOwtT 284 | _T06ResultAAOwTt 285 | _T06ResultAAOwCc 286 | _T06ResultAAOwXx 287 | _T06ResultAAOwTK 288 | _T06ResultAAOwal 289 | _T06ResultAAOwta 290 | _T06ResultAAOwtk 291 | _T06ResultAAOwTk 292 | _T06ResultAAOwca 293 | _T06ResultAAOwcp 294 | _T06ResultAAOwCp 295 | _T06ResultAAOwxx 296 | _T06ResultAAOwde 297 | _T06ResultAAOwpr 298 | _T06ResultAAOwCP 299 | _T06ResultAAOwXX 300 | get_field_types_Result 301 | _T06Result8AnyErrorV10Foundation09LocalizedC0AAWa 302 | _T06Result8AnyErrorVs23CustomStringConvertibleAAWa 303 | _T06Result8AnyErrorVAA0C11ConvertibleAAWa 304 | _T06Result7NoErrorOs9EquatableAAWa 305 | _T06Result7NoErrorOs0C0AAWa 306 | _T0So7NSErrorC6Result16ErrorConvertibleACWa 307 | _T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lWa 308 | _T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lWa 309 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lWa 310 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 311 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 312 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 313 | _T06Result8AnyErrorVs0C0AAWa 314 | __swift_project_boxed_opaque_existential_1 315 | try 316 | _T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFAEyKXKfu_ 317 | error 318 | _T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 319 | init 320 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5 321 | _T0S2Sx26stringInterpolationSegment_tclufCTfq4gn_n 322 | _allocateUninitializedArray 323 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_Tg5 324 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_Tg5 325 | _T0s23_ContiguousArrayStorageCySSGMa 326 | _T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 327 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 328 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 329 | _T06ResultAAOMa 330 | _T0So7NSErrorCMa 331 | objectdestroy.20 332 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 333 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_ 334 | objectdestroy.14 335 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 336 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTR 337 | objectdestroy.11 338 | _T06ResultAAO11descriptionSSfgSSq_cfU0_TA 339 | _T06ResultAAO11descriptionSSfgSSq_cfU0_ 340 | objectdestroy.8 341 | _T06ResultAAO11descriptionSSfgSSxcfU_TA 342 | _T06ResultAAO11descriptionSSfgSSxcfU_ 343 | objectdestroy.2 344 | _dictionaryUpCast 345 | subscript.set 346 | _T0s10DictionaryVAByxq_GSayx_q_tG17dictionaryLiterald_tcfCTfq4gn_nSS_ypTg5 347 | _T0s23_ContiguousArrayStorageCfDSS_ypt_Tg5 348 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5 349 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_ypt_Tg5 350 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_ypt_Tg5 351 | lineKey.get 352 | fileKey.get 353 | functionKey.get 354 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 355 | _T0SSs9EquatablessAAP2eeoiSbx_xtFZTW 356 | _T0Sa15_checkSubscripts16_DependenceTokenVSi_Sb20wasNativeTypeCheckedtFSS_ypt_Tg5 357 | _T0s12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBoundsySi_Sb03wasfgH0tFSS_ypt_Tg5 358 | _T0Sa11_getElementxSi_Sb20wasNativeTypeCheckeds16_DependenceTokenV22matchingSubscriptChecktFSS_ypt_Tg5 359 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nyp_Tg5 360 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nSS_Tg5 361 | _T0SSs8HashablessAAP9hashValueSifgTW 362 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5 363 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5Tf4nnd_n 364 | _T0Sp10initializeyx2to_Si5counttFSu_Tgq5 365 | _T0s37_HashableTypedNativeDictionaryStorageCySSypGMa 366 | _T0Sa9_getCountSiyFSS_ypt_Tg5 367 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 368 | _T0SSs20TextOutputStreamablessAAP5writeyqd__z2to_ts0aB6StreamRd__lFTWSS_Tg5 369 | cast 370 | _T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 371 | _T0s35_HasCustomAnyHashableRepresentation_pMa 372 | _T0yXlMa 373 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 374 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 375 | _T0s11AnyHashableVs9EquatablessACP2eeoiSbx_xtFZTW 376 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_ns11AnyHashableV_Tg5 377 | _T0s11AnyHashableVs0B0ssACP9hashValueSifgTW 378 | _T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 379 | _T0s23_NativeDictionaryBufferV5indexs01_aB5IndexVyxq_GAF5after_tFSS_ypTg5 380 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5 381 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5Tf4nnd_n 382 | _T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGMa 383 | _T0s10DictionaryV5countSifgSS_ypTg5 384 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 385 | _T0s24_CocoaDictionaryIteratorC4nextyXl_yXltSgyF 386 | _T0Sv4loadxSi14fromByteOffset_xm2astlFs9UnmanagedVyyXlG_Tgq5Tfq4ndn_n 387 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 388 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 389 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 390 | _T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 391 | _T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 392 | _T0s11_StringCoreV6appendyABFTfq4gXn_n 393 | _T0s20ManagedBufferPointerV08_elementC0Spyq_Gfgs05_HeapB6HeaderVys07_StringB5IVarsVG_s6UInt16VTgq5 394 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFTfq4x_n 395 | _T0s8SequencePsE8containsS2b7ElementQzKc5where_tKFSRys6UInt16VG_Tgq505_T0s6E37VSbs5Error_pIxydzo_ABSbsAC_pIxidzo_TRAHSbs0H0_pIxydzo_Tfq1cn_nTfq4ng_n 396 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFSbs6UInt16VcfU_ 397 | _T0S2RyxGSPyxGSg5start_Si5counttcfCs6UInt16V_Tgq5Tfq4nnd_n 398 | _T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 399 | Failure 400 | Success 401 | helpAnchor.get 402 | recoverySuggestion.get 403 | failureReason.get 404 | errorDescription.get 405 | _T010Foundation14LocalizedError_pMa 406 | description.get 407 | _getEmbeddedNSError 408 | _code.get 409 | _domain.get 410 | _T06Result8AnyErrorVmMa 411 | _userInfo.get 412 | _T06Result7NoErrorOmMa 413 | materialize 414 | analysis 415 | debugDescription.get 416 | errorDomain.get 417 | dematerialize 418 | _stdlib_getErrorEmbeddedNSError 419 | _T036swift_stdlib_getErrorEmbeddedNSErrorTfq4g_n 420 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 421 | /Users/nachosoto/Library/Developer/Xcode/DerivedData/Build/Intermediates/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/Result_vers.c 422 | __ZL15__ARCLite__loadv 423 | __ZL58__arclite_NSMutableDictionary__setObject_forKeyedSubscriptP19NSMutableDictionaryP13objc_selectorP11objc_objectS4_ 424 | __ZL22add_image_hook_swiftV1PK11mach_headerl 425 | __ZL42__arclite_NSUndoManagerProxy_isKindOfClassP11objc_objectP13objc_selectorP10objc_class 426 | __ZL13replaceMethodP10objc_classP13objc_selectorPFP11objc_objectS4_S2_zEPS6_ 427 | __ZL30__arclite_NSManagedObject_initP11objc_objectP13objc_selector 428 | __ZL41__arclite_NSManagedObject_allocWithEntityP11objc_objectP13objc_selectorS0_ 429 | __ZL36__arclite_NSManagedObject_allocBatchP11objc_objectP13objc_selectorPS0_S0_j 430 | __ZL37__arclite_NSKKMS_fastIndexForKnownKeyP11objc_objectP13objc_selectorS0_ 431 | __ZL28__arclite_NSKKMS_indexForKeyP11objc_objectP13objc_selectorS0_ 432 | __ZL29__arclite_NSKKsD_objectForKeyP11objc_objectP13objc_selectorS0_ 433 | __ZL35__arclite_NSKKsD_removeObjectForKeyP11objc_objectP13objc_selectorS0_ 434 | __ZL33__arclite_NSKKsD_setObject_forKeyP11objc_objectP13objc_selectorS0_S0_ 435 | __ZL41__arclite_NSKKsD_addEntriesFromDictionaryP11objc_objectP13objc_selectorP12NSDictionary 436 | __ZL28__arclite_objc_readClassPairP10objc_classPK15objc_image_info 437 | __ZL32__arclite_objc_allocateClassPairP10objc_classPKcm 438 | __ZL32__arclite_object_getIndexedIvarsP11objc_object 439 | __ZL23__arclite_objc_getClassPKc 440 | __ZL27__arclite_objc_getMetaClassPKc 441 | __ZL31__arclite_objc_getRequiredClassPKc 442 | __ZL26__arclite_objc_lookUpClassPKc 443 | __ZL26__arclite_objc_getProtocolPKc 444 | __ZL23__arclite_class_getNameP10objc_class 445 | __ZL26__arclite_protocol_getNameP8Protocol 446 | __ZL37__arclite_objc_copyClassNamesForImagePKcPj 447 | __ZL17transcribeMethodsP10objc_classP15glue_class_ro_t 448 | __ZL19transcribeProtocolsP10objc_classP15glue_class_ro_t 449 | __ZL20transcribePropertiesP10objc_classP15glue_class_ro_t 450 | __ZL14initialize_impP11objc_objectP13objc_selector 451 | __ZL18allocateMaybeSwiftP18glue_swift_class_tm 452 | __ZL22copySwiftV1MangledNamePKcb 453 | __ZL13demangledNamePKcb 454 | __ZL16scanMangledFieldRPKcS0_S1_Ri 455 | __ZL30arclite_uninitialized_functionv 456 | __ZL12cxxConstructP11objc_object 457 | __ZL20fixStringForCoreDataP11objc_object 458 | _OBJC_METACLASS_$___ARCLite__ 459 | __ZL24OBJC_CLASS_$___ARCLite__ 460 | __ZL31OBJC_METACLASS_RO_$___ARCLite__ 461 | __non_lazy_classes 462 | __ZL27OBJC_CLASS_RO_$___ARCLite__ 463 | __ZL11_class_name 464 | __ZL32OBJC_$_CLASS_METHODS___ARCLite__ 465 | __ZL17_load_method_name 466 | __ZL17_load_method_type 467 | l_OBJC_PROTOCOL_$___ARCLiteKeyedSubscripting__ 468 | l_OBJC_LABEL_PROTOCOL_$___ARCLiteKeyedSubscripting__ 469 | l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteKeyedSubscripting__ 470 | __ZL30NSUndoManagerProxy_targetClass 471 | __ZL29original_NSManagedObject_init 472 | __ZL40original_NSManagedObject_allocWithEntity 473 | __ZL35original_NSManagedObject_allocBatch 474 | __ZL25NSMutableDictionary_class 475 | __ZL22NSConstantString_class 476 | __ZL14NSString_class 477 | __ZL36original_NSKKMS_fastIndexForKnownKey 478 | __ZL27original_NSKKMS_indexForKey 479 | __ZL28original_NSKKsD_objectForKey 480 | __ZL34original_NSKKsD_removeObjectForKey 481 | __ZL32original_NSKKsD_setObject_forKey 482 | __ZL40original_NSKKsD_addEntriesFromDictionary 483 | __ZZL22add_image_hook_swiftV1PK11mach_headerlE7patches 484 | __ZGVZL22add_image_hook_swiftV1PK11mach_headerlE7patches 485 | __ZL31original_objc_allocateClassPair 486 | __ZL31original_object_getIndexedIvars 487 | __ZL22original_objc_getClass 488 | __ZL26original_objc_getMetaClass 489 | __ZL30original_objc_getRequiredClass 490 | __ZL25original_objc_lookUpClass 491 | __ZL25original_objc_getProtocol 492 | __ZL22original_class_getName 493 | __ZL25original_protocol_getName 494 | __ZL36original_objc_copyClassNamesForImage 495 | __ZL12demangleLock 496 | __ZL9Demangled 497 | Apple LLVM version 9.0.0 (clang-900.0.39) 498 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -Wno-trigraphs -fno-exceptions -fno-rtti -fno-sanitize=vptr -mpascal-strings -Os -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -D NDEBUG=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=4.3 -g -fno-threadsafe-statics -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -fembed-bitcode=all -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-generated-files.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-own-target-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-all-target-headers.hmap -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-project-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts/include -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources/arm64 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources -F/Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk/System/Library/PrivateFrameworks -Wall -Wextra -Wno-gcc-compat -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -MMD -MT dependencies -MF /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.d --serialize-diagnostics /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.dia -c /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67/source/arclite.mm -o /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.o -mlinker-version=305 499 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67/source/arclite.mm 500 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67 501 | fixStringForCoreData 502 | cxxConstruct 503 | arclite_uninitialized_function 504 | scanMangledField 505 | isdigit 506 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk/usr/include/ctype.h 507 | __isctype 508 | demangledName 509 | copySwiftV1DemangledName 510 | copySwiftV1MangledName 511 | allocateMaybeSwift 512 | word_align 513 | isSwift 514 | initialize_imp 515 | transcribeProperties 516 | property_list_nth 517 | transcribeProtocols 518 | transcribeMethods 519 | data 520 | method_list_nth 521 | __arclite_objc_copyClassNamesForImage 522 | __arclite_protocol_getName 523 | __arclite_class_getName 524 | __arclite_objc_getProtocol 525 | __arclite_objc_lookUpClass 526 | __arclite_objc_getRequiredClass 527 | __arclite_objc_getMetaClass 528 | __arclite_objc_getClass 529 | __arclite_object_getIndexedIvars 530 | __arclite_objc_allocateClassPair 531 | metaclass 532 | __arclite_objc_readClassPair 533 | transcribeIvars 534 | ivar_list_nth 535 | max 536 | alignment 537 | ro 538 | fastFlags 539 | __arclite_NSKKsD_addEntriesFromDictionary 540 | __arclite_NSKKsD_setObject_forKey 541 | __arclite_NSKKsD_removeObjectForKey 542 | __arclite_NSKKsD_objectForKey 543 | __arclite_NSKKMS_indexForKey 544 | __arclite_NSKKMS_fastIndexForKnownKey 545 | __arclite_NSManagedObject_allocBatch 546 | __arclite_NSManagedObject_allocWithEntity 547 | __arclite_NSManagedObject_init 548 | replaceMethod 549 | __arclite_NSUndoManagerProxy_isKindOfClass 550 | add_image_hook_swiftV1 551 | patch_lazy_pointers 552 | patch_t 553 | patch_t 554 | patch_t 555 | patch_t 556 | patch_t 557 | patch_t 558 | patch_t 559 | patch_t 560 | __arclite_NSMutableDictionary__setObject_forKeyedSubscript 561 | __ARCLite__load 562 | install_swiftV1 563 | install_dict_nil_value 564 | addOrReplaceMethod 565 | keyedGetter 566 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/6F4CA3DD-D901-315A-8882-4397EA1B64AE.bcsymbolmap: -------------------------------------------------------------------------------- 1 | BCSymbolMap Version: 2.0 2 | _swift_rt_swift_retain 3 | _swift_rt_swift_release 4 | _swift_rt_swift_deallocObject 5 | _swift_rt_swift_allocObject 6 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 7 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 8 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 9 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 10 | __T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 11 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 12 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 13 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 14 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 15 | __T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 16 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 17 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 18 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 19 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfKcfU0_TA 20 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TATm 21 | _swift_rt_swift_getEnumCaseSinglePayload 22 | _swift_rt_swift_storeEnumTagSinglePayload 23 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 24 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 25 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 26 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_TA 27 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TATm 28 | __T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 29 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTW 30 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5errorAEQzSgfgTW 31 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTWTm 32 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 33 | __T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 34 | __T06Result2qqoixx_xyXKtAA0A8ProtocolRzlFxyXKfu_TA 35 | _swift_rt_swift_retain_n 36 | _swift_rt_swift_release_n 37 | __T06Result0A8Protocol_pMF 38 | __T06Result16ErrorConvertible_pMF 39 | __T06Result24ErrorProtocolConvertible_pMF 40 | ___swift_reflection_version 41 | Apple LLVM version 9.0.0 (clang-900.0.37) 42 | -emit-bc /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk -I /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos -F /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos -application-extension -g -import-underlying-module -module-cache-path /Users/spanage/Library/Developer/Xcode/DerivedData/ModuleCache -swift-version 3 -serialize-debugging-options -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-generated-files.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-own-target-headers.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Result-project-headers.hmap -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Products/Release-iphoneos/include -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/arm64 -Xcc -I/Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result -emit-module-doc-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftdoc -serialize-diagnostics-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.dia -O -module-name Result -emit-module-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftmodule -emit-objc-header-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result-Swift.h -emit-dependencies-path /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.d -num-threads 4 -o /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.bc -o /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift 43 | 44 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result 45 | Apple Swift version 4.0 effective-3.2 (swiftlang-900.0.65 clang-900.0.37) 46 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift 47 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 48 | ResultProtocol.swift 49 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result 50 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTR 51 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 52 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_ 53 | objectdestroy.49 54 | value.get 55 | _T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZfA_ 56 | errorFromErrorType 57 | recoverWith 58 | ?? 59 | recover 60 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 61 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_ 62 | != 63 | == 64 | >>- 65 | flatMap 66 | &&& 67 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 68 | _T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 69 | tryMap 70 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 71 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_ 72 | objectdestroy.37 73 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 74 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_ 75 | objectdestroy.34 76 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 77 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_ 78 | objectdestroy.28 79 | bimap 80 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 81 | objectdestroy.25 82 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 83 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_ 84 | flatMapError 85 | mapError 86 | objectdestroy.19 87 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 88 | fanout 89 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 90 | objectdestroy.16 91 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 92 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_ 93 | objectdestroy.13 94 | map 95 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 96 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_ 97 | objectdestroy.10 98 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 99 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_ 100 | objectdestroy.7 101 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 102 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_ 103 | objectdestroy.4 104 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 105 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_ 106 | objectdestroy 107 | error.get 108 | _swift_rt_swift_getExistentialTypeMetadata 109 | _swift_rt_swift_dynamicCast 110 | __T06ResultAAO11functionKeySSfgZTm 111 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPx5ValueQz5value_tcfCTW 112 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPxAEQz5error_tcfCTW 113 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP8analysisqd__qd__5ValueQzc9ifSuccess_qd__AEQzc0F7FailuretlFTW 114 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTW 115 | __T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lsADP16debugDescriptionSSfgTW 116 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTWTm 117 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlF 118 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZTo 119 | __T0So7NSErrorC6Result16ErrorConvertibleA2cDP5errorxs0C0_p4from_tFZTW 120 | __T06Result7NoErrorOs0C0AAsADP7_domainSSfgTW 121 | __T06Result7NoErrorOs0C0AAsADP5_codeSifgTW 122 | __T06Result7NoErrorOs0C0AAsADP9_userInfoyXlSgfgTW 123 | __T06Result7NoErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 124 | __T06Result7NoErrorOs9EquatableAAsADP2eeoiSbx_xtFZTW 125 | __T06Result8AnyErrorVs0C0AAsADP7_domainSSfgTW 126 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTW 127 | __T06Result8AnyErrorVs0C0AAsADP9_userInfoyXlSgfgTW 128 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTWTm 129 | __T06Result8AnyErrorVs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 130 | __T06Result8AnyErrorVAA0C11ConvertibleA2aDP5errorxs0C0_p4from_tFZTW 131 | __T06Result8AnyErrorVs23CustomStringConvertibleAAsADP11descriptionSSfgTW 132 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP16errorDescriptionSSSgfgTW 133 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP13failureReasonSSSgfgTW 134 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgfgTW 135 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP10helpAnchorSSSgfgTW 136 | __T0So7NSErrorC6ResultE18errorFromErrorTypeABXDs0E0_pFZTo 137 | __T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 138 | __T0s11_StringCoreV6appendyABFTfq4gXn_n 139 | __T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 140 | __T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 141 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 142 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 143 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 144 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 145 | __T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 146 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 147 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 148 | __T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 149 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlFTf4g_n 150 | __T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 151 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_n 152 | __T06ResultAAO7fileKeySSfgZyt_So7NSErrorCTg5Tf4d_n 153 | __T06ResultAAO7lineKeySSfgZyt_So7NSErrorCTg5Tf4d_n 154 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_nTm 155 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 156 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZyt_AETg5Tf4ggXgXnd_n 157 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZTf4ggXgXnn_n 158 | __T06ResultAAO11descriptionSSfgSSxcfU_TA 159 | __T06ResultAAO11descriptionSSfgSSq_cfU0_TA 160 | __T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 161 | __T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 162 | _swift_rt_swift_getInitializedObjCClass 163 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 164 | __T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 165 | __T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 166 | __T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFTf4gXgXng_n 167 | ___swift_project_boxed_opaque_existential_1 168 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 169 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 170 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 171 | __T06ResultAAOwXX 172 | _swift_rt_swift_slowDealloc 173 | __T06ResultAAOwCP 174 | __T06ResultAAOwpr 175 | __T06ResultAAOwde 176 | __T06ResultAAOwxx 177 | __T06ResultAAOwCp 178 | __T06ResultAAOwcp 179 | __T06ResultAAOwca 180 | __T06ResultAAOwTk 181 | __T06ResultAAOwtk 182 | __T06ResultAAOwta 183 | __T06ResultAAOwal 184 | __T06ResultAAOwTK 185 | __T06ResultAAOwXx 186 | __T06ResultAAOwCc 187 | __T06ResultAAOwTt 188 | __T06ResultAAOwtT 189 | __T06ResultAAOwug 190 | __T06ResultAAOwup 191 | __T06ResultAAOwui 192 | _swift_rt_swift_getGenericMetadata 193 | ___swift_noop_void_return 194 | ___swift_memcpy0_1 195 | ___swift_noop_self_return 196 | ___swift_memcpy_array1_1 197 | ___swift_memmove_array1_1 198 | __T06Result7NoErrorOwug 199 | __T06Result7NoErrorOwup 200 | __T06Result7NoErrorOwui 201 | __T06Result8AnyErrorVwXX 202 | __T06Result8AnyErrorVwCP 203 | __T06Result8AnyErrorVwcp 204 | __T06Result8AnyErrorVwca 205 | ___swift_memcpy8_8 206 | __T06Result8AnyErrorVwta 207 | __T06Result8AnyErrorVwXx 208 | __T06Result8AnyErrorVwCc 209 | ___swift_memmove_array8_8 210 | __T06Result8AnyErrorVwxs 211 | __T06Result8AnyErrorVwxg 212 | _swift_rt_swift_slowAlloc 213 | __T0s23_ContiguousArrayStorageCySS_yptGMa 214 | ___swift_destroy_boxed_opaque_existential_0 215 | _swift_rt_swift_isUniquelyReferenced_nonNull_native 216 | __T06Result8AnyErrorVwCp 217 | __T0xSSIxio_xSSIxir_s5ErrorR_r0_lTRTA 218 | ___swift_destroy_boxed_opaque_existential_1 219 | __T06Result11materializeA2AOyxSo7NSErrorCGxyKclFxyKXKfu_TA 220 | __T06Result8AnyErrorVwxx 221 | __T0s5Error_pML 222 | __T0s23_ContiguousArrayStorageCySSGML 223 | __T0So7NSErrorCML 224 | __T010Foundation14LocalizedError_pML 225 | __T06ResultAAOMP 226 | __T06ResultAAOMF 227 | __T06Result7NoErrorOWV 228 | __T06Result7NoErrorOMf 229 | __T06Result7NoErrorOMF 230 | __T06Result8AnyErrorVWV 231 | __T06Result8AnyErrorVMf 232 | __T06Result8AnyErrorVMF 233 | __swift_FORCE_LOAD_$_swiftFoundation_$_Result 234 | __swift_FORCE_LOAD_$_swiftObjectiveC_$_Result 235 | __swift_FORCE_LOAD_$_swiftDarwin_$_Result 236 | __swift_FORCE_LOAD_$_swiftCoreFoundation_$_Result 237 | __swift_FORCE_LOAD_$_swiftDispatch_$_Result 238 | __T06Result7NoErrorOmML 239 | __T06Result8AnyErrorVmML 240 | __T0s23_ContiguousArrayStorageCySS_yptGML 241 | __T0SS_yptML 242 | __T0ypML 243 | __T0s37_HashableTypedNativeDictionaryStorageCySSypGML 244 | __T0yXlML 245 | __T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGML 246 | __T0s35_HasCustomAnyHashableRepresentation_pML 247 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lMA 248 | _objc_categories 249 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift 250 | __swift_destroy_boxed_opaque_existential_0 251 | Result.swift 252 | _T0s23_ContiguousArrayStorageCySS_yptGMa 253 | _T0SS_yptMa 254 | _T0ypMa 255 | _T06Result8AnyErrorVMa 256 | get_field_types_AnyError 257 | _T0s5Error_pMa 258 | _T06Result8AnyErrorVwxg 259 | _T06Result8AnyErrorVwxs 260 | __swift_memmove_array8_8 261 | _T06Result8AnyErrorVwCc 262 | _T06Result8AnyErrorVwXx 263 | _T06Result8AnyErrorVwta 264 | __swift_memcpy8_8 265 | _T06Result8AnyErrorVwca 266 | _T06Result8AnyErrorVwcp 267 | _T06Result8AnyErrorVwCP 268 | _T06Result8AnyErrorVwXX 269 | _T06Result7NoErrorOMa 270 | get_field_types_NoError 271 | _T06Result7NoErrorOwui 272 | _T06Result7NoErrorOwup 273 | _T06Result7NoErrorOwug 274 | __swift_memmove_array1_1 275 | __swift_memcpy_array1_1 276 | __swift_noop_self_return 277 | __swift_memcpy0_1 278 | __swift_noop_void_return 279 | create_generic_metadata_Result 280 | _T06ResultAAOwui 281 | _T06ResultAAOwup 282 | _T06ResultAAOwug 283 | _T06ResultAAOwtT 284 | _T06ResultAAOwTt 285 | _T06ResultAAOwCc 286 | _T06ResultAAOwXx 287 | _T06ResultAAOwTK 288 | _T06ResultAAOwal 289 | _T06ResultAAOwta 290 | _T06ResultAAOwtk 291 | _T06ResultAAOwTk 292 | _T06ResultAAOwca 293 | _T06ResultAAOwcp 294 | _T06ResultAAOwCp 295 | _T06ResultAAOwxx 296 | _T06ResultAAOwde 297 | _T06ResultAAOwpr 298 | _T06ResultAAOwCP 299 | _T06ResultAAOwXX 300 | get_field_types_Result 301 | _T06Result8AnyErrorV10Foundation09LocalizedC0AAWa 302 | _T06Result8AnyErrorVs23CustomStringConvertibleAAWa 303 | _T06Result8AnyErrorVAA0C11ConvertibleAAWa 304 | _T06Result7NoErrorOs9EquatableAAWa 305 | _T06Result7NoErrorOs0C0AAWa 306 | _T0So7NSErrorC6Result16ErrorConvertibleACWa 307 | _T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lWa 308 | _T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lWa 309 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lWa 310 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 311 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 312 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 313 | _T06Result8AnyErrorVs0C0AAWa 314 | __swift_project_boxed_opaque_existential_1 315 | try 316 | _T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFAEyKXKfu_ 317 | error 318 | _T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 319 | init 320 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5 321 | _T0S2Sx26stringInterpolationSegment_tclufCTfq4gn_n 322 | _allocateUninitializedArray 323 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_Tg5 324 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_Tg5 325 | _T0s23_ContiguousArrayStorageCySSGMa 326 | _T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 327 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 328 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 329 | _T06ResultAAOMa 330 | _T0So7NSErrorCMa 331 | objectdestroy.20 332 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 333 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_ 334 | objectdestroy.14 335 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 336 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTR 337 | objectdestroy.11 338 | _T06ResultAAO11descriptionSSfgSSq_cfU0_TA 339 | _T06ResultAAO11descriptionSSfgSSq_cfU0_ 340 | objectdestroy.8 341 | _T06ResultAAO11descriptionSSfgSSxcfU_TA 342 | _T06ResultAAO11descriptionSSfgSSxcfU_ 343 | objectdestroy.2 344 | _dictionaryUpCast 345 | subscript.set 346 | _T0s10DictionaryVAByxq_GSayx_q_tG17dictionaryLiterald_tcfCTfq4gn_nSS_ypTg5 347 | _T0s23_ContiguousArrayStorageCfDSS_ypt_Tg5 348 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5 349 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_ypt_Tg5 350 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_ypt_Tg5 351 | lineKey.get 352 | fileKey.get 353 | functionKey.get 354 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 355 | _T0SSs9EquatablessAAP2eeoiSbx_xtFZTW 356 | _T0Sa15_checkSubscripts16_DependenceTokenVSi_Sb20wasNativeTypeCheckedtFSS_ypt_Tg5 357 | _T0s12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBoundsySi_Sb03wasfgH0tFSS_ypt_Tg5 358 | _T0Sa11_getElementxSi_Sb20wasNativeTypeCheckeds16_DependenceTokenV22matchingSubscriptChecktFSS_ypt_Tg5 359 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nyp_Tg5 360 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nSS_Tg5 361 | _T0SSs8HashablessAAP9hashValueSifgTW 362 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5 363 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5Tf4nnd_n 364 | _T0Sp10initializeyx2to_Si5counttFSu_Tgq5 365 | _T0s37_HashableTypedNativeDictionaryStorageCySSypGMa 366 | _T0Sa9_getCountSiyFSS_ypt_Tg5 367 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 368 | _T0SSs20TextOutputStreamablessAAP5writeyqd__z2to_ts0aB6StreamRd__lFTWSS_Tg5 369 | cast 370 | _T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 371 | _T0s35_HasCustomAnyHashableRepresentation_pMa 372 | _T0yXlMa 373 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 374 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 375 | _T0s11AnyHashableVs9EquatablessACP2eeoiSbx_xtFZTW 376 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_ns11AnyHashableV_Tg5 377 | _T0s11AnyHashableVs0B0ssACP9hashValueSifgTW 378 | _T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 379 | _T0s23_NativeDictionaryBufferV5indexs01_aB5IndexVyxq_GAF5after_tFSS_ypTg5 380 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5 381 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5Tf4nnd_n 382 | _T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGMa 383 | _T0s10DictionaryV5countSifgSS_ypTg5 384 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 385 | _T0s24_CocoaDictionaryIteratorC4nextyXl_yXltSgyF 386 | _T0Sv4loadxSi14fromByteOffset_xm2astlFs9UnmanagedVyyXlG_Tgq5Tfq4ndn_n 387 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 388 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 389 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 390 | _T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 391 | _T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 392 | _T0s11_StringCoreV6appendyABFTfq4gXn_n 393 | _T0s20ManagedBufferPointerV08_elementC0Spyq_Gfgs05_HeapB6HeaderVys07_StringB5IVarsVG_s6UInt16VTgq5 394 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFTfq4x_n 395 | _T0s8SequencePsE8containsS2b7ElementQzKc5where_tKFSRys6UInt16VG_Tgq505_T0s6E37VSbs5Error_pIxydzo_ABSbsAC_pIxidzo_TRAHSbs0H0_pIxydzo_Tfq1cn_nTfq4ng_n 396 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFSbs6UInt16VcfU_ 397 | _T0S2RyxGSPyxGSg5start_Si5counttcfCs6UInt16V_Tgq5Tfq4nnd_n 398 | _T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 399 | Failure 400 | Success 401 | helpAnchor.get 402 | recoverySuggestion.get 403 | failureReason.get 404 | errorDescription.get 405 | _T010Foundation14LocalizedError_pMa 406 | description.get 407 | _getEmbeddedNSError 408 | _code.get 409 | _domain.get 410 | _T06Result8AnyErrorVmMa 411 | _userInfo.get 412 | _T06Result7NoErrorOmMa 413 | materialize 414 | analysis 415 | debugDescription.get 416 | errorDomain.get 417 | dematerialize 418 | _stdlib_getErrorEmbeddedNSError 419 | _T036swift_stdlib_getErrorEmbeddedNSErrorTfq4g_n 420 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 421 | /Users/spanage/Library/Developer/Xcode/DerivedData/Result-cbaocyshffhwxeccitmysbaydjwv/Build/Intermediates.noindex/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/Result_vers.c 422 | __ZL15__ARCLite__loadv 423 | __ZL58__arclite_NSMutableDictionary__setObject_forKeyedSubscriptP19NSMutableDictionaryP13objc_selectorP11objc_objectS4_ 424 | __ZL22add_image_hook_swiftV1PK11mach_headerl 425 | __ZL42__arclite_NSUndoManagerProxy_isKindOfClassP11objc_objectP13objc_selectorP10objc_class 426 | __ZL13replaceMethodP10objc_classP13objc_selectorPFP11objc_objectS4_S2_zEPS6_ 427 | __ZL30__arclite_NSManagedObject_initP11objc_objectP13objc_selector 428 | __ZL41__arclite_NSManagedObject_allocWithEntityP11objc_objectP13objc_selectorS0_ 429 | __ZL36__arclite_NSManagedObject_allocBatchP11objc_objectP13objc_selectorPS0_S0_j 430 | __ZL37__arclite_NSKKMS_fastIndexForKnownKeyP11objc_objectP13objc_selectorS0_ 431 | __ZL28__arclite_NSKKMS_indexForKeyP11objc_objectP13objc_selectorS0_ 432 | __ZL29__arclite_NSKKsD_objectForKeyP11objc_objectP13objc_selectorS0_ 433 | __ZL35__arclite_NSKKsD_removeObjectForKeyP11objc_objectP13objc_selectorS0_ 434 | __ZL33__arclite_NSKKsD_setObject_forKeyP11objc_objectP13objc_selectorS0_S0_ 435 | __ZL41__arclite_NSKKsD_addEntriesFromDictionaryP11objc_objectP13objc_selectorP12NSDictionary 436 | __ZL28__arclite_objc_readClassPairP10objc_classPK15objc_image_info 437 | __ZL32__arclite_objc_allocateClassPairP10objc_classPKcm 438 | __ZL32__arclite_object_getIndexedIvarsP11objc_object 439 | __ZL23__arclite_objc_getClassPKc 440 | __ZL27__arclite_objc_getMetaClassPKc 441 | __ZL31__arclite_objc_getRequiredClassPKc 442 | __ZL26__arclite_objc_lookUpClassPKc 443 | __ZL26__arclite_objc_getProtocolPKc 444 | __ZL23__arclite_class_getNameP10objc_class 445 | __ZL26__arclite_protocol_getNameP8Protocol 446 | __ZL37__arclite_objc_copyClassNamesForImagePKcPj 447 | __ZL17transcribeMethodsP10objc_classP15glue_class_ro_t 448 | __ZL19transcribeProtocolsP10objc_classP15glue_class_ro_t 449 | __ZL20transcribePropertiesP10objc_classP15glue_class_ro_t 450 | __ZL14initialize_impP11objc_objectP13objc_selector 451 | __ZL18allocateMaybeSwiftP18glue_swift_class_tm 452 | __ZL22copySwiftV1MangledNamePKcb 453 | __ZL13demangledNamePKcb 454 | __ZL16scanMangledFieldRPKcS0_S1_Ri 455 | __ZL30arclite_uninitialized_functionv 456 | __ZL12cxxConstructP11objc_object 457 | __ZL20fixStringForCoreDataP11objc_object 458 | _OBJC_METACLASS_$___ARCLite__ 459 | __ZL24OBJC_CLASS_$___ARCLite__ 460 | __ZL31OBJC_METACLASS_RO_$___ARCLite__ 461 | __non_lazy_classes 462 | __ZL27OBJC_CLASS_RO_$___ARCLite__ 463 | __ZL11_class_name 464 | __ZL32OBJC_$_CLASS_METHODS___ARCLite__ 465 | __ZL17_load_method_name 466 | __ZL17_load_method_type 467 | l_OBJC_PROTOCOL_$___ARCLiteKeyedSubscripting__ 468 | l_OBJC_LABEL_PROTOCOL_$___ARCLiteKeyedSubscripting__ 469 | l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteKeyedSubscripting__ 470 | __ZL30NSUndoManagerProxy_targetClass 471 | __ZL29original_NSManagedObject_init 472 | __ZL40original_NSManagedObject_allocWithEntity 473 | __ZL35original_NSManagedObject_allocBatch 474 | __ZL25NSMutableDictionary_class 475 | __ZL22NSConstantString_class 476 | __ZL14NSString_class 477 | __ZL36original_NSKKMS_fastIndexForKnownKey 478 | __ZL27original_NSKKMS_indexForKey 479 | __ZL28original_NSKKsD_objectForKey 480 | __ZL34original_NSKKsD_removeObjectForKey 481 | __ZL32original_NSKKsD_setObject_forKey 482 | __ZL40original_NSKKsD_addEntriesFromDictionary 483 | __ZZL22add_image_hook_swiftV1PK11mach_headerlE7patches 484 | __ZGVZL22add_image_hook_swiftV1PK11mach_headerlE7patches 485 | __ZL31original_objc_allocateClassPair 486 | __ZL31original_object_getIndexedIvars 487 | __ZL22original_objc_getClass 488 | __ZL26original_objc_getMetaClass 489 | __ZL30original_objc_getRequiredClass 490 | __ZL25original_objc_lookUpClass 491 | __ZL25original_objc_getProtocol 492 | __ZL22original_class_getName 493 | __ZL25original_protocol_getName 494 | __ZL36original_objc_copyClassNamesForImage 495 | __ZL12demangleLock 496 | __ZL9Demangled 497 | Apple LLVM version 9.0.0 (clang-900.0.35) 498 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -Wno-trigraphs -fno-exceptions -fno-rtti -fno-sanitize=vptr -mpascal-strings -Os -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -D NDEBUG=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=4.3 -g -fno-threadsafe-statics -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -fembed-bitcode=all -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-generated-files.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-own-target-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-all-target-headers.hmap -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-project-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts/include -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources/arm64 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources -F/Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk/System/Library/PrivateFrameworks -Wall -Wextra -Wno-gcc-compat -Wno-error=incomplete-umbrella -Wno-error=incomplete-umbrella -MMD -MT dependencies -MF /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.d --serialize-diagnostics /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.dia -c /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66/source/arclite.mm -o /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.o -mlinker-version=302.3 499 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66/source/arclite.mm 500 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-66 501 | fixStringForCoreData 502 | cxxConstruct 503 | arclite_uninitialized_function 504 | scanMangledField 505 | isdigit 506 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.Internal.sdk/usr/include/ctype.h 507 | __isctype 508 | demangledName 509 | copySwiftV1DemangledName 510 | copySwiftV1MangledName 511 | allocateMaybeSwift 512 | word_align 513 | isSwift 514 | initialize_imp 515 | transcribeProperties 516 | property_list_nth 517 | transcribeProtocols 518 | transcribeMethods 519 | data 520 | method_list_nth 521 | __arclite_objc_copyClassNamesForImage 522 | __arclite_protocol_getName 523 | __arclite_class_getName 524 | __arclite_objc_getProtocol 525 | __arclite_objc_lookUpClass 526 | __arclite_objc_getRequiredClass 527 | __arclite_objc_getMetaClass 528 | __arclite_objc_getClass 529 | __arclite_object_getIndexedIvars 530 | __arclite_objc_allocateClassPair 531 | metaclass 532 | __arclite_objc_readClassPair 533 | transcribeIvars 534 | ivar_list_nth 535 | max 536 | alignment 537 | ro 538 | fastFlags 539 | __arclite_NSKKsD_addEntriesFromDictionary 540 | __arclite_NSKKsD_setObject_forKey 541 | __arclite_NSKKsD_removeObjectForKey 542 | __arclite_NSKKsD_objectForKey 543 | __arclite_NSKKMS_indexForKey 544 | __arclite_NSKKMS_fastIndexForKnownKey 545 | __arclite_NSManagedObject_allocBatch 546 | __arclite_NSManagedObject_allocWithEntity 547 | __arclite_NSManagedObject_init 548 | replaceMethod 549 | __arclite_NSUndoManagerProxy_isKindOfClass 550 | add_image_hook_swiftV1 551 | patch_lazy_pointers 552 | patch_t 553 | patch_t 554 | patch_t 555 | patch_t 556 | patch_t 557 | patch_t 558 | patch_t 559 | patch_t 560 | __arclite_NSMutableDictionary__setObject_forKeyedSubscript 561 | __ARCLite__load 562 | install_swiftV1 563 | install_dict_nil_value 564 | addOrReplaceMethod 565 | keyedGetter 566 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/7661D9C9-C52F-352E-A970-C30E2536A315.bcsymbolmap: -------------------------------------------------------------------------------- 1 | BCSymbolMap Version: 2.0 2 | _swift_rt_swift_retain 3 | _swift_rt_swift_release 4 | _swift_rt_swift_deallocObject 5 | _swift_rt_swift_allocObject 6 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 7 | __T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 8 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 9 | __T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 10 | __T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 11 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 12 | __T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 13 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 14 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 15 | __T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 16 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 17 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 18 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 19 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfKcfU0_TA 20 | __T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TATm 21 | _swift_rt_swift_getEnumCaseSinglePayload 22 | _swift_rt_swift_storeEnumTagSinglePayload 23 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 24 | __T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 25 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 26 | __T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_TA 27 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TATm 28 | __T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 29 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTW 30 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5errorAEQzSgfgTW 31 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP5value5ValueQzSgfgTWTm 32 | __T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 33 | __T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 34 | __T06Result2qqoixx_xyXKtAA0A8ProtocolRzlFxyXKfu_TA 35 | _swift_rt_swift_retain_n 36 | _swift_rt_swift_release_n 37 | __T06Result0A8Protocol_pMF 38 | __T06Result16ErrorConvertible_pMF 39 | __T06Result24ErrorProtocolConvertible_pMF 40 | ___swift_reflection_version 41 | Apple LLVM version 9.0.0 (clang-900.0.39.2) 42 | -emit-bc /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk -I /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos -F /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos -application-extension -g -import-underlying-module -module-cache-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/ModuleCache -swift-version 3 -serialize-debugging-options -report-errors-to-debugger -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-generated-files.hmap -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-own-target-headers.hmap -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Result-project-headers.hmap -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/BuildProductsPath/Release-iphoneos/include -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/arm64 -Xcc -I/Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result -emit-module-doc-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftdoc -serialize-diagnostics-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.dia -O -module-name Result -emit-module-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.swiftmodule -emit-objc-header-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result-Swift.h -emit-dependencies-path /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.d -num-threads 4 -o /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/ResultProtocol.bc -o /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/Objects-normal/arm64/Result.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift 43 | 44 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result 45 | Apple Swift version 4.0.3 effective-3.2.3 (swiftlang-900.0.74.1 clang-900.0.39.2) 46 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/ResultProtocol.swift 47 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTRTA 48 | ResultProtocol.swift 49 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result 50 | _T05ValueQyd__AAQzABIxirr_AbC_ABtIxir_6Result0B8ProtocolRzAdERd__5ErrorQyd__AFRtzr__lTR 51 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_TA 52 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_AG_AHtAHcfU_ 53 | objectdestroy.49 54 | value.get 55 | _T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZfA_ 56 | errorFromErrorType 57 | recoverWith 58 | ?? 59 | recover 60 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_TA 61 | _T06Result2qqoi5ValueQzx_ADyXKtAA0A8ProtocolRzlFADyXKfu_ 62 | != 63 | == 64 | >>- 65 | flatMap 66 | &&& 67 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_TA 68 | _T06Result0A8ProtocolPA2aBRzAA16ErrorConvertible0C0RpzlE6tryMapA2AOyqd__AFGqd__5ValueQzKclFAiKcfU_ 69 | tryMap 70 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_TA 71 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ErrorQzcfU0_ 72 | objectdestroy.37 73 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_TA 74 | _T06Result0A8ProtocolPAAE7recoverxxyXK4with_tFx5ValueQzcfU_ 75 | objectdestroy.34 76 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_TA 77 | _T06Result0A8ProtocolPAAE5bimapA2AOyqd__qd_0_Gqd__5ValueQzc7success_qd_0_5ErrorQzc7failuretsAJRd_0_r0_lFAfHcfU_ 78 | objectdestroy.28 79 | bimap 80 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA 81 | objectdestroy.25 82 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_TA 83 | _T06Result0A8ProtocolPAAE8mapErrorA2AOy5ValueQzqd__Gqd__0D0QzcsAIRd__lFAhJcfU_ 84 | flatMapError 85 | mapError 86 | objectdestroy.19 87 | _T06Result0A8ProtocolPAAE6fanoutA2AOy5ValueQz_AFQyd__t5ErrorQzGqd__yXKAaBRd__AIQyd__AJRSlFAkGcfU_ 88 | fanout 89 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lFTA 90 | objectdestroy.16 91 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_TA 92 | _T06Result0A8ProtocolPAAE3mapA2AOyqd__5ErrorQzGqd__5ValueQzclFAhJcfU_ 93 | objectdestroy.13 94 | map 95 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_TA 96 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAgFcfU0_ 97 | objectdestroy.10 98 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_TA 99 | _T06Result0A8ProtocolPAAE5error5ErrorQzSgfgAG5ValueQzcfU_ 100 | objectdestroy.7 101 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_TA 102 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAG5ErrorQzcfU0_ 103 | objectdestroy.4 104 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_TA 105 | _T06Result0A8ProtocolPAAE5value5ValueQzSgfgAgFcfU_ 106 | objectdestroy 107 | error.get 108 | _swift_rt_swift_getExistentialTypeMetadata 109 | _swift_rt_swift_dynamicCast 110 | __T06ResultAAO11functionKeySSfgZTm 111 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPx5ValueQz5value_tcfCTW 112 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDPxAEQz5error_tcfCTW 113 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAaDP8analysisqd__qd__5ValueQzc9ifSuccess_qd__AEQzc0F7FailuretlFTW 114 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTW 115 | __T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lsADP16debugDescriptionSSfgTW 116 | __T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lsADP11descriptionSSfgTWTm 117 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlF 118 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZTo 119 | __T0So7NSErrorC6Result16ErrorConvertibleA2cDP5errorxs0C0_p4from_tFZTW 120 | __T06Result7NoErrorOs0C0AAsADP7_domainSSfgTW 121 | __T06Result7NoErrorOs0C0AAsADP5_codeSifgTW 122 | __T06Result7NoErrorOs0C0AAsADP9_userInfoyXlSgfgTW 123 | __T06Result7NoErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 124 | __T06Result7NoErrorOs9EquatableAAsADP2eeoiSbx_xtFZTW 125 | __T06Result8AnyErrorVs0C0AAsADP7_domainSSfgTW 126 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTW 127 | __T06Result8AnyErrorVs0C0AAsADP9_userInfoyXlSgfgTW 128 | __T06Result8AnyErrorVs0C0AAsADP5_codeSifgTWTm 129 | __T06Result8AnyErrorVs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW 130 | __T06Result8AnyErrorVAA0C11ConvertibleA2aDP5errorxs0C0_p4from_tFZTW 131 | __T06Result8AnyErrorVs23CustomStringConvertibleAAsADP11descriptionSSfgTW 132 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP16errorDescriptionSSSgfgTW 133 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP13failureReasonSSSgfgTW 134 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgfgTW 135 | __T06Result8AnyErrorV10Foundation09LocalizedC0AadEP10helpAnchorSSSgfgTW 136 | __T0So7NSErrorC6ResultE18errorFromErrorTypeABXDs0E0_pFZTo 137 | __T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 138 | __T0s11_StringCoreV6appendyABFTfq4gXn_n 139 | __T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 140 | __T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 141 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 142 | __T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 143 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 144 | __T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 145 | __T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 146 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 147 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 148 | __T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 149 | __T0So7NSErrorC6ResultE5errorABXDs5Error_p4from_tFZ4castL_xsAE_pABRbzlFTf4g_n 150 | __T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 151 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_n 152 | __T06ResultAAO7fileKeySSfgZyt_So7NSErrorCTg5Tf4d_n 153 | __T06ResultAAO7lineKeySSfgZyt_So7NSErrorCTg5Tf4d_n 154 | __T06ResultAAO11functionKeySSfgZyt_So7NSErrorCTg5Tf4d_nTm 155 | __T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 156 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZyt_AETg5Tf4ggXgXnd_n 157 | __T06ResultAAO5errorSo7NSErrorCSSSg_SS8functionSS4fileSi4linetFZTf4ggXgXnn_n 158 | __T06ResultAAO11descriptionSSfgSSxcfU_TA 159 | __T06ResultAAO11descriptionSSfgSSq_cfU0_TA 160 | __T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 161 | __T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 162 | _swift_rt_swift_getInitializedObjCClass 163 | __T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 164 | __T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 165 | __T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 166 | __T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFTf4gXgXng_n 167 | ___swift_project_boxed_opaque_existential_1 168 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 169 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 170 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 171 | __T06ResultAAOwXX 172 | _swift_rt_swift_slowDealloc 173 | __T06ResultAAOwCP 174 | __T06ResultAAOwpr 175 | __T06ResultAAOwde 176 | __T06ResultAAOwxx 177 | __T06ResultAAOwCp 178 | __T06ResultAAOwcp 179 | __T06ResultAAOwca 180 | __T06ResultAAOwTk 181 | __T06ResultAAOwtk 182 | __T06ResultAAOwta 183 | __T06ResultAAOwal 184 | __T06ResultAAOwTK 185 | __T06ResultAAOwXx 186 | __T06ResultAAOwCc 187 | __T06ResultAAOwTt 188 | __T06ResultAAOwtT 189 | __T06ResultAAOwug 190 | __T06ResultAAOwup 191 | __T06ResultAAOwui 192 | _swift_rt_swift_getGenericMetadata 193 | ___swift_noop_void_return 194 | ___swift_memcpy0_1 195 | ___swift_noop_self_return 196 | ___swift_memcpy_array1_1 197 | ___swift_memmove_array1_1 198 | __T06Result7NoErrorOwug 199 | __T06Result7NoErrorOwup 200 | __T06Result7NoErrorOwui 201 | __T06Result8AnyErrorVwXX 202 | __T06Result8AnyErrorVwCP 203 | __T06Result8AnyErrorVwcp 204 | __T06Result8AnyErrorVwca 205 | ___swift_memcpy8_8 206 | __T06Result8AnyErrorVwta 207 | __T06Result8AnyErrorVwXx 208 | __T06Result8AnyErrorVwCc 209 | ___swift_memmove_array8_8 210 | __T06Result8AnyErrorVwxs 211 | __T06Result8AnyErrorVwxg 212 | _swift_rt_swift_slowAlloc 213 | __T0s23_ContiguousArrayStorageCySS_yptGMa 214 | ___swift_destroy_boxed_opaque_existential_0 215 | _swift_rt_swift_isUniquelyReferenced_nonNull_native 216 | __T06Result8AnyErrorVwCp 217 | __T0xSSIxio_xSSIxir_s5ErrorR_r0_lTRTA 218 | ___swift_destroy_boxed_opaque_existential_1 219 | __T06Result11materializeA2AOyxSo7NSErrorCGxyKclFxyKXKfu_TA 220 | __T06Result8AnyErrorVwxx 221 | __T0s5Error_pML 222 | __T0s23_ContiguousArrayStorageCySSGML 223 | __T0So7NSErrorCML 224 | __T010Foundation14LocalizedError_pML 225 | __T06ResultAAOMP 226 | __T06ResultAAOMF 227 | __T06Result7NoErrorOWV 228 | __T06Result7NoErrorOMf 229 | __T06Result7NoErrorOMF 230 | __T06Result8AnyErrorVWV 231 | __T06Result8AnyErrorVMf 232 | __T06Result8AnyErrorVMF 233 | __swift_FORCE_LOAD_$_swiftFoundation_$_Result 234 | __swift_FORCE_LOAD_$_swiftObjectiveC_$_Result 235 | __swift_FORCE_LOAD_$_swiftDarwin_$_Result 236 | __swift_FORCE_LOAD_$_swiftCoreFoundation_$_Result 237 | __swift_FORCE_LOAD_$_swiftDispatch_$_Result 238 | __T06Result7NoErrorOmML 239 | __T06Result8AnyErrorVmML 240 | __T0s23_ContiguousArrayStorageCySS_yptGML 241 | __T0SS_yptML 242 | __T0ypML 243 | __T0s37_HashableTypedNativeDictionaryStorageCySSypGML 244 | __T0yXlML 245 | __T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGML 246 | __T0s35_HasCustomAnyHashableRepresentation_pML 247 | __T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lMA 248 | _objc_categories 249 | /Users/spanage/dev/Personal/AccessibilityAnnouncer/Carthage/Checkouts/Result/Result/Result.swift 250 | __swift_destroy_boxed_opaque_existential_0 251 | Result.swift 252 | _T0s23_ContiguousArrayStorageCySS_yptGMa 253 | _T0SS_yptMa 254 | _T0ypMa 255 | _T06Result8AnyErrorVMa 256 | get_field_types_AnyError 257 | _T0s5Error_pMa 258 | _T06Result8AnyErrorVwxg 259 | _T06Result8AnyErrorVwxs 260 | __swift_memmove_array8_8 261 | _T06Result8AnyErrorVwCc 262 | _T06Result8AnyErrorVwXx 263 | _T06Result8AnyErrorVwta 264 | __swift_memcpy8_8 265 | _T06Result8AnyErrorVwca 266 | _T06Result8AnyErrorVwcp 267 | _T06Result8AnyErrorVwCP 268 | _T06Result8AnyErrorVwXX 269 | _T06Result7NoErrorOMa 270 | get_field_types_NoError 271 | _T06Result7NoErrorOwui 272 | _T06Result7NoErrorOwup 273 | _T06Result7NoErrorOwug 274 | __swift_memmove_array1_1 275 | __swift_memcpy_array1_1 276 | __swift_noop_self_return 277 | __swift_memcpy0_1 278 | __swift_noop_void_return 279 | create_generic_metadata_Result 280 | _T06ResultAAOwui 281 | _T06ResultAAOwup 282 | _T06ResultAAOwug 283 | _T06ResultAAOwtT 284 | _T06ResultAAOwTt 285 | _T06ResultAAOwCc 286 | _T06ResultAAOwXx 287 | _T06ResultAAOwTK 288 | _T06ResultAAOwal 289 | _T06ResultAAOwta 290 | _T06ResultAAOwtk 291 | _T06ResultAAOwTk 292 | _T06ResultAAOwca 293 | _T06ResultAAOwcp 294 | _T06ResultAAOwCp 295 | _T06ResultAAOwxx 296 | _T06ResultAAOwde 297 | _T06ResultAAOwpr 298 | _T06ResultAAOwCP 299 | _T06ResultAAOwXX 300 | get_field_types_Result 301 | _T06Result8AnyErrorV10Foundation09LocalizedC0AAWa 302 | _T06Result8AnyErrorVs23CustomStringConvertibleAAWa 303 | _T06Result8AnyErrorVAA0C11ConvertibleAAWa 304 | _T06Result7NoErrorOs9EquatableAAWa 305 | _T06Result7NoErrorOs0C0AAWa 306 | _T0So7NSErrorC6Result16ErrorConvertibleACWa 307 | _T06ResultAAOyxq_Gs28CustomDebugStringConvertibleAAs5ErrorR_r0_lWa 308 | _T06ResultAAOyxq_Gs23CustomStringConvertibleAAs5ErrorR_r0_lWa 309 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lWa 310 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEsAEPWT 311 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_lAEWt 312 | _T06ResultAAOyxq_GAA0A8ProtocolAAs5ErrorR_r0_l5ValueWt 313 | _T06Result8AnyErrorVs0C0AAWa 314 | __swift_project_boxed_opaque_existential_1 315 | try 316 | _T06Result3tryA2AOyytSo7NSErrorCGSS_SS4fileSi4lineSbs33AutoreleasingUnsafeMutablePointerVyAESgGSgcABtFAEyKXKfu_ 317 | error 318 | _T06ResultAAO11descriptionSSfgSSq_cfU0_Tf4g_n 319 | init 320 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5 321 | _T0S2Sx26stringInterpolationSegment_tclufCTfq4gn_n 322 | _allocateUninitializedArray 323 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_Tg5 324 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_Tg5 325 | _T0s23_ContiguousArrayStorageCySSGMa 326 | _T06ResultAAO11descriptionSSfgSSxcfU_Tf4g_n 327 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lFTA.22 328 | _T06ResultAAO7successAByxq_GxcADms5ErrorR_r0_lF 329 | _T06ResultAAOMa 330 | _T0So7NSErrorCMa 331 | objectdestroy.20 332 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_TA 333 | _T06Result11materializeA2AOyxAA8AnyErrorVGxyKclFxyKXKfu_ 334 | objectdestroy.14 335 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTRTA 336 | _T0q_SSIxio_q_SSIxir_s5ErrorR_r0_lTR 337 | objectdestroy.11 338 | _T06ResultAAO11descriptionSSfgSSq_cfU0_TA 339 | _T06ResultAAO11descriptionSSfgSSq_cfU0_ 340 | objectdestroy.8 341 | _T06ResultAAO11descriptionSSfgSSxcfU_TA 342 | _T06ResultAAO11descriptionSSfgSSxcfU_ 343 | objectdestroy.2 344 | _dictionaryUpCast 345 | subscript.set 346 | _T0s10DictionaryVAByxq_GSayx_q_tG17dictionaryLiterald_tcfCTfq4gn_nSS_ypTg5 347 | _T0s23_ContiguousArrayStorageCfDSS_ypt_Tg5 348 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5 349 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZSS_ypt_Tg5 350 | _T0Sa13_adoptStorageSayxG_SpyxGts016_ContiguousArrayB0CyxG_Si5counttFZTfq4gnn_nSS_ypt_Tg5 351 | lineKey.get 352 | fileKey.get 353 | functionKey.get 354 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE9fromArrayAByxq_GSayx_q_tGFZTfq4gn_nSS_ypTg5Tf4nd_n 355 | _T0SSs9EquatablessAAP2eeoiSbx_xtFZTW 356 | _T0Sa15_checkSubscripts16_DependenceTokenVSi_Sb20wasNativeTypeCheckedtFSS_ypt_Tg5 357 | _T0s12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBoundsySi_Sb03wasfgH0tFSS_ypt_Tg5 358 | _T0Sa11_getElementxSi_Sb20wasNativeTypeCheckeds16_DependenceTokenV22matchingSubscriptChecktFSS_ypt_Tg5 359 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nyp_Tg5 360 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_nSS_Tg5 361 | _T0SSs8HashablessAAP9hashValueSifgTW 362 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5 363 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCSS_ypTg5Tf4nnd_n 364 | _T0Sp10initializeyx2to_Si5counttFSu_Tgq5 365 | _T0s37_HashableTypedNativeDictionaryStorageCySSypGMa 366 | _T0Sa9_getCountSiyFSS_ypt_Tg5 367 | _T0s27_toStringReadOnlyStreamableSSxs010TextOutputE0RzlFTfq4g_nSS_Tg5Tf4n_g 368 | _T0SSs20TextOutputStreamablessAAP5writeyqd__z2to_ts0aB6StreamRd__lFTWSS_Tg5 369 | cast 370 | _T0s11AnyHashableV2eeoiSbAB_ABtFZTfq4nnd_n 371 | _T0s35_HasCustomAnyHashableRepresentation_pMa 372 | _T0yXlMa 373 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_nSS_ypTg5 374 | _T0s23_NativeDictionaryBufferVss8HashableRzr0_lE12unsafeAddNewyx3key_q_5valuetFTfq4ggn_ns03AnyD0V_ypTg5 375 | _T0s11AnyHashableVs9EquatablessACP2eeoiSbx_xtFZTW 376 | _T0Sp10initializeyx2to_Si5counttFTfq4gnn_ns11AnyHashableV_Tg5 377 | _T0s11AnyHashableVs0B0ssACP9hashValueSifgTW 378 | _T0s17_dictionaryUpCasts10DictionaryVyq0_q1_GACyxq_Gs8HashableRzsAFR0_r2_lFTfq4g_nSS_yps03AnyE0VypTg5 379 | _T0s23_NativeDictionaryBufferV5indexs01_aB5IndexVyxq_GAF5after_tFSS_ypTg5 380 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5 381 | _T0s23_NativeDictionaryBufferVAByxq_GSi8capacity_s04_RawaB7StorageC7storagetcfCs11AnyHashableV_ypTg5Tf4nnd_n 382 | _T0s37_HashableTypedNativeDictionaryStorageCys03AnyA0VypGMa 383 | _T0s10DictionaryV5countSifgSS_ypTg5 384 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFSS_ypTg5 385 | _T0s24_CocoaDictionaryIteratorC4nextyXl_yXltSgyF 386 | _T0Sv4loadxSi14fromByteOffset_xm2astlFs9UnmanagedVyyXlG_Tgq5Tfq4ndn_n 387 | _T0s24_VariantDictionaryBufferO018ensureUniqueNativeC0Sb11reallocated_Sb15capacityChangedtSiFs11AnyHashableV_ypTg5 388 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFSS_ypTg5 389 | _T0s24_VariantDictionaryBufferO17nativeUpdateValueq_Sgq__x6forKeytFs11AnyHashableV_ypTg5 390 | _T0s18DictionaryIteratorV11_nativeNextx3key_q_5valuetSgyFSS_ypTg5 391 | _T0s11_StringCoreV13_copyElementsySv_Si15srcElementWidthSv8dstStartSi0hfG0Si5counttFZTfq4nnnnnd_n 392 | _T0s11_StringCoreV6appendyABFTfq4gXn_n 393 | _T0s20ManagedBufferPointerV08_elementC0Spyq_Gfgs05_HeapB6HeaderVys07_StringB5IVarsVG_s6UInt16VTgq5 394 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFTfq4x_n 395 | _T0s8SequencePsE8containsS2b7ElementQzKc5where_tKFSRys6UInt16VG_Tgq505_T0s6E37VSbs5Error_pIxydzo_ABSbsAC_pIxidzo_TRAHSbs0H0_pIxydzo_Tfq1cn_nTfq4ng_n 396 | _T0s11_StringCoreV22isRepresentableAsASCIISbyFSbs6UInt16VcfU_ 397 | _T0S2RyxGSPyxGSg5start_Si5counttcfCs6UInt16V_Tgq5Tfq4nnd_n 398 | _T0S2SSaySSG19stringInterpolationd_tcfCTfq4nd_n 399 | Failure 400 | Success 401 | helpAnchor.get 402 | recoverySuggestion.get 403 | failureReason.get 404 | errorDescription.get 405 | _T010Foundation14LocalizedError_pMa 406 | description.get 407 | _getEmbeddedNSError 408 | _code.get 409 | _domain.get 410 | _T06Result8AnyErrorVmMa 411 | _userInfo.get 412 | _T06Result7NoErrorOmMa 413 | materialize 414 | analysis 415 | debugDescription.get 416 | errorDomain.get 417 | dematerialize 418 | _stdlib_getErrorEmbeddedNSError 419 | _T036swift_stdlib_getErrorEmbeddedNSErrorTfq4g_n 420 | _T06ResultAAO7failureAByxq_Gq_cADms5ErrorR_r0_lF 421 | /Users/spanage/Library/Caches/org.carthage.CarthageKit/DerivedData/9.2_9C40b/Result/3.2.4/Build/Intermediates.noindex/ArchiveIntermediates/Result-iOS/IntermediateBuildFilesPath/Result.build/Release-iphoneos/Result-iOS.build/DerivedSources/Result_vers.c 422 | __ZL15__ARCLite__loadv 423 | __ZL58__arclite_NSMutableDictionary__setObject_forKeyedSubscriptP19NSMutableDictionaryP13objc_selectorP11objc_objectS4_ 424 | __ZL22add_image_hook_swiftV1PK11mach_headerl 425 | __ZL42__arclite_NSUndoManagerProxy_isKindOfClassP11objc_objectP13objc_selectorP10objc_class 426 | __ZL13replaceMethodP10objc_classP13objc_selectorPFP11objc_objectS4_S2_zEPS6_ 427 | __ZL30__arclite_NSManagedObject_initP11objc_objectP13objc_selector 428 | __ZL41__arclite_NSManagedObject_allocWithEntityP11objc_objectP13objc_selectorS0_ 429 | __ZL36__arclite_NSManagedObject_allocBatchP11objc_objectP13objc_selectorPS0_S0_j 430 | __ZL37__arclite_NSKKMS_fastIndexForKnownKeyP11objc_objectP13objc_selectorS0_ 431 | __ZL28__arclite_NSKKMS_indexForKeyP11objc_objectP13objc_selectorS0_ 432 | __ZL29__arclite_NSKKsD_objectForKeyP11objc_objectP13objc_selectorS0_ 433 | __ZL35__arclite_NSKKsD_removeObjectForKeyP11objc_objectP13objc_selectorS0_ 434 | __ZL33__arclite_NSKKsD_setObject_forKeyP11objc_objectP13objc_selectorS0_S0_ 435 | __ZL41__arclite_NSKKsD_addEntriesFromDictionaryP11objc_objectP13objc_selectorP12NSDictionary 436 | __ZL28__arclite_objc_readClassPairP10objc_classPK15objc_image_info 437 | __ZL32__arclite_objc_allocateClassPairP10objc_classPKcm 438 | __ZL32__arclite_object_getIndexedIvarsP11objc_object 439 | __ZL23__arclite_objc_getClassPKc 440 | __ZL27__arclite_objc_getMetaClassPKc 441 | __ZL31__arclite_objc_getRequiredClassPKc 442 | __ZL26__arclite_objc_lookUpClassPKc 443 | __ZL26__arclite_objc_getProtocolPKc 444 | __ZL23__arclite_class_getNameP10objc_class 445 | __ZL26__arclite_protocol_getNameP8Protocol 446 | __ZL37__arclite_objc_copyClassNamesForImagePKcPj 447 | __ZL17transcribeMethodsP10objc_classP15glue_class_ro_t 448 | __ZL19transcribeProtocolsP10objc_classP15glue_class_ro_t 449 | __ZL20transcribePropertiesP10objc_classP15glue_class_ro_t 450 | __ZL14initialize_impP11objc_objectP13objc_selector 451 | __ZL18allocateMaybeSwiftP18glue_swift_class_tm 452 | __ZL22copySwiftV1MangledNamePKcb 453 | __ZL13demangledNamePKcb 454 | __ZL16scanMangledFieldRPKcS0_S1_Ri 455 | __ZL30arclite_uninitialized_functionv 456 | __ZL12cxxConstructP11objc_object 457 | __ZL20fixStringForCoreDataP11objc_object 458 | _OBJC_METACLASS_$___ARCLite__ 459 | __ZL24OBJC_CLASS_$___ARCLite__ 460 | __ZL31OBJC_METACLASS_RO_$___ARCLite__ 461 | __non_lazy_classes 462 | __ZL27OBJC_CLASS_RO_$___ARCLite__ 463 | __ZL11_class_name 464 | __ZL32OBJC_$_CLASS_METHODS___ARCLite__ 465 | __ZL17_load_method_name 466 | __ZL17_load_method_type 467 | l_OBJC_PROTOCOL_$___ARCLiteKeyedSubscripting__ 468 | l_OBJC_LABEL_PROTOCOL_$___ARCLiteKeyedSubscripting__ 469 | l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteKeyedSubscripting__ 470 | __ZL30NSUndoManagerProxy_targetClass 471 | __ZL29original_NSManagedObject_init 472 | __ZL40original_NSManagedObject_allocWithEntity 473 | __ZL35original_NSManagedObject_allocBatch 474 | __ZL25NSMutableDictionary_class 475 | __ZL22NSConstantString_class 476 | __ZL14NSString_class 477 | __ZL36original_NSKKMS_fastIndexForKnownKey 478 | __ZL27original_NSKKMS_indexForKey 479 | __ZL28original_NSKKsD_objectForKey 480 | __ZL34original_NSKKsD_removeObjectForKey 481 | __ZL32original_NSKKsD_setObject_forKey 482 | __ZL40original_NSKKsD_addEntriesFromDictionary 483 | __ZZL22add_image_hook_swiftV1PK11mach_headerlE7patches 484 | __ZGVZL22add_image_hook_swiftV1PK11mach_headerlE7patches 485 | __ZL31original_objc_allocateClassPair 486 | __ZL31original_object_getIndexedIvars 487 | __ZL22original_objc_getClass 488 | __ZL26original_objc_getMetaClass 489 | __ZL30original_objc_getRequiredClass 490 | __ZL25original_objc_lookUpClass 491 | __ZL25original_objc_getProtocol 492 | __ZL22original_class_getName 493 | __ZL25original_protocol_getName 494 | __ZL36original_objc_copyClassNamesForImage 495 | __ZL12demangleLock 496 | __ZL9Demangled 497 | Apple LLVM version 9.0.0 (clang-900.0.39) 498 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -Wno-trigraphs -fno-exceptions -fno-rtti -fno-sanitize=vptr -mpascal-strings -Os -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -D NDEBUG=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=4.3 -g -fno-threadsafe-statics -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -fembed-bitcode=all -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-generated-files.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-own-target-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-all-target-headers.hmap -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-project-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts/include -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources/arm64 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources -F/Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk/System/Library/PrivateFrameworks -Wall -Wextra -Wno-gcc-compat -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -MMD -MT dependencies -MF /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.d --serialize-diagnostics /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.dia -c /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67/source/arclite.mm -o /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.o -mlinker-version=305 499 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67/source/arclite.mm 500 | /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-67 501 | fixStringForCoreData 502 | cxxConstruct 503 | arclite_uninitialized_function 504 | scanMangledField 505 | isdigit 506 | /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.Internal.sdk/usr/include/ctype.h 507 | __isctype 508 | demangledName 509 | copySwiftV1DemangledName 510 | copySwiftV1MangledName 511 | allocateMaybeSwift 512 | word_align 513 | isSwift 514 | initialize_imp 515 | transcribeProperties 516 | property_list_nth 517 | transcribeProtocols 518 | transcribeMethods 519 | data 520 | method_list_nth 521 | __arclite_objc_copyClassNamesForImage 522 | __arclite_protocol_getName 523 | __arclite_class_getName 524 | __arclite_objc_getProtocol 525 | __arclite_objc_lookUpClass 526 | __arclite_objc_getRequiredClass 527 | __arclite_objc_getMetaClass 528 | __arclite_objc_getClass 529 | __arclite_object_getIndexedIvars 530 | __arclite_objc_allocateClassPair 531 | metaclass 532 | __arclite_objc_readClassPair 533 | transcribeIvars 534 | ivar_list_nth 535 | max 536 | alignment 537 | ro 538 | fastFlags 539 | __arclite_NSKKsD_addEntriesFromDictionary 540 | __arclite_NSKKsD_setObject_forKey 541 | __arclite_NSKKsD_removeObjectForKey 542 | __arclite_NSKKsD_objectForKey 543 | __arclite_NSKKMS_indexForKey 544 | __arclite_NSKKMS_fastIndexForKnownKey 545 | __arclite_NSManagedObject_allocBatch 546 | __arclite_NSManagedObject_allocWithEntity 547 | __arclite_NSManagedObject_init 548 | replaceMethod 549 | __arclite_NSUndoManagerProxy_isKindOfClass 550 | add_image_hook_swiftV1 551 | patch_lazy_pointers 552 | patch_t 553 | patch_t 554 | patch_t 555 | patch_t 556 | patch_t 557 | patch_t 558 | patch_t 559 | patch_t 560 | __arclite_NSMutableDictionary__setObject_forKeyedSubscript 561 | __ARCLite__load 562 | install_swiftV1 563 | install_dict_nil_value 564 | addOrReplaceMethod 565 | keyedGetter 566 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.org.reactivecocoa.ReactiveSwift 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 3.0.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework.dSYM/Contents/Resources/DWARF/ReactiveSwift -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Headers/ReactiveSwift-Swift.h: -------------------------------------------------------------------------------- 1 | // Generated by Apple Swift version 4.0.3 (swiftlang-900.0.74.1 clang-900.0.39.2) 2 | #pragma clang diagnostic push 3 | #pragma clang diagnostic ignored "-Wgcc-compat" 4 | 5 | #if !defined(__has_include) 6 | # define __has_include(x) 0 7 | #endif 8 | #if !defined(__has_attribute) 9 | # define __has_attribute(x) 0 10 | #endif 11 | #if !defined(__has_feature) 12 | # define __has_feature(x) 0 13 | #endif 14 | #if !defined(__has_warning) 15 | # define __has_warning(x) 0 16 | #endif 17 | 18 | #if __has_attribute(external_source_symbol) 19 | # define SWIFT_STRINGIFY(str) #str 20 | # define SWIFT_MODULE_NAMESPACE_PUSH(module_name) _Pragma(SWIFT_STRINGIFY(clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in=module_name, generated_declaration))), apply_to=any(function, enum, objc_interface, objc_category, objc_protocol)))) 21 | # define SWIFT_MODULE_NAMESPACE_POP _Pragma("clang attribute pop") 22 | #else 23 | # define SWIFT_MODULE_NAMESPACE_PUSH(module_name) 24 | # define SWIFT_MODULE_NAMESPACE_POP 25 | #endif 26 | 27 | #if __has_include() 28 | # include 29 | #endif 30 | 31 | #pragma clang diagnostic ignored "-Wauto-import" 32 | #include 33 | #include 34 | #include 35 | #include 36 | 37 | #if !defined(SWIFT_TYPEDEFS) 38 | # define SWIFT_TYPEDEFS 1 39 | # if __has_include() 40 | # include 41 | # elif !defined(__cplusplus) || __cplusplus < 201103L 42 | typedef uint_least16_t char16_t; 43 | typedef uint_least32_t char32_t; 44 | # endif 45 | typedef float swift_float2 __attribute__((__ext_vector_type__(2))); 46 | typedef float swift_float3 __attribute__((__ext_vector_type__(3))); 47 | typedef float swift_float4 __attribute__((__ext_vector_type__(4))); 48 | typedef double swift_double2 __attribute__((__ext_vector_type__(2))); 49 | typedef double swift_double3 __attribute__((__ext_vector_type__(3))); 50 | typedef double swift_double4 __attribute__((__ext_vector_type__(4))); 51 | typedef int swift_int2 __attribute__((__ext_vector_type__(2))); 52 | typedef int swift_int3 __attribute__((__ext_vector_type__(3))); 53 | typedef int swift_int4 __attribute__((__ext_vector_type__(4))); 54 | typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); 55 | typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); 56 | typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); 57 | #endif 58 | 59 | #if !defined(SWIFT_PASTE) 60 | # define SWIFT_PASTE_HELPER(x, y) x##y 61 | # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) 62 | #endif 63 | #if !defined(SWIFT_METATYPE) 64 | # define SWIFT_METATYPE(X) Class 65 | #endif 66 | #if !defined(SWIFT_CLASS_PROPERTY) 67 | # if __has_feature(objc_class_property) 68 | # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ 69 | # else 70 | # define SWIFT_CLASS_PROPERTY(...) 71 | # endif 72 | #endif 73 | 74 | #if __has_attribute(objc_runtime_name) 75 | # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) 76 | #else 77 | # define SWIFT_RUNTIME_NAME(X) 78 | #endif 79 | #if __has_attribute(swift_name) 80 | # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) 81 | #else 82 | # define SWIFT_COMPILE_NAME(X) 83 | #endif 84 | #if __has_attribute(objc_method_family) 85 | # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) 86 | #else 87 | # define SWIFT_METHOD_FAMILY(X) 88 | #endif 89 | #if __has_attribute(noescape) 90 | # define SWIFT_NOESCAPE __attribute__((noescape)) 91 | #else 92 | # define SWIFT_NOESCAPE 93 | #endif 94 | #if __has_attribute(warn_unused_result) 95 | # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) 96 | #else 97 | # define SWIFT_WARN_UNUSED_RESULT 98 | #endif 99 | #if __has_attribute(noreturn) 100 | # define SWIFT_NORETURN __attribute__((noreturn)) 101 | #else 102 | # define SWIFT_NORETURN 103 | #endif 104 | #if !defined(SWIFT_CLASS_EXTRA) 105 | # define SWIFT_CLASS_EXTRA 106 | #endif 107 | #if !defined(SWIFT_PROTOCOL_EXTRA) 108 | # define SWIFT_PROTOCOL_EXTRA 109 | #endif 110 | #if !defined(SWIFT_ENUM_EXTRA) 111 | # define SWIFT_ENUM_EXTRA 112 | #endif 113 | #if !defined(SWIFT_CLASS) 114 | # if __has_attribute(objc_subclassing_restricted) 115 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA 116 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 117 | # else 118 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 119 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 120 | # endif 121 | #endif 122 | 123 | #if !defined(SWIFT_PROTOCOL) 124 | # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA 125 | # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA 126 | #endif 127 | 128 | #if !defined(SWIFT_EXTENSION) 129 | # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) 130 | #endif 131 | 132 | #if !defined(OBJC_DESIGNATED_INITIALIZER) 133 | # if __has_attribute(objc_designated_initializer) 134 | # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) 135 | # else 136 | # define OBJC_DESIGNATED_INITIALIZER 137 | # endif 138 | #endif 139 | #if !defined(SWIFT_ENUM_ATTR) 140 | # if defined(__has_attribute) && __has_attribute(enum_extensibility) 141 | # define SWIFT_ENUM_ATTR __attribute__((enum_extensibility(open))) 142 | # else 143 | # define SWIFT_ENUM_ATTR 144 | # endif 145 | #endif 146 | #if !defined(SWIFT_ENUM) 147 | # define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type 148 | # if __has_feature(generalized_swift_name) 149 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type 150 | # else 151 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) 152 | # endif 153 | #endif 154 | #if !defined(SWIFT_UNAVAILABLE) 155 | # define SWIFT_UNAVAILABLE __attribute__((unavailable)) 156 | #endif 157 | #if !defined(SWIFT_UNAVAILABLE_MSG) 158 | # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) 159 | #endif 160 | #if !defined(SWIFT_AVAILABILITY) 161 | # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) 162 | #endif 163 | #if !defined(SWIFT_DEPRECATED) 164 | # define SWIFT_DEPRECATED __attribute__((deprecated)) 165 | #endif 166 | #if !defined(SWIFT_DEPRECATED_MSG) 167 | # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) 168 | #endif 169 | #if __has_feature(attribute_diagnose_if_objc) 170 | # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) 171 | #else 172 | # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) 173 | #endif 174 | #if __has_feature(modules) 175 | @import Foundation; 176 | #endif 177 | 178 | #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" 179 | #pragma clang diagnostic ignored "-Wduplicate-method-arg" 180 | #if __has_warning("-Wpragma-clang-attribute") 181 | # pragma clang diagnostic ignored "-Wpragma-clang-attribute" 182 | #endif 183 | #pragma clang diagnostic ignored "-Wunknown-pragmas" 184 | #pragma clang diagnostic ignored "-Wnullability" 185 | 186 | SWIFT_MODULE_NAMESPACE_PUSH("ReactiveSwift") 187 | 188 | 189 | 190 | 191 | SWIFT_MODULE_NAMESPACE_POP 192 | #pragma clang diagnostic pop 193 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Headers/ReactiveSwift.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReactiveSwift.h 3 | // ReactiveSwift 4 | // 5 | // Created by Matt Diephouse on 8/15/16. 6 | // Copyright (c) 2016 the ReactiveSwift contributors. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for ReactiveSwift. 12 | FOUNDATION_EXPORT double ReactiveSwiftVersionNumber; 13 | 14 | //! Project version string for ReactiveSwift. 15 | FOUNDATION_EXPORT const unsigned char ReactiveSwiftVersionString[]; 16 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/Modules/ReactiveSwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ReactiveSwift { 2 | umbrella header "ReactiveSwift.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module ReactiveSwift.Swift { 9 | header "ReactiveSwift-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/ReactiveSwift.framework/ReactiveSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/ReactiveSwift.framework/ReactiveSwift -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.antitypical.Result 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 3.2.4 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework.dSYM/Contents/Resources/DWARF/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework.dSYM/Contents/Resources/DWARF/Result -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Headers/Result-Swift.h: -------------------------------------------------------------------------------- 1 | // Generated by Apple Swift version 4.0.3 effective-3.2.3 (swiftlang-900.0.74.1 clang-900.0.39.2) 2 | #pragma clang diagnostic push 3 | #pragma clang diagnostic ignored "-Wgcc-compat" 4 | 5 | #if !defined(__has_include) 6 | # define __has_include(x) 0 7 | #endif 8 | #if !defined(__has_attribute) 9 | # define __has_attribute(x) 0 10 | #endif 11 | #if !defined(__has_feature) 12 | # define __has_feature(x) 0 13 | #endif 14 | #if !defined(__has_warning) 15 | # define __has_warning(x) 0 16 | #endif 17 | 18 | #if __has_attribute(external_source_symbol) 19 | # define SWIFT_STRINGIFY(str) #str 20 | # define SWIFT_MODULE_NAMESPACE_PUSH(module_name) _Pragma(SWIFT_STRINGIFY(clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in=module_name, generated_declaration))), apply_to=any(function, enum, objc_interface, objc_category, objc_protocol)))) 21 | # define SWIFT_MODULE_NAMESPACE_POP _Pragma("clang attribute pop") 22 | #else 23 | # define SWIFT_MODULE_NAMESPACE_PUSH(module_name) 24 | # define SWIFT_MODULE_NAMESPACE_POP 25 | #endif 26 | 27 | #if __has_include() 28 | # include 29 | #endif 30 | 31 | #pragma clang diagnostic ignored "-Wauto-import" 32 | #include 33 | #include 34 | #include 35 | #include 36 | 37 | #if !defined(SWIFT_TYPEDEFS) 38 | # define SWIFT_TYPEDEFS 1 39 | # if __has_include() 40 | # include 41 | # elif !defined(__cplusplus) || __cplusplus < 201103L 42 | typedef uint_least16_t char16_t; 43 | typedef uint_least32_t char32_t; 44 | # endif 45 | typedef float swift_float2 __attribute__((__ext_vector_type__(2))); 46 | typedef float swift_float3 __attribute__((__ext_vector_type__(3))); 47 | typedef float swift_float4 __attribute__((__ext_vector_type__(4))); 48 | typedef double swift_double2 __attribute__((__ext_vector_type__(2))); 49 | typedef double swift_double3 __attribute__((__ext_vector_type__(3))); 50 | typedef double swift_double4 __attribute__((__ext_vector_type__(4))); 51 | typedef int swift_int2 __attribute__((__ext_vector_type__(2))); 52 | typedef int swift_int3 __attribute__((__ext_vector_type__(3))); 53 | typedef int swift_int4 __attribute__((__ext_vector_type__(4))); 54 | typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); 55 | typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); 56 | typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); 57 | #endif 58 | 59 | #if !defined(SWIFT_PASTE) 60 | # define SWIFT_PASTE_HELPER(x, y) x##y 61 | # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) 62 | #endif 63 | #if !defined(SWIFT_METATYPE) 64 | # define SWIFT_METATYPE(X) Class 65 | #endif 66 | #if !defined(SWIFT_CLASS_PROPERTY) 67 | # if __has_feature(objc_class_property) 68 | # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ 69 | # else 70 | # define SWIFT_CLASS_PROPERTY(...) 71 | # endif 72 | #endif 73 | 74 | #if __has_attribute(objc_runtime_name) 75 | # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) 76 | #else 77 | # define SWIFT_RUNTIME_NAME(X) 78 | #endif 79 | #if __has_attribute(swift_name) 80 | # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) 81 | #else 82 | # define SWIFT_COMPILE_NAME(X) 83 | #endif 84 | #if __has_attribute(objc_method_family) 85 | # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) 86 | #else 87 | # define SWIFT_METHOD_FAMILY(X) 88 | #endif 89 | #if __has_attribute(noescape) 90 | # define SWIFT_NOESCAPE __attribute__((noescape)) 91 | #else 92 | # define SWIFT_NOESCAPE 93 | #endif 94 | #if __has_attribute(warn_unused_result) 95 | # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) 96 | #else 97 | # define SWIFT_WARN_UNUSED_RESULT 98 | #endif 99 | #if __has_attribute(noreturn) 100 | # define SWIFT_NORETURN __attribute__((noreturn)) 101 | #else 102 | # define SWIFT_NORETURN 103 | #endif 104 | #if !defined(SWIFT_CLASS_EXTRA) 105 | # define SWIFT_CLASS_EXTRA 106 | #endif 107 | #if !defined(SWIFT_PROTOCOL_EXTRA) 108 | # define SWIFT_PROTOCOL_EXTRA 109 | #endif 110 | #if !defined(SWIFT_ENUM_EXTRA) 111 | # define SWIFT_ENUM_EXTRA 112 | #endif 113 | #if !defined(SWIFT_CLASS) 114 | # if __has_attribute(objc_subclassing_restricted) 115 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA 116 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 117 | # else 118 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 119 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA 120 | # endif 121 | #endif 122 | 123 | #if !defined(SWIFT_PROTOCOL) 124 | # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA 125 | # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA 126 | #endif 127 | 128 | #if !defined(SWIFT_EXTENSION) 129 | # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) 130 | #endif 131 | 132 | #if !defined(OBJC_DESIGNATED_INITIALIZER) 133 | # if __has_attribute(objc_designated_initializer) 134 | # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) 135 | # else 136 | # define OBJC_DESIGNATED_INITIALIZER 137 | # endif 138 | #endif 139 | #if !defined(SWIFT_ENUM_ATTR) 140 | # if defined(__has_attribute) && __has_attribute(enum_extensibility) 141 | # define SWIFT_ENUM_ATTR __attribute__((enum_extensibility(open))) 142 | # else 143 | # define SWIFT_ENUM_ATTR 144 | # endif 145 | #endif 146 | #if !defined(SWIFT_ENUM) 147 | # define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type 148 | # if __has_feature(generalized_swift_name) 149 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type 150 | # else 151 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) 152 | # endif 153 | #endif 154 | #if !defined(SWIFT_UNAVAILABLE) 155 | # define SWIFT_UNAVAILABLE __attribute__((unavailable)) 156 | #endif 157 | #if !defined(SWIFT_UNAVAILABLE_MSG) 158 | # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) 159 | #endif 160 | #if !defined(SWIFT_AVAILABILITY) 161 | # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) 162 | #endif 163 | #if !defined(SWIFT_DEPRECATED) 164 | # define SWIFT_DEPRECATED __attribute__((deprecated)) 165 | #endif 166 | #if !defined(SWIFT_DEPRECATED_MSG) 167 | # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) 168 | #endif 169 | #if __has_feature(attribute_diagnose_if_objc) 170 | # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) 171 | #else 172 | # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) 173 | #endif 174 | #if __has_feature(modules) 175 | @import Foundation; 176 | #endif 177 | 178 | #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" 179 | #pragma clang diagnostic ignored "-Wduplicate-method-arg" 180 | #if __has_warning("-Wpragma-clang-attribute") 181 | # pragma clang diagnostic ignored "-Wpragma-clang-attribute" 182 | #endif 183 | #pragma clang diagnostic ignored "-Wunknown-pragmas" 184 | #pragma clang diagnostic ignored "-Wnullability" 185 | 186 | SWIFT_MODULE_NAMESPACE_PUSH("Result") 187 | 188 | @interface NSError (SWIFT_EXTENSION(Result)) 189 | + (nonnull instancetype)errorFromErrorType:(NSError * _Nonnull)error SWIFT_WARN_UNUSED_RESULT SWIFT_UNAVAILABLE_MSG("'errorFromErrorType' has been renamed to 'error(from:)'"); 190 | @end 191 | 192 | 193 | @interface NSError (SWIFT_EXTENSION(Result)) 194 | + (nonnull instancetype)errorFrom:(NSError * _Nonnull)error SWIFT_WARN_UNUSED_RESULT; 195 | @end 196 | 197 | SWIFT_MODULE_NAMESPACE_POP 198 | #pragma clang diagnostic pop 199 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Headers/Result.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Rob Rix. All rights reserved. 2 | 3 | /// Project version number for Result. 4 | extern double ResultVersionNumber; 5 | 6 | /// Project version string for Result. 7 | extern const unsigned char ResultVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Modules/Result.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | 8 | module Result.Swift { 9 | header "Result-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /Carthage/Build/iOS/Result.framework/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanage/AccessibilityAnnouncer/1a1951c1c36383228d6b34e1c76e723e7c78c6c2/Carthage/Build/iOS/Result.framework/Result -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2017 Sommer Panage 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AccessibilityAnnouncer 2 | An accessibility announcement queue for iOS with timeout and retry behavior. Built using RAC. 3 | 4 | [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 5 | 6 | 7 | 8 | 9 | ## The Idea 10 | 11 | Commonly when writing accessible iOS code, we write something like `UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, "Hello")`. While this can work if the app is currently silent, it is very easy for these announcements to get swallowed by other announcements and/or VO reading something else that has been selected on the screen. To help tackle this problem, I've implemented an announcement queueing sytem to be used instead of the raw `UIAccessibilityPostNotification` function. This system allows the client to set a default timeout. If an announcement fails on first attempt, the queue will continue to retry until the timeout, at which point it will move on to the next announcement. 12 | 13 | Note, while this does mean that app announcements interrupted by system announcements will be retried, system announcements will *not* be in your app queue. Thus, they will not obey the queue ordering. 14 | 15 | **Note:** As of iOS 11, [`UIAccessibilitySpeechAttributeQueueAnnouncement`](https://developer.apple.com/documentation/uikit/uiaccessibilityspeechattributequeueannouncement?language=objc) should allow you to customize the prioritization of your announcement. However, if you're supporting pre-iOS 11, this attribute will not be available. 16 | 17 | ## How to use 18 | 19 | There should be one AccessibilityAnnouncer app wide. It can be initialized with a default timeout. You'll notice the default is 3 seconds, which I recommend. Passing a timeout of 0 will result in no retry behavior. 20 | 21 | ```swift 22 | private let announcer = AccessibilityAnnouncer(defaultTimeout: 2.0) 23 | // or 24 | private let announcer = AccessibilityAnnouncer() // default timeout is 3 seconds 25 | ``` 26 | 27 | To use the announcer, simply pass it the string you'd like to announce using the `announce(announcement: String)` function. 28 | 29 | ```swift 30 | announcer.announce("Hello!") 31 | ``` 32 | 33 | If you would like a given announcement to have a different timeout than your default (for example, you don't want it to be re-tried if it fails), you can pass a timeout argument. 34 | 35 | ```swift 36 | announcer.announce("Hello!", withRetryTimeout: 0.0) 37 | ``` 38 | 39 | ## Installing 40 | 41 | The easiest way to install this is with Carthage. Simply add `github "spanage/AccessibilityAnnouncer"` to your `Cartfile`. 42 | --------------------------------------------------------------------------------