├── .clang-format ├── .clang-tidy ├── .dir-locals.el ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── crash-report.yml │ ├── feature-request.yml │ └── task.yml └── pull_request_template.md ├── .gitignore ├── .mailmap ├── Brewfile ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OWNERS.TXT ├── CONTRIBUTING.md ├── Docker └── Dockerfile ├── KERNEL_LIB.md ├── LICENSE.txt ├── README.md ├── Runtimes ├── Core │ ├── CMakeLists.txt │ ├── CommandLineSupport │ │ └── CMakeLists.txt │ ├── Concurrency │ │ ├── CMakeLists.txt │ │ ├── InternalShims │ │ │ └── CMakeLists.txt │ │ ├── dispatch.cmake │ │ ├── hooked.cmake │ │ ├── none.cmake │ │ └── singlethreaded.cmake │ ├── Demangling │ │ └── CMakeLists.txt │ ├── LLVMSupport │ │ └── CMakeLists.txt │ ├── Readme.md │ ├── SwiftOnoneSupport │ │ └── CMakeLists.txt │ ├── SwiftShims │ │ └── swift │ │ │ └── shims │ │ │ └── CMakeLists.txt │ ├── Threading │ │ └── CMakeLists.txt │ ├── cmake │ │ ├── caches │ │ │ ├── Vendors │ │ │ │ └── Apple │ │ │ │ │ ├── Darwin.toolchain.cmake │ │ │ │ │ ├── apple-common.cmake │ │ │ │ │ ├── arm64-AppleTVOS-simulator.cmake │ │ │ │ │ ├── arm64-AppleTVOS.cmake │ │ │ │ │ ├── arm64-BridgeOS.cmake │ │ │ │ │ ├── arm64-WatchOS-simulator.cmake │ │ │ │ │ ├── arm64-XROS-simulator.cmake │ │ │ │ │ ├── arm64-iPhoneOS-simulator.cmake │ │ │ │ │ ├── arm64-iPhoneOS.cmake │ │ │ │ │ ├── arm64_32-WatchOS.cmake │ │ │ │ │ ├── arm64e-AppleTVOS.cmake │ │ │ │ │ ├── arm64e-MacOSX.cmake │ │ │ │ │ ├── arm64e-WatchOS.cmake │ │ │ │ │ ├── arm64e-XROS.cmake │ │ │ │ │ ├── arm64e-iPhoneOS.cmake │ │ │ │ │ ├── x86_64-AppleTVOS-simulator.cmake │ │ │ │ │ ├── x86_64-MacOSX.cmake │ │ │ │ │ ├── x86_64-WatchOS-simulator.cmake │ │ │ │ │ ├── x86_64-XROS-simulator.cmake │ │ │ │ │ └── x86_64-iPhoneOS-simulator.cmake │ │ │ └── sccache.cmake │ │ ├── interface │ │ │ └── SwiftCoreConfig.cmake.in │ │ └── modules │ │ │ ├── AvailabilityMacros.cmake │ │ │ ├── CMakeWorkarounds.cmake │ │ │ ├── CatalystSupport.cmake │ │ │ ├── CompilerSettings.cmake │ │ │ ├── DefaultSettings.cmake │ │ │ ├── DetectedPlatformInfo.cmake.in │ │ │ ├── EmitSwiftInterface.cmake │ │ │ ├── ExperimentalFeatures.cmake │ │ │ ├── Finddispatch.cmake │ │ │ ├── InstallSwiftInterface.cmake │ │ │ ├── PlatformInfo.cmake │ │ │ ├── ResourceEmbedding.cmake │ │ │ └── gyb.cmake │ ├── core │ │ └── CMakeLists.txt │ ├── runtime │ │ ├── CMakeConfig.h.in │ │ └── CMakeLists.txt │ └── stubs │ │ └── CMakeLists.txt ├── Overlay │ ├── Android │ │ ├── Android │ │ │ └── CMakeLists.txt │ │ ├── CMakeLists.txt │ │ ├── Math │ │ │ └── CMakeLists.txt │ │ └── clang │ │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── Windows │ │ ├── CMakeLists.txt │ │ ├── CRT │ │ │ └── CMakeLists.txt │ │ ├── WinSDK │ │ │ └── CMakeLists.txt │ │ └── clang │ │ │ └── CMakeLists.txt │ ├── clang │ │ └── CMakeLists.txt │ └── cmake │ │ ├── interface │ │ └── SwiftOverlayConfig.cmake.in │ │ └── modules │ │ ├── AvailabilityMacros.cmake │ │ ├── DefaultSettings.cmake │ │ ├── EmitSwiftInterface.cmake │ │ ├── ExperimentalFeatures.cmake │ │ ├── InstallSwiftInterface.cmake │ │ ├── PlatformInfo.cmake │ │ ├── ResourceEmbedding.cmake │ │ └── gyb.cmake ├── Readme.md ├── Resync.cmake ├── Supplemental │ ├── CMakeLists.txt │ ├── Distributed │ │ └── CMakeLists.txt │ ├── Observation │ │ ├── CMakeLists.txt │ │ └── Info.plist.in │ ├── Readme.md │ ├── StringProcessing │ │ ├── CMakeLists.txt │ │ ├── RegexBuilder │ │ │ └── CMakeLists.txt │ │ ├── _RegexParser │ │ │ └── CMakeLists.txt │ │ └── _StringProcessing │ │ │ └── CMakeLists.txt │ ├── Synchronization │ │ ├── CMakeLists.txt │ │ └── cmake │ │ │ └── caches │ │ │ └── Vendors │ │ │ └── Apple │ │ │ ├── apple-common.cmake │ │ │ ├── arm64-AppleTVOS-simulator.cmake │ │ │ ├── arm64-AppleTVOS.cmake │ │ │ ├── arm64-BridgeOS.cmake │ │ │ ├── arm64-MacOSX.cmake │ │ │ ├── arm64-WatchOS-simulator.cmake │ │ │ ├── arm64-XROS-simulator.cmake │ │ │ ├── arm64-iPhoneOS-simulator.cmake │ │ │ ├── arm64-iPhoneOS.cmake │ │ │ ├── arm64_32-WatchOS.cmake │ │ │ ├── arm64e-AppleTVOS.cmake │ │ │ ├── arm64e-MacOSX.cmake │ │ │ ├── arm64e-WatchOS.cmake │ │ │ ├── arm64e-XROS.cmake │ │ │ ├── arm64e-iPhoneOS.cmake │ │ │ ├── x86_64-AppleTVOS-simulator.cmake │ │ │ ├── x86_64-MacOSX.cmake │ │ │ ├── x86_64-WatchOS-simulator.cmake │ │ │ ├── x86_64-XROS-simulator.cmake │ │ │ └── x86_64-iPhoneOS-simulator.cmake │ └── cmake │ │ └── modules │ │ ├── AvailabilityMacros.cmake │ │ ├── CatalystSupport.cmake │ │ ├── EmitSwiftInterface.cmake │ │ ├── FindSwiftCore.cmake │ │ ├── InstallSwiftInterface.cmake │ │ ├── PlatformInfo.cmake │ │ ├── ResourceEmbedding.cmake │ │ ├── SwiftCallingConventions.cmake │ │ └── gyb.cmake └── cmake │ └── toolchains │ └── Darwin.toolchain.cmake ├── SwiftCompilerSources ├── .gitignore ├── CMakeLists.txt ├── Package.swift ├── README.md ├── Sources │ ├── AST │ │ ├── CMakeLists.txt │ │ ├── Conformance.swift │ │ ├── Declarations.swift │ │ ├── DiagnosticEngine.swift │ │ ├── GenericSignature.swift │ │ ├── Registration.swift │ │ ├── SubstitutionMap.swift │ │ └── Type.swift │ ├── Basic │ │ ├── CMakeLists.txt │ │ ├── SourceLoc.swift │ │ ├── StringParser.swift │ │ └── Utils.swift │ ├── CMakeLists.txt │ ├── Optimizer │ │ ├── Analysis │ │ │ ├── AliasAnalysis.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── CalleeAnalysis.swift │ │ │ ├── DeadEndBlocksAnalysis.swift │ │ │ ├── DominatorTree.swift │ │ │ └── PostDominatorTree.swift │ │ ├── CMakeLists.txt │ │ ├── DataStructures │ │ │ ├── BasicBlockRange.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── DeadEndBlocks.swift │ │ │ ├── FunctionUses.swift │ │ │ ├── InstructionRange.swift │ │ │ ├── ReachableBlocks.swift │ │ │ ├── Set.swift │ │ │ ├── Stack.swift │ │ │ └── Worklist.swift │ │ ├── FunctionPasses │ │ │ ├── AllocBoxToStack.swift │ │ │ ├── AssumeSingleThreaded.swift │ │ │ ├── AsyncDemotion.swift │ │ │ ├── BooleanLiteralFolding.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── CleanupDebugSteps.swift │ │ │ ├── ClosureSpecialization.swift │ │ │ ├── ComputeEscapeEffects.swift │ │ │ ├── ComputeSideEffects.swift │ │ │ ├── CopyToBorrowOptimization.swift │ │ │ ├── DeadStoreElimination.swift │ │ │ ├── DeinitDevirtualizer.swift │ │ │ ├── DestroyHoisting.swift │ │ │ ├── DiagnoseInfiniteRecursion.swift │ │ │ ├── InitializeStaticGlobals.swift │ │ │ ├── LetPropertyLowering.swift │ │ │ ├── LifetimeDependenceDiagnostics.swift │ │ │ ├── LifetimeDependenceInsertion.swift │ │ │ ├── LifetimeDependenceScopeFixup.swift │ │ │ ├── MergeCondFails.swift │ │ │ ├── NamedReturnValueOptimization.swift │ │ │ ├── ObjCBridgingOptimization.swift │ │ │ ├── ObjectOutliner.swift │ │ │ ├── RedundantLoadElimination.swift │ │ │ ├── ReleaseDevirtualizer.swift │ │ │ ├── SimplificationPasses.swift │ │ │ ├── StackPromotion.swift │ │ │ ├── StripObjectHeaders.swift │ │ │ ├── TempLValueElimination.swift │ │ │ └── TempRValueElimination.swift │ │ ├── InstructionSimplification │ │ │ ├── CMakeLists.txt │ │ │ ├── SimplifyAllocRefDynamic.swift │ │ │ ├── SimplifyAllocStack.swift │ │ │ ├── SimplifyApply.swift │ │ │ ├── SimplifyBeginAndLoadBorrow.swift │ │ │ ├── SimplifyBeginCOWMutation.swift │ │ │ ├── SimplifyBranch.swift │ │ │ ├── SimplifyBuiltin.swift │ │ │ ├── SimplifyCheckedCast.swift │ │ │ ├── SimplifyClassifyBridgeObject.swift │ │ │ ├── SimplifyCondBranch.swift │ │ │ ├── SimplifyCondFail.swift │ │ │ ├── SimplifyConvertEscapeToNoEscape.swift │ │ │ ├── SimplifyCopyBlock.swift │ │ │ ├── SimplifyCopyValue.swift │ │ │ ├── SimplifyDebugStep.swift │ │ │ ├── SimplifyDestroyValue.swift │ │ │ ├── SimplifyDestructure.swift │ │ │ ├── SimplifyEndCOWMutationAddr.swift │ │ │ ├── SimplifyFixLifetime.swift │ │ │ ├── SimplifyGlobalValue.swift │ │ │ ├── SimplifyInitEnumDataAddr.swift │ │ │ ├── SimplifyKeyPath.swift │ │ │ ├── SimplifyLoad.swift │ │ │ ├── SimplifyMarkDependence.swift │ │ │ ├── SimplifyMisc.swift │ │ │ ├── SimplifyPartialApply.swift │ │ │ ├── SimplifyPointerToAddress.swift │ │ │ ├── SimplifyRefCasts.swift │ │ │ ├── SimplifyRetainReleaseValue.swift │ │ │ ├── SimplifyStrongRetainRelease.swift │ │ │ ├── SimplifyStructExtract.swift │ │ │ ├── SimplifySwitchEnum.swift │ │ │ ├── SimplifyTuple.swift │ │ │ ├── SimplifyTupleExtract.swift │ │ │ ├── SimplifyUncheckedAddrCast.swift │ │ │ ├── SimplifyUncheckedEnumData.swift │ │ │ ├── SimplifyValueToBridgeObject.swift │ │ │ └── SimplifyWitnessMethod.swift │ │ ├── ModulePasses │ │ │ ├── CMakeLists.txt │ │ │ ├── DiagnoseUnknownConstValues.swift │ │ │ ├── EmbeddedSwiftDiagnostics.swift │ │ │ ├── MandatoryPerformanceOptimizations.swift │ │ │ ├── ReadOnlyGlobalVariables.swift │ │ │ └── StackProtection.swift │ │ ├── PassManager │ │ │ ├── CMakeLists.txt │ │ │ ├── Context.swift │ │ │ ├── ModulePassContext.swift │ │ │ ├── Options.swift │ │ │ ├── PassRegistration.swift │ │ │ └── Passes.swift │ │ ├── TestPasses │ │ │ ├── AccessDumper.swift │ │ │ ├── AliasInfoDumper.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── DeadEndBlockDumper.swift │ │ │ ├── EscapeInfoDumper.swift │ │ │ ├── FunctionUsesDumper.swift │ │ │ ├── MemBehaviorDumper.swift │ │ │ ├── RangeDumper.swift │ │ │ ├── RunUnitTests.swift │ │ │ ├── SILPrinter.swift │ │ │ └── TestInstructionIteration.swift │ │ └── Utilities │ │ │ ├── AccessUtilsTest.swift │ │ │ ├── AddressUtils.swift │ │ │ ├── BorrowUtils.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── Devirtualization.swift │ │ │ ├── EscapeUtils.swift │ │ │ ├── ForwardingUtils.swift │ │ │ ├── FunctionSignatureTransforms.swift │ │ │ ├── GenericSpecialization.swift │ │ │ ├── LifetimeDependenceUtils.swift │ │ │ ├── LocalVariableUtils.swift │ │ │ ├── OptUtils.swift │ │ │ ├── OwnershipLiveness.swift │ │ │ ├── PhiUpdater.swift │ │ │ ├── SSAUpdater.swift │ │ │ ├── SpecializationCloner.swift │ │ │ ├── StaticInitCloner.swift │ │ │ ├── Test.swift │ │ │ └── Verifier.swift │ └── SIL │ │ ├── ASTExtensions.swift │ │ ├── ApplySite.swift │ │ ├── Argument.swift │ │ ├── BasicBlock.swift │ │ ├── Builder.swift │ │ ├── CMakeLists.txt │ │ ├── ConstExpressionEvaluator.swift │ │ ├── DeclRef.swift │ │ ├── Effects.swift │ │ ├── ForwardingInstruction.swift │ │ ├── Function.swift │ │ ├── FunctionConvention.swift │ │ ├── GlobalVariable.swift │ │ ├── Instruction.swift │ │ ├── Linkage.swift │ │ ├── Location.swift │ │ ├── Operand.swift │ │ ├── Registration.swift │ │ ├── SILStage.swift │ │ ├── Type.swift │ │ ├── Utilities │ │ ├── AccessUtils.swift │ │ ├── CMakeLists.txt │ │ ├── SequenceUtilities.swift │ │ ├── SmallProjectionPath.swift │ │ └── WalkUtils.swift │ │ ├── VTable.swift │ │ ├── Value.swift │ │ └── WitnessTable.swift ├── force_lib.c └── stubs.cpp ├── apinotes ├── CMakeLists.txt ├── Dispatch.apinotes ├── README.md └── os.apinotes ├── benchmark ├── CMakeLists.txt ├── Naming.md ├── Package.swift ├── README.md ├── cmake │ └── modules │ │ ├── AddSwiftBenchmarkSuite.cmake │ │ └── SwiftBenchmarkUtils.cmake ├── cxx-source │ ├── CreateObjects.swift │ ├── CxxSetToCollection.swift │ ├── CxxSpanTests.swift │ ├── CxxStringConversion.swift │ ├── CxxVectorSum.swift │ └── ReadAccessor.swift ├── multi-source │ └── PrimsSplit │ │ ├── Prims.swift │ │ ├── Prims_main.swift │ │ └── README.md ├── scripts │ ├── Benchmark_DTrace.in │ ├── Benchmark_Driver │ ├── Benchmark_GuardMalloc.in │ ├── Benchmark_QuickCheck.in │ ├── Benchmark_RuntimeLeaksRunner.in │ ├── CMakeLists.txt │ ├── Template.swift │ ├── build_linux.py │ ├── build_script_helper.py │ ├── compare_perf_tests.py │ ├── create_benchmark.py │ ├── generate_harness │ │ ├── generate_harness.py │ │ └── test_generate_harness.sh │ ├── perf_test_driver │ │ ├── perf_test_driver.py │ │ └── swift_stats.d │ ├── run_smoke_bench │ ├── test_Benchmark_Driver.py │ ├── test_compare_perf_tests.py │ └── test_utils.py ├── single-source │ ├── Ackermann.swift │ ├── AngryPhonebook.swift │ ├── AnyHashableWithAClass.swift │ ├── Array2D.swift │ ├── ArrayAppend.swift │ ├── ArrayInClass.swift │ ├── ArrayLiteral.swift │ ├── ArrayOfGenericPOD.swift │ ├── ArrayOfGenericRef.swift │ ├── ArrayOfPOD.swift │ ├── ArrayOfRef.swift │ ├── ArrayRemoveAll.swift │ ├── ArraySetElement.swift │ ├── ArraySubscript.swift │ ├── AsyncTree.swift │ ├── BinaryFloatingPointConversionFromBinaryInteger.swift │ ├── BinaryFloatingPointProperties.swift │ ├── BitCount.swift │ ├── Breadcrumbs.swift │ ├── BucketSort.swift │ ├── BufferFill.swift │ ├── BufferFind.swift │ ├── ByteSwap.swift │ ├── COWArrayGuaranteedParameterOverhead.swift │ ├── COWTree.swift │ ├── CSVParsing.swift │ ├── CString.swift │ ├── Calculator.swift │ ├── CaptureProp.swift │ ├── ChaCha.swift │ ├── ChainedFilterMap.swift │ ├── CharacterLiteralsLarge.swift │ ├── CharacterLiteralsSmall.swift │ ├── CharacterProperties.swift │ ├── CharacterProperties.swift.gyb │ ├── CharacterRecognizer.swift │ ├── Chars.swift │ ├── ClassArrayGetter.swift │ ├── CodableTest.swift │ ├── Combos.swift │ ├── CountAlgo.swift │ ├── DataBenchmarks.swift │ ├── DeadArray.swift │ ├── DevirtualizeProtocolComposition.swift │ ├── DictOfArraysToArrayOfDicts.swift │ ├── DictTest.swift │ ├── DictTest2.swift │ ├── DictTest3.swift │ ├── DictTest4.swift │ ├── DictTest4Legacy.swift │ ├── DictionaryBridge.swift │ ├── DictionaryBridgeToObjC.swift │ ├── DictionaryCompactMapValues.swift │ ├── DictionaryCopy.swift │ ├── DictionaryGroup.swift │ ├── DictionaryKeysContains.swift │ ├── DictionaryLiteralTest.swift │ ├── DictionaryOfAnyHashableStrings.swift │ ├── DictionaryRemove.swift │ ├── DictionarySubscriptDefault.swift │ ├── DictionarySwap.swift │ ├── Differentiation.swift │ ├── Diffing.swift │ ├── DiffingMyers.swift │ ├── DropFirst.swift │ ├── DropFirst.swift.gyb │ ├── DropLast.swift │ ├── DropLast.swift.gyb │ ├── DropWhile.swift │ ├── DropWhile.swift.gyb │ ├── ErrorHandling.swift │ ├── Exclusivity.swift │ ├── ExistentialPerformance.swift │ ├── ExistentialPerformance.swift.gyb │ ├── Fibonacci.swift │ ├── FindStringNaive.swift │ ├── FlattenDistanceFromTo.swift │ ├── FlattenList.swift │ ├── FloatingPointConversion.swift │ ├── FloatingPointParsing.swift │ ├── FloatingPointPrinting.swift │ ├── HTTP2StateMachine.swift │ ├── Hanoi.swift │ ├── Hash.swift │ ├── Histogram.swift │ ├── IndexPathTest.swift │ ├── InsertCharacter.swift │ ├── IntegerParsing.swift │ ├── Integrate.swift │ ├── IterateData.swift │ ├── Join.swift │ ├── KeyPathPerformanceTests.swift │ ├── LazyFilter.swift │ ├── LinkedList.swift │ ├── LuhnAlgoEager.swift │ ├── LuhnAlgoLazy.swift │ ├── MapReduce.swift │ ├── Memset.swift │ ├── MirrorTest.swift │ ├── MonteCarloE.swift │ ├── MonteCarloPi.swift │ ├── NIOChannelPipeline.swift │ ├── NSDictionaryCastToSwift.swift │ ├── NSErrorTest.swift │ ├── NSStringConversion.swift │ ├── NaiveRangeReplaceableCollectionConformance.swift │ ├── NibbleSort.swift │ ├── NopDeinit.swift │ ├── ObjectAllocation.swift │ ├── ObjectiveCBridging.swift │ ├── ObjectiveCBridgingStubs.swift │ ├── ObjectiveCNoBridgingStubs.swift │ ├── ObserverClosure.swift │ ├── ObserverForwarderStruct.swift │ ├── ObserverPartiallyAppliedMethod.swift │ ├── ObserverUnappliedMethod.swift │ ├── OpaqueConsumingUsers.swift │ ├── OpenClose.swift │ ├── Phonebook.swift │ ├── PointerArithmetics.swift │ ├── PolymorphicCalls.swift │ ├── PopFront.swift │ ├── PopFrontGeneric.swift │ ├── Prefix.swift │ ├── Prefix.swift.gyb │ ├── PrefixWhile.swift │ ├── PrefixWhile.swift.gyb │ ├── Prims.swift │ ├── PrimsNonStrongRef.swift │ ├── ProtocolConformance.swift │ ├── ProtocolDispatch.swift │ ├── ProtocolDispatch2.swift │ ├── QueueTest.swift │ ├── RC4.swift │ ├── RGBHistogram.swift │ ├── Radix2CooleyTukey.swift │ ├── RandomShuffle.swift │ ├── RandomTree.swift │ ├── RandomValues.swift │ ├── RangeAssignment.swift │ ├── RangeContains.swift │ ├── RangeIteration.swift │ ├── RangeOverlaps.swift │ ├── RangeReplaceableCollectionPlusDefault.swift │ ├── RecursiveOwnedParameter.swift │ ├── ReduceInto.swift │ ├── RemoveWhere.swift │ ├── ReversedCollections.swift │ ├── RomanNumbers.swift │ ├── SIMDRandomMask.swift │ ├── SIMDReduceInteger.swift │ ├── SequenceAlgos.swift │ ├── SetTests.swift │ ├── SevenBoom.swift │ ├── Sim2DArray.swift │ ├── SimpleArraySpecialization.swift │ ├── SortArrayInClass.swift │ ├── SortIntPyramids.swift │ ├── SortLargeExistentials.swift │ ├── SortLettersInPlace.swift │ ├── SortStrings.swift │ ├── StackPromo.swift │ ├── StaticArray.swift │ ├── StrComplexWalk.swift │ ├── StrToInt.swift │ ├── StringBuilder.swift │ ├── StringComparison.swift │ ├── StringComparison.swift.gyb │ ├── StringDistance.swift │ ├── StringEdits.swift │ ├── StringEnum.swift │ ├── StringInterpolation.swift │ ├── StringMatch.swift │ ├── StringRemoveDupes.swift │ ├── StringRepeating.swift │ ├── StringReplaceSubrange.swift │ ├── StringSplitting.swift │ ├── StringSwitch.swift │ ├── StringTests.swift │ ├── StringWalk.swift │ ├── StringWalk.swift.gyb │ ├── SubstringTest.swift │ ├── Suffix.swift │ ├── Suffix.swift.gyb │ ├── SuperChars.swift │ ├── TwoSum.swift │ ├── TypeFlood.swift │ ├── UTF16Decode.swift │ ├── UTF8Decode.swift │ ├── Walsh.swift │ ├── WordCount.swift │ └── XorLoop.swift └── utils │ ├── ArgParse.swift │ ├── CxxTests │ ├── CreateObjects.h │ ├── CxxStdlibPerformance.h │ ├── Subscripts.h │ └── module.modulemap │ ├── DriverUtils.swift │ ├── LibProc │ ├── LibProcIncludeSystemHeader.h │ └── module.modulemap │ ├── ObjectiveCTests │ ├── ObjectiveCTests.h │ ├── ObjectiveCTests.m │ └── module.modulemap │ ├── SimpleArray.swift │ ├── TestsUtils.swift │ ├── convertToJSON.py │ └── main.swift ├── bindings └── xml │ └── comment-xml-schema.rng ├── cmake ├── PrintVersion.cmake ├── SwiftVersion.cmake ├── caches │ ├── Darwin-arm64.cmake │ ├── Darwin-x86_64.cmake │ ├── Linux-x86_64.cmake │ ├── Runtime-Android-aarch64.cmake │ ├── Runtime-Android-armv7.cmake │ ├── Runtime-Android-i686.cmake │ ├── Runtime-Android-x86_64.cmake │ ├── Runtime-Linux-x86_64.cmake │ ├── Runtime-MacOSX-arm64.cmake │ ├── Runtime-MacOSX-x86_64.cmake │ ├── Runtime-WASI-wasm32.cmake │ ├── Runtime-Windows-aarch64.cmake │ ├── Runtime-Windows-i686.cmake │ ├── Runtime-Windows-x86_64.cmake │ ├── Windows-aarch64.cmake │ └── Windows-x86_64.cmake ├── dummy.cpp └── modules │ ├── AddPureSwift.cmake │ ├── AddSwift.cmake │ ├── AddSwiftTableGen.cmake │ ├── AddSwiftUnittests.cmake │ ├── CMakeLists.txt │ ├── ClangClCompileRules.cmake │ ├── DarwinSDKs.cmake │ ├── FindLibEdit.cmake │ ├── FindUUID.cmake │ ├── GoldVersion.cmake │ ├── Libdispatch.cmake │ ├── StandaloneOverlay.cmake │ ├── SwiftAddCustomCommandTarget.cmake │ ├── SwiftAndroidSupport.cmake │ ├── SwiftCXXUtils.cmake │ ├── SwiftCompilerCapability.cmake │ ├── SwiftComponents.cmake │ ├── SwiftConfig.cmake.in │ ├── SwiftConfigureSDK.cmake │ ├── SwiftHandleGybSources.cmake │ ├── SwiftList.cmake │ ├── SwiftManpage.cmake │ ├── SwiftSetIfArchBitness.cmake │ ├── SwiftSharedCMakeConfig.cmake │ ├── SwiftToolchainUtils.cmake │ ├── SwiftUtils.cmake │ ├── SwiftWindowsSupport.cmake │ ├── UnixCompileRules.cmake │ └── macCatalystUtils.cmake ├── docs ├── ABI │ ├── CallingConvention.rst │ ├── CallingConventionSummary.rst │ ├── GenericSignature.md │ ├── KeyPaths.md │ ├── Mangling.rst │ ├── OldMangling.rst │ ├── RegisterUsage.md │ ├── TypeLayout.rst │ └── TypeMetadata.rst ├── ABIStabilityManifesto.md ├── AccessControl.md ├── AccessControlInStdlib.md ├── Android.md ├── AndroidBuild.md ├── Array.png ├── ArrayBridge.graffle ├── ArrayBridge.png ├── ArrayCast.graffle ├── ArrayCast.png ├── ArrayImplementation.graffle ├── ArrayImplementation.png ├── Arrays.md ├── Backtracing.rst ├── Branches.md ├── BuildManifesto.md ├── CMakeLists.txt ├── CToSwiftNameTranslation-OmitNeedlessWords.md ├── CToSwiftNameTranslation.md ├── CompactBacktraceFormat.md ├── CompactImageMapFormat.md ├── CompilerPerformance.md ├── ContiguousArray.png ├── ContinuousIntegration.md ├── CppInteroperability │ ├── CppInteroperabilityContributorGuide.md │ ├── CppInteroperabilityManifesto.md │ ├── CppInteroperabilityStatus.md │ ├── GettingStartedWithC++Interop.md │ ├── InteropOddities.md │ ├── SwiftTypeRepresentationInC++.md │ ├── UserGuide-CallingSwiftFromC++.md │ └── UserManual.md ├── CrossCompilationModel.md ├── DebuggingTheCompiler.md ├── DependencyAnalysis.md ├── DevelopmentTips.md ├── Diagnostics.md ├── DifferentiableProgramming.md ├── DifferentiableProgrammingImplementation.md ├── DocumentationComments.md ├── Driver.md ├── DriverInternals.md ├── DriverParseableOutput.md ├── DynamicCasting.md ├── EmbeddedSwift │ ├── ABI.md │ ├── EmbeddedSwiftStatus.md │ ├── Existentials.md │ ├── IntegratingWithSDKs.md │ ├── NonFinalGenericMethods.md │ ├── README.md │ └── UserManual.md ├── ErrorHandling.md ├── ErrorHandlingRationale.md ├── ExternalResources.md ├── FailableInitializers.md ├── Generics │ ├── Makefile │ ├── README.md │ ├── chapters │ │ ├── archetypes.tex │ │ ├── basic-operation.tex │ │ ├── building-generic-signatures.tex │ │ ├── compilation-model.tex │ │ ├── completion.tex │ │ ├── concrete-conformances.tex │ │ ├── conformance-paths.tex │ │ ├── conformances.tex │ │ ├── declarations.tex │ │ ├── derived-requirements-summary.tex │ │ ├── existential-types.tex │ │ ├── extensions.tex │ │ ├── generic-signatures.tex │ │ ├── introduction.tex │ │ ├── math-summary.tex │ │ ├── monoids.tex │ │ ├── opaque-return-types.tex │ │ ├── preface.tex │ │ ├── property-map.tex │ │ ├── rule-minimization.tex │ │ ├── substitution-maps.tex │ │ ├── symbols-terms-and-rules.tex │ │ ├── type-resolution.tex │ │ ├── type-substitution-summary.tex │ │ └── types.tex │ ├── generics.bib │ ├── generics.ist │ └── generics.tex ├── GenericsManifesto.md ├── GitHubCreatePRScreenshot.png ├── HighLevelSILOptimizations.rst ├── HowSwiftImportsCAPIs.md ├── HowToGuides │ ├── FAQ.md │ ├── FirstPullRequest.md │ ├── GettingStarted.md │ ├── RunningIncludeWhatYouUse.md │ └── SettingUpLSPEmacs.md ├── HowToUpdateDebugInfo.md ├── IndexInvalidation.md ├── InitializerProblems.rst ├── InstrumentsExpandedProfile.png ├── InstrumentsProfile.png ├── Lexicon.md ├── LibraryEvolution.rst ├── LibraryEvolutionManifesto.md ├── Literals.md ├── LogicalObjects.md ├── Makefile ├── Modules.md ├── MutationModel.rst ├── ObjCInterop.md ├── OpenBSD.md ├── OptimizationTips.rst ├── OptimizerCountersAnalysis.md ├── OptimizerDesign.md ├── OwnershipManifesto.md ├── PerfReport.png ├── README.md ├── Random.md ├── RefcountingStates.graffle ├── ReferenceGuides │ └── UnderscoredAttributes.md ├── RequestEvaluator.md ├── Runtime.md ├── SIL │ ├── ARCOptimization.md │ ├── FunctionAttributes.md │ ├── Instructions.md │ ├── Ownership.md │ ├── SIL-Utilities.md │ ├── SIL.md │ ├── SILFunctionConventions.md │ ├── SILInitializerConventions.md │ ├── SILMemoryAccess.md │ └── Types.md ├── SequencesAndCollections.rst ├── Serialization.md ├── Slice.png ├── StableBitcode.md ├── StandardLibraryProgrammersManual.md ├── StdlibAPIGuidelines.rst ├── StdlibRationales.rst ├── StoredAndComputedVariables.rst ├── StringDesign.rst ├── StringManifesto.md ├── Swift3Compatibility.md ├── Testing.md ├── TextFormatting.rst ├── TransparentAttr.md ├── TypeChecker.md ├── WeakReferences.md ├── WebAssembly.md ├── Windows.md ├── WindowsBuild.md ├── WindowsCrossCompile.md ├── WindowsToolchain.md ├── _static │ ├── favicon.ico │ └── swift.css ├── _templates │ └── layout.html ├── archive │ ├── Generics.rst │ ├── Import.rst │ ├── LangRef.html │ ├── LangRefNew.rst │ ├── NamespaceLevelVarsAndTopLevelCode.rst │ ├── ObjectInitialization.rst │ ├── Objective-CInteroperability.rst │ ├── PatternMatching.rst │ ├── Resilience.rst │ └── TuplesAsArguments.md ├── assets │ ├── DifferentiableProgramming │ │ ├── autodiff-reverse-debugging.gif │ │ ├── chain-rule-left-assoc.png │ │ ├── chain-rule-right-assoc.png │ │ ├── convention-c-function-representation.png │ │ ├── difference-quotient.png │ │ ├── differentiable-function-representation.png │ │ ├── differentiable-function-subtyping.png │ │ ├── differentiable-manifolds.png │ │ ├── gated-recurrent-neural-network.png │ │ ├── iterative-optimization.png │ │ ├── plot-linear.png │ │ ├── plot-quadratic.png │ │ └── tapenade.png │ └── DifferentiableProgrammingImplementation │ │ ├── differentiation-control-flow.png │ │ └── swift-compilation-pipeline.png ├── conf.py ├── contents.rst ├── doxygen.cfg.in ├── doxygen.css ├── doxygen.footer ├── doxygen.header ├── doxygen.intro ├── favicon.ico ├── libFuzzerIntegration.md ├── proposals │ ├── Accessors.rst │ ├── ArrayBridge.rst │ ├── AttrC.rst │ ├── CPointerArgumentInterop.rst │ ├── CPointerInteropLanguageModel.rst │ ├── Concurrency.rst │ ├── DeclarationTypeChecker.rst │ ├── EnumStyle.rst │ ├── Enums.rst │ ├── Initialization.rst │ ├── InitializerInheritance.rst │ ├── InoutCOWOptimization.rst │ ├── Inplace.rst │ ├── ObjCInteroperation.rst │ ├── OptimizerEffects.rst │ ├── OptionSets.rst │ ├── README.txt │ ├── RemoteMirrors.rst │ ├── TypeState.rst │ ├── UnsupportedOptimizationAttributes.rst │ ├── ValueSemantics.rst │ ├── WholeModuleOptimization.rst │ ├── archive │ │ ├── MemoryAndConcurrencyModel.rst │ │ ├── ProgramStructureAndCompilationModel.rst │ │ └── UnifiedFunctionSyntax.rst │ ├── containers_value_type.html │ ├── rejected │ │ ├── BridgingContainerProtocolsToClassClusters.rst │ │ ├── ClassConstruction.rst │ │ ├── Clonable.rst │ │ ├── Constructors.rst │ │ └── KeywordArguments.rst │ └── valref.rst ├── refactoring │ ├── Cursor.png │ ├── Range.png │ ├── SwiftLocalRefactoring.md │ └── Toolchain.png ├── scripts │ └── ns-html2rst ├── toc.js └── tools │ ├── CMakeLists.txt │ └── swift.pod ├── include ├── CMakeLists.txt ├── module.modulemap ├── swift-c │ ├── CommonString │ │ └── CommonString.h │ ├── DependencyScan │ │ ├── DependencyScan.h │ │ ├── DependencyScanMacros.h │ │ └── module.modulemap │ ├── MockPlugin │ │ └── MockPlugin.h │ └── StaticMirror │ │ ├── BinaryScan.h │ │ ├── StaticMirrorMacros.h │ │ └── module.modulemap └── swift │ ├── ABI │ ├── Actor.h │ ├── AsyncLet.h │ ├── Class.h │ ├── CompactFunctionPointer.h │ ├── Coro.h │ ├── Enum.h │ ├── Executor.h │ ├── GenericContext.h │ ├── HeapObject.h │ ├── InvertibleProtocols.def │ ├── InvertibleProtocols.h │ ├── KeyPath.h │ ├── Metadata.h │ ├── MetadataKind.def │ ├── MetadataRef.h │ ├── MetadataValues.h │ ├── ObjectFile.h │ ├── ProtocolDispatchStrategy.h │ ├── System.h │ ├── TargetLayout.h │ ├── Task.h │ ├── TaskGroup.h │ ├── TaskOptions.h │ ├── TaskStatus.h │ ├── TrailingObjects.h │ ├── TypeIdentity.h │ ├── ValueWitness.def │ └── ValueWitnessTable.h │ ├── APIDigester │ ├── ModuleAnalyzerNodes.h │ └── ModuleDiagsConsumer.h │ ├── AST │ ├── ASTAllocated.h │ ├── ASTBridging.h │ ├── ASTBridgingImpl.h │ ├── ASTBridgingWrappers.def │ ├── ASTContext.h │ ├── ASTContextGlobalCache.h │ ├── ASTDemangler.h │ ├── ASTDumper.h │ ├── ASTMangler.h │ ├── ASTNode.h │ ├── ASTPrinter.h │ ├── ASTScope.h │ ├── ASTScopeNodes.def │ ├── ASTSynthesis.h │ ├── ASTTypeIDZone.def │ ├── ASTTypeIDs.h │ ├── ASTVisitor.h │ ├── ASTWalker.h │ ├── AbstractSourceFileDepGraphFactory.h │ ├── AccessNotes.h │ ├── AccessRequests.h │ ├── AccessScope.h │ ├── AccessTypeIDZone.def │ ├── AccessorKind.h │ ├── AccessorKinds.def │ ├── ActorIsolation.h │ ├── AnyFunctionRef.h │ ├── AnyRequest.h │ ├── ArgumentList.h │ ├── Attr.h │ ├── AttrKind.h │ ├── AutoDiff.h │ ├── AvailabilityConstraint.h │ ├── AvailabilityContext.h │ ├── AvailabilityContextStorage.h │ ├── AvailabilityDomain.h │ ├── AvailabilityInference.h │ ├── AvailabilityQuery.h │ ├── AvailabilityRange.h │ ├── AvailabilityScope.h │ ├── AvailabilitySpec.h │ ├── Builtins.def │ ├── Builtins.h │ ├── CMakeLists.txt │ ├── CanTypeVisitor.h │ ├── CaptureInfo.h │ ├── CatchNode.h │ ├── ClangModuleLoader.h │ ├── ClangNode.h │ ├── ClangSwiftTypeCorrespondence.h │ ├── Comment.h │ ├── ConcreteDeclRef.h │ ├── Concurrency.h │ ├── ConformanceAttributes.h │ ├── ConformanceLookup.h │ ├── ConstTypeInfo.h │ ├── DebuggerClient.h │ ├── Decl.h │ ├── DeclAttr.def │ ├── DeclContext.h │ ├── DeclExportabilityVisitor.h │ ├── DeclNameLoc.h │ ├── DeclNodes.def │ ├── DefaultArgumentKind.h │ ├── DefineDiagnosticGroupsMacros.h │ ├── DefineDiagnosticMacros.h │ ├── DependencyCollector.h │ ├── DiagnosticArgument.h │ ├── DiagnosticBridge.h │ ├── DiagnosticConsumer.h │ ├── DiagnosticEngine.h │ ├── DiagnosticGroups.def │ ├── DiagnosticGroups.h │ ├── DiagnosticKind.h │ ├── DiagnosticList.h │ ├── DiagnosticSuppression.h │ ├── DiagnosticsAll.def │ ├── DiagnosticsClangImporter.def │ ├── DiagnosticsClangImporter.h │ ├── DiagnosticsCommon.def │ ├── DiagnosticsCommon.h │ ├── DiagnosticsDriver.def │ ├── DiagnosticsDriver.h │ ├── DiagnosticsFrontend.def │ ├── DiagnosticsFrontend.h │ ├── DiagnosticsIDE.def │ ├── DiagnosticsIDE.h │ ├── DiagnosticsIRGen.def │ ├── DiagnosticsIRGen.h │ ├── DiagnosticsModuleDiffer.def │ ├── DiagnosticsModuleDiffer.h │ ├── DiagnosticsParse.def │ ├── DiagnosticsParse.h │ ├── DiagnosticsRefactoring.def │ ├── DiagnosticsRefactoring.h │ ├── DiagnosticsSIL.def │ ├── DiagnosticsSIL.h │ ├── DiagnosticsSema.def │ ├── DiagnosticsSema.h │ ├── DistributedDecl.h │ ├── Effects.h │ ├── Evaluator.h │ ├── EvaluatorDependencies.h │ ├── ExistentialLayout.h │ ├── Expr.h │ ├── ExprNodes.def │ ├── ExtInfo.h │ ├── FeatureAvailability.def │ ├── FileSystem.h │ ├── FileUnit.h │ ├── FineGrainedDependencies.h │ ├── FineGrainedDependencyFormat.h │ ├── ForeignAsyncConvention.h │ ├── ForeignErrorConvention.h │ ├── ForeignInfo.h │ ├── FreestandingMacroExpansion.h │ ├── FunctionRefInfo.h │ ├── GenericEnvironment.h │ ├── GenericParamKey.h │ ├── GenericParamList.h │ ├── GenericSignature.h │ ├── GenericTypeParamKind.h │ ├── IRGenOptions.h │ ├── IRGenRequests.h │ ├── IRGenTypeIDZone.def │ ├── Identifier.h │ ├── IfConfigClause.h │ ├── IfConfigClauseRangeInfo.h │ ├── Import.h │ ├── ImportCache.h │ ├── InFlightSubstitution.h │ ├── IndexSubset.h │ ├── Initializer.h │ ├── KnownDecls.def │ ├── KnownFoundationEntities.def │ ├── KnownIdentifiers.def │ ├── KnownProtocols.def │ ├── KnownProtocols.h │ ├── KnownSDKDecls.def │ ├── KnownSDKTypes.def │ ├── KnownStdlibTypes.def │ ├── LayoutConstraint.h │ ├── LayoutConstraintKind.h │ ├── LazyResolver.h │ ├── LifetimeAnnotation.h │ ├── LifetimeDependence.h │ ├── LinkLibrary.h │ ├── LocalArchetypeRequirementCollector.h │ ├── LocalizationLanguages.def │ ├── LookupKinds.h │ ├── MacroDeclaration.h │ ├── MacroDefinition.h │ ├── MacroDiscriminatorContext.h │ ├── MagicIdentifierKinds.def │ ├── Module.h │ ├── ModuleDependencies.h │ ├── ModuleLoader.h │ ├── ModuleNameLookup.h │ ├── NameLookup.h │ ├── NameLookupRequests.h │ ├── NameLookupTypeIDZone.def │ ├── ObjCSelectorFamily.def │ ├── OperatorNameLookup.h │ ├── Ownership.h │ ├── PackConformance.h │ ├── PackExpansionMatcher.h │ ├── ParameterList.h │ ├── ParseRequests.h │ ├── ParseTypeIDZone.def │ ├── Pattern.h │ ├── PatternNodes.def │ ├── PlatformConditionKinds.def │ ├── PlatformKind.h │ ├── PlatformKindUtils.h │ ├── PlatformKinds.def │ ├── PluginLoader.h │ ├── PluginRegistry.h │ ├── PotentialMacroExpansions.h │ ├── PrettyStackTrace.h │ ├── PrintOptions.h │ ├── PropertyWrappers.h │ ├── ProtocolAssociations.h │ ├── ProtocolConformance.h │ ├── ProtocolConformanceOptions.h │ ├── ProtocolConformanceRef.h │ ├── RawComment.h │ ├── ReferenceCounting.h │ ├── ReferenceStorage.def │ ├── RequestCache.h │ ├── Requirement.h │ ├── RequirementEnvironment.h │ ├── RequirementKind.h │ ├── RequirementMatch.h │ ├── RequirementSignature.h │ ├── ResilienceExpansion.h │ ├── RuntimeVersions.def │ ├── SILGenRequests.h │ ├── SILGenTypeIDZone.def │ ├── SILLayout.h │ ├── SILOptimizerRequests.h │ ├── SILOptimizerTypeIDZone.def │ ├── SILOptions.h │ ├── SILThunkKind.h │ ├── SearchPathOptions.h │ ├── SemanticAttrs.def │ ├── SemanticAttrs.h │ ├── SimpleRequest.h │ ├── SourceFile.h │ ├── SourceFileExtras.h │ ├── Stmt.h │ ├── StmtNodes.def │ ├── StorageImpl.h │ ├── SubstitutionMap.h │ ├── SwiftNameTranslation.h │ ├── SynthesizedFileUnit.h │ ├── TBDGenRequests.h │ ├── TBDGenTypeIDZone.def │ ├── ThrownErrorDestination.h │ ├── TokenKinds.def │ ├── Type.h │ ├── TypeAlignments.h │ ├── TypeAttr.def │ ├── TypeCheckRequests.h │ ├── TypeCheckerTypeIDZone.def │ ├── TypeDeclFinder.h │ ├── TypeDifferenceVisitor.h │ ├── TypeExpansionContext.h │ ├── TypeLoc.h │ ├── TypeMatcher.h │ ├── TypeMemberVisitor.h │ ├── TypeNodes.def │ ├── TypeOrExtensionDecl.h │ ├── TypeRepr.h │ ├── TypeReprNodes.def │ ├── TypeResolutionStage.h │ ├── TypeTransform.h │ ├── TypeVisitor.h │ ├── TypeWalker.h │ ├── Types.h │ ├── USRGeneration.h │ ├── UnsafeUse.h │ └── Witness.h │ ├── ASTSectionImporter │ └── ASTSectionImporter.h │ ├── Basic │ ├── APIntMap.h │ ├── AnyValue.h │ ├── ArrayRefView.h │ ├── AssertImplements.h │ ├── Assertions.h │ ├── BasicBridging.h │ ├── BasicBridgingImpl.h │ ├── BasicSourceInfo.h │ ├── BlockList.h │ ├── BlockListAction.def │ ├── BlotMapVector.h │ ├── BlotSetVector.h │ ├── BridgedSwiftObject.h │ ├── CASOptions.h │ ├── CTypeIDZone.def │ ├── CXXStdlibKind.h │ ├── Cache.h │ ├── Casting.h │ ├── ClusteredBitVector.h │ ├── ColorUtils.h │ ├── Compiler.h │ ├── Debug.h │ ├── Defer.h │ ├── DefineTypeIDZone.h │ ├── DiagnosticOptions.h │ ├── DiverseList.h │ ├── DiverseStack.h │ ├── Edit.h │ ├── EditorPlaceholder.h │ ├── EncodedSequence.h │ ├── EnumMap.h │ ├── EnumTraits.h │ ├── ExponentialGrowthAppendingBinaryByteStream.h │ ├── ExternalUnion.h │ ├── Feature.h │ ├── Features.def │ ├── FileSystem.h │ ├── FileTypes.def │ ├── FileTypes.h │ ├── Fingerprint.h │ ├── FixedBitSet.h │ ├── FlagSet.h │ ├── FlaggedPointer.h │ ├── FrozenMultiMap.h │ ├── FunctionBodySkipping.h │ ├── Generators.h │ ├── GraphNodeWorklist.h │ ├── HeaderFooterLayout.h │ ├── ImmutablePointerSet.h │ ├── ImplementTypeIDZone.h │ ├── IndexTrie.h │ ├── IndexedViewRange.h │ ├── InitializeSwiftModules.h │ ├── InlineBitfield.h │ ├── JSONSerialization.h │ ├── LLVM.h │ ├── LLVMExtras.h │ ├── LLVMInitialize.h │ ├── LangOptions.h │ ├── Lazy.h │ ├── LoadDynamicLibrary.h │ ├── Located.h │ ├── MD5Stream.h │ ├── MacroRoles.def │ ├── Malloc.h │ ├── Mangler.h │ ├── MathUtils.h │ ├── MultiMapCache.h │ ├── NoDiscard.h │ ├── Nullability.h │ ├── NullablePtr.h │ ├── OptimizationMode.h │ ├── OptionSet.h │ ├── OptionalEnum.h │ ├── OutputFileMap.h │ ├── OwnedString.h │ ├── Pack.h │ ├── ParseableOutput.h │ ├── PathRemapper.h │ ├── Platform.h │ ├── PlaygroundOption.h │ ├── PlaygroundOptions.def │ ├── PointerIntEnum.h │ ├── PrefixMap.h │ ├── PrettyStackTrace.h │ ├── PrimarySpecificPaths.h │ ├── PrimitiveParsing.h │ ├── PrintDiagnosticNamesMode.h │ ├── PriorityQueue.h │ ├── ProfileCounter.h │ ├── Program.h │ ├── QuotedString.h │ ├── Range.h │ ├── ReferenceDependencyKeys.h │ ├── RelativePointer.h │ ├── STLExtras.h │ ├── Sandbox.h │ ├── Sanitizers.def │ ├── Sanitizers.h │ ├── ScopedTracking.h │ ├── SimpleDisplay.h │ ├── SmallBitVector.h │ ├── SmallMap.h │ ├── SmallPtrSetVector.h │ ├── SourceLoc.h │ ├── SourceManager.h │ ├── StableHasher.h │ ├── Statistic.h │ ├── Statistics.def │ ├── StringExtras.h │ ├── SuccessorMap.h │ ├── SupplementaryOutputPaths.def │ ├── SupplementaryOutputPaths.h │ ├── SupportedFeatures.h │ ├── SwiftBridging.h │ ├── SwiftObjectHeader.h │ ├── TaggedUnion.h │ ├── TargetInfo.h │ ├── TaskQueue.h │ ├── ThreadSafeRefCounted.h │ ├── TopCollection.h │ ├── TypeID.h │ ├── TypeIDZones.def │ ├── UUID.h │ ├── Unicode.h │ ├── UninitializedArray.h │ ├── Unreachable.h │ ├── Version.h │ ├── WarningAsErrorRule.h │ └── type_traits.h │ ├── Bridging │ ├── ASTGen.h │ └── MacroEvaluation.h │ ├── CMakeLists.txt │ ├── ClangImporter │ ├── BuiltinMappedTypes.def │ ├── ClangImporter.h │ ├── ClangImporterRequests.h │ ├── ClangImporterTypeIDZone.def │ ├── ClangModule.h │ ├── SIMDMappedTypes.def │ ├── SwiftAbstractBasicReader.h │ └── SwiftAbstractBasicWriter.h │ ├── Concurrency │ └── Actor.h │ ├── Config.h.in │ ├── ConstExtract │ ├── ConstExtract.h │ ├── ConstExtractRequests.h │ └── ConstExtractTypeIDZone.def │ ├── Demangling │ ├── Demangle.h │ ├── DemangleNodes.def │ ├── Demangler.h │ ├── Errors.h │ ├── ManglingFlavor.h │ ├── ManglingMacros.h │ ├── ManglingUtils.h │ ├── NamespaceMacros.h │ ├── Punycode.h │ ├── StandardTypesMangling.def │ ├── TypeDecoder.h │ ├── TypeLookupError.h │ └── ValueWitnessMangling.def │ ├── DependencyScan │ ├── DependencyScanImpl.h │ ├── DependencyScanJSON.h │ ├── DependencyScanningTool.h │ ├── ModuleDependencyScanner.h │ ├── ScanDependencies.h │ ├── SerializedModuleDependencyCacheFormat.h │ └── StringUtils.h │ ├── Driver │ ├── Action.h │ ├── Compilation.h │ ├── Driver.h │ ├── FrontendUtil.h │ ├── Job.h │ ├── PrettyStackTrace.h │ ├── ToolChain.h │ └── Util.h │ ├── DriverTool │ └── DriverTool.h │ ├── Frontend │ ├── AccumulatingDiagnosticConsumer.h │ ├── BackDeploymentLibs.def │ ├── CASOutputBackends.h │ ├── CachedDiagnostics.h │ ├── CachingUtils.h │ ├── CompileJobCacheKey.h │ ├── CompileJobCacheResult.h │ ├── DiagnosticHelper.h │ ├── DiagnosticVerifier.h │ ├── Frontend.h │ ├── FrontendInputsAndOutputs.h │ ├── FrontendOptions.h │ ├── InputFile.h │ ├── MakeStyleDependencies.h │ ├── ModuleInterfaceLoader.h │ ├── ModuleInterfaceSupport.h │ ├── PrintingDiagnosticConsumer.h │ └── SerializedDiagnosticConsumer.h │ ├── FrontendTool │ └── FrontendTool.h │ ├── IDE │ ├── APIDigesterData.h │ ├── AfterPoundExprCompletion.h │ ├── ArgumentCompletion.h │ ├── CancellableResult.h │ ├── CodeCompletion.h │ ├── CodeCompletionCache.h │ ├── CodeCompletionConsumer.h │ ├── CodeCompletionContext.h │ ├── CodeCompletionResult.h │ ├── CodeCompletionResultPrinter.h │ ├── CodeCompletionResultSink.h │ ├── CodeCompletionResultType.h │ ├── CodeCompletionString.h │ ├── CodeCompletionStringPrinter.h │ ├── CommentConversion.h │ ├── CompletionLookup.h │ ├── CompletionOverrideLookup.h │ ├── ConformingMethodList.h │ ├── CursorInfo.h │ ├── DigesterEnums.def │ ├── ExprCompletion.h │ ├── FuzzyStringMatcher.h │ ├── IDEBridging.h │ ├── IDERequestIDZone.def │ ├── IDERequests.h │ ├── IDETypeIDZone.def │ ├── IDETypeIDs.h │ ├── ImportDepth.h │ ├── Indenting.h │ ├── KeyPathCompletion.h │ ├── ModuleInterfacePrinting.h │ ├── PossibleParamInfo.h │ ├── PostfixCompletion.h │ ├── REPLCodeCompletion.h │ ├── SelectedOverloadInfo.h │ ├── SourceEntityWalker.h │ ├── SwiftCompletionInfo.h │ ├── SyntaxModel.h │ ├── TypeCheckCompletionCallback.h │ ├── TypeContextInfo.h │ ├── UnresolvedMemberCompletion.h │ └── Utils.h │ ├── IDETool │ ├── CompileInstance.h │ ├── CompilerInvocation.h │ ├── IDEInspectionInstance.h │ └── SyntacticMacroExpansion.h │ ├── IRGen │ ├── GenericRequirement.h │ ├── IRABIDetailsProvider.h │ ├── IRGenPublic.h │ ├── IRGenSILPasses.h │ ├── IRSymbolVisitor.h │ ├── Linking.h │ ├── TBDGen.h │ └── ValueWitness.h │ ├── Immediate │ ├── Immediate.h │ └── SwiftMaterializationUnit.h │ ├── Index │ ├── Index.h │ ├── IndexDataConsumer.h │ ├── IndexRecord.h │ └── IndexSymbol.h │ ├── LLVMPasses │ ├── Passes.h │ └── PassesFwd.h │ ├── Localization │ └── LocalizationFormat.h │ ├── Markup │ ├── AST.h │ ├── ASTNodes.def │ ├── LineList.h │ ├── Markup.h │ ├── SimpleFields.def │ ├── SourceLoc.h │ └── XMLUtils.h │ ├── Migrator │ ├── ASTMigratorPass.h │ ├── EditorAdapter.h │ ├── FixitApplyDiagnosticConsumer.h │ ├── FixitFilter.h │ ├── MigrationState.h │ ├── Migrator.h │ ├── MigratorOptions.h │ ├── Replacement.h │ └── RewriteBufferEditsReceiver.h │ ├── Option │ ├── CMakeLists.txt │ ├── FrontendOptions.td │ ├── Options.h │ ├── Options.td │ └── SanitizerOptions.h │ ├── Parse │ ├── Confusables.def │ ├── Confusables.h │ ├── IDEInspectionCallbacks.h │ ├── Lexer.h │ ├── LexerState.h │ ├── ParseDeclName.h │ ├── ParseSILSupport.h │ ├── ParseVersion.h │ ├── Parser.h │ ├── ParserPosition.h │ ├── ParserResult.h │ ├── PatternBindingState.h │ ├── PersistentParserState.h │ └── Token.h │ ├── PrintAsClang │ ├── ClangMacros.def │ └── PrintAsClang.h │ ├── Refactoring │ ├── Refactoring.h │ ├── RefactoringKinds.def │ └── RenameLoc.h │ ├── Remote │ ├── CMemoryReader.h │ ├── ExternalTypeRefCache.h │ ├── Failure.h │ ├── FailureKinds.def │ ├── InProcessMemoryReader.h │ ├── MemoryReader.h │ ├── MetadataReader.h │ ├── RemoteAddress.h │ └── TypeInfoProvider.h │ ├── RemoteAST │ └── RemoteAST.h │ ├── RemoteInspection │ ├── BitMask.h │ ├── DescriptorFinder.h │ ├── GenericMetadataCacheEntry.h │ ├── MetadataSource.h │ ├── MetadataSourceBuilder.h │ ├── MetadataSources.def │ ├── Records.h │ ├── ReflectionContext.h │ ├── RuntimeHeaders │ │ ├── llvm-c │ │ │ ├── DataTypes.h │ │ │ ├── Error.h │ │ │ ├── ExternC.h │ │ │ └── Types.h │ │ └── llvm │ │ │ ├── ADT │ │ │ └── BitmaskEnum.h │ │ │ ├── BinaryFormat │ │ │ ├── COFF.h │ │ │ ├── DynamicTags.def │ │ │ ├── ELF.h │ │ │ ├── ELFRelocs │ │ │ │ ├── AArch64.def │ │ │ │ ├── AMDGPU.def │ │ │ │ ├── ARC.def │ │ │ │ ├── ARM.def │ │ │ │ ├── AVR.def │ │ │ │ ├── BPF.def │ │ │ │ ├── CSKY.def │ │ │ │ ├── Hexagon.def │ │ │ │ ├── Lanai.def │ │ │ │ ├── LoongArch.def │ │ │ │ ├── M68k.def │ │ │ │ ├── MSP430.def │ │ │ │ ├── Mips.def │ │ │ │ ├── PowerPC.def │ │ │ │ ├── PowerPC64.def │ │ │ │ ├── RISCV.def │ │ │ │ ├── Sparc.def │ │ │ │ ├── SystemZ.def │ │ │ │ ├── VE.def │ │ │ │ ├── Xtensa.def │ │ │ │ ├── i386.def │ │ │ │ └── x86_64.def │ │ │ ├── MachO.def │ │ │ ├── MachO.h │ │ │ ├── Magic.h │ │ │ ├── Swift.def │ │ │ └── Swift.h │ │ │ ├── Object │ │ │ ├── Binary.h │ │ │ ├── COFF.h │ │ │ ├── CVDebugRecord.h │ │ │ ├── Error.h │ │ │ ├── ObjectFile.h │ │ │ └── SymbolicFile.h │ │ │ ├── Support │ │ │ ├── BinaryByteStream.h │ │ │ ├── BinaryStream.h │ │ │ ├── BinaryStreamError.h │ │ │ ├── CBindingWrapping.h │ │ │ ├── ConvertUTF.h │ │ │ ├── DataTypes.h │ │ │ ├── Debug.h │ │ │ ├── Endian.h │ │ │ ├── Error.h │ │ │ ├── ErrorOr.h │ │ │ ├── FileOutputBuffer.h │ │ │ ├── Format.h │ │ │ ├── Memory.h │ │ │ ├── MemoryBuffer.h │ │ │ ├── MemoryBufferRef.h │ │ │ ├── VersionTuple.h │ │ │ └── raw_ostream.h │ │ │ └── TargetParser │ │ │ ├── SubtargetFeature.h │ │ │ └── Triple.h │ ├── RuntimeInternals.h │ ├── TypeLowering.h │ ├── TypeRef.h │ ├── TypeRefBuilder.h │ └── TypeRefs.def │ ├── Runtime │ ├── AccessibleFunction.h │ ├── Atomic.h │ ├── AtomicWaitQueue.h │ ├── Backtrace.h │ ├── Bincompat.h │ ├── BuiltinTypes.def │ ├── CMakeConfig.h.in │ ├── CMakeLists.txt │ ├── Casting.h │ ├── Concurrency.h │ ├── ConcurrencyHooks.def │ ├── Concurrent.h │ ├── Config.h │ ├── CrashInfo.h │ ├── CustomRRABI.h │ ├── Debug.h │ ├── DispatchShims.h │ ├── Enum.h │ ├── EnvironmentVariables.h │ ├── Error.h │ ├── Exception.h │ ├── Exclusivity.h │ ├── ExistentialContainer.h │ ├── FoundationSupport.h │ ├── FunctionReplacement.h │ ├── GenericMetadataBuilder.h │ ├── Heap.h │ ├── HeapObject.h │ ├── InstrumentsSupport.h │ ├── LibPrespecialized.h │ ├── Metadata.h │ ├── Numeric.h │ ├── ObjCBridge.h │ ├── Once.h │ ├── Paths.h │ ├── Portability.h │ ├── PrebuiltStringMap.h │ ├── Reflection.h │ ├── RuntimeFnWrappersGen.h │ ├── RuntimeFunctions.def │ ├── SwiftDtoa.h │ ├── TracingCommon.h │ ├── VoucherShims.h │ └── Win32.h │ ├── SIL │ ├── AbstractionPattern.h │ ├── AbstractionPatternGenerators.h │ ├── AddressUseKind.h │ ├── AddressWalker.h │ ├── ApplySite.h │ ├── BasicBlockBits.h │ ├── BasicBlockData.h │ ├── BasicBlockDatastructures.h │ ├── BasicBlockUtils.h │ ├── BitDataflow.h │ ├── BridgedTypes.def │ ├── CFG.h │ ├── CalleeCache.h │ ├── Consumption.h │ ├── DebugUtils.h │ ├── Dominance.h │ ├── DynamicCasts.h │ ├── FieldSensitivePrunedLiveness.h │ ├── FormalLinkage.h │ ├── GenericSpecializationMangler.h │ ├── InstWrappers.h │ ├── InstructionUtils.h │ ├── Lifetime.h │ ├── LinearLifetimeChecker.h │ ├── LoopInfo.h │ ├── MemAccessUtils.h │ ├── MemoryLocations.h │ ├── NodeBits.h │ ├── NodeDatastructures.h │ ├── Notifications.h │ ├── OSSALifetimeCompletion.h │ ├── OperandBits.h │ ├── OperandDatastructures.h │ ├── OptimizationRemark.h │ ├── OwnershipLiveness.h │ ├── OwnershipUseVisitor.h │ ├── OwnershipUtils.h │ ├── ParseTestSpecification.h │ ├── PatternMatch.h │ ├── PostOrder.h │ ├── PrettyStackTrace.h │ ├── Projection.h │ ├── PrunedLiveness.h │ ├── RuntimeEffect.h │ ├── SILAllocated.h │ ├── SILArgument.h │ ├── SILArgumentArrayRef.h │ ├── SILArgumentConvention.h │ ├── SILBasicBlock.h │ ├── SILBitfield.h │ ├── SILBridging.h │ ├── SILBridgingImpl.h │ ├── SILBuilder.h │ ├── SILBuiltinVisitor.h │ ├── SILCloner.h │ ├── SILConstants.h │ ├── SILCoverageMap.h │ ├── SILDebugInfoExpression.h │ ├── SILDebugScope.h │ ├── SILDebugVariable.h │ ├── SILDebuggerClient.h │ ├── SILDeclRef.h │ ├── SILDefaultOverrideTable.h │ ├── SILDefaultWitnessTable.h │ ├── SILDifferentiabilityWitness.h │ ├── SILFunction.h │ ├── SILFunctionBuilder.h │ ├── SILFunctionConventions.h │ ├── SILGlobalVariable.h │ ├── SILInstruction.h │ ├── SILInstructionWorklist.h │ ├── SILLinkage.h │ ├── SILLocation.h │ ├── SILModule.h │ ├── SILMoveOnlyDeinit.h │ ├── SILNode.h │ ├── SILNodes.def │ ├── SILPrintContext.h │ ├── SILProfiler.h │ ├── SILProperty.h │ ├── SILRemarkStreamer.h │ ├── SILSuccessor.h │ ├── SILSymbolVisitor.h │ ├── SILType.h │ ├── SILUndef.h │ ├── SILVTable.h │ ├── SILVTableVisitor.h │ ├── SILValue.h │ ├── SILVisitor.h │ ├── SILWitnessTable.h │ ├── SILWitnessVisitor.h │ ├── ScopedAddressUtils.h │ ├── StackList.h │ ├── TerminatorUtils.h │ ├── Test.h │ ├── TypeLowering.h │ ├── TypeSubstCloner.h │ └── ValueUtils.h │ ├── SILOptimizer │ ├── Analysis │ │ ├── ARCAnalysis.h │ │ ├── AccessStorageAnalysis.h │ │ ├── AccessSummaryAnalysis.h │ │ ├── AliasAnalysis.h │ │ ├── Analysis.def │ │ ├── Analysis.h │ │ ├── ArraySemantic.h │ │ ├── BasicCalleeAnalysis.h │ │ ├── BottomUpIPAnalysis.h │ │ ├── CallerAnalysis.h │ │ ├── ClassHierarchyAnalysis.h │ │ ├── ClosureScope.h │ │ ├── ColdBlockInfo.h │ │ ├── DeadEndBlocksAnalysis.h │ │ ├── DestructorAnalysis.h │ │ ├── DifferentiableActivityAnalysis.h │ │ ├── DominanceAnalysis.h │ │ ├── EpilogueARCAnalysis.h │ │ ├── FunctionOrder.h │ │ ├── IVAnalysis.h │ │ ├── IsSelfRecursiveAnalysis.h │ │ ├── LoopAnalysis.h │ │ ├── LoopRegionAnalysis.h │ │ ├── NonLocalAccessBlockAnalysis.h │ │ ├── PassManagerVerifierAnalysis.h │ │ ├── PostOrderAnalysis.h │ │ ├── ProgramTerminationAnalysis.h │ │ ├── ProtocolConformanceAnalysis.h │ │ ├── RCIdentityAnalysis.h │ │ ├── Reachability.h │ │ ├── RegionAnalysis.h │ │ ├── SimplifyInstruction.h │ │ ├── ValueTracking.h │ │ └── VisitBarrierAccessScopes.h │ ├── Differentiation │ │ ├── ADContext.h │ │ ├── AdjointValue.h │ │ ├── Common.h │ │ ├── DifferentiationInvoker.h │ │ ├── JVPCloner.h │ │ ├── LinearMapInfo.h │ │ ├── PullbackCloner.h │ │ ├── TangentBuilder.h │ │ ├── Thunk.h │ │ └── VJPCloner.h │ ├── IPO │ │ └── ClosureSpecializer.h │ ├── OptimizerBridging.h │ ├── OptimizerBridgingImpl.h │ ├── PassManager │ │ ├── PassManager.h │ │ ├── PassPipeline.def │ │ ├── PassPipeline.h │ │ ├── Passes.def │ │ ├── Passes.h │ │ ├── PrettyStackTrace.h │ │ └── Transforms.h │ ├── Transforms │ │ ├── AnalysisInvalidationTransform.h │ │ └── SimplifyCFG.h │ └── Utils │ │ ├── BasicBlockOptUtils.h │ │ ├── CFGOptUtils.h │ │ ├── CanonicalizeBorrowScope.h │ │ ├── CanonicalizeInstruction.h │ │ ├── CanonicalizeOSSALifetime.h │ │ ├── CastOptimizer.h │ │ ├── CompileTimeInterpolationUtils.h │ │ ├── ConstExpr.h │ │ ├── ConstantFolding.h │ │ ├── DebugOptUtils.h │ │ ├── Devirtualize.h │ │ ├── DifferentiationMangler.h │ │ ├── DistributedActor.h │ │ ├── Existential.h │ │ ├── GenericCloner.h │ │ ├── Generics.h │ │ ├── InstModCallbacks.h │ │ ├── InstOptUtils.h │ │ ├── InstructionDeleter.h │ │ ├── KeyPathProjector.h │ │ ├── LoopUtils.h │ │ ├── OptimizerStatsUtils.h │ │ ├── OwnershipOptUtils.h │ │ ├── PartitionOpError.def │ │ ├── PartitionUtils.h │ │ ├── PerformanceInlinerUtils.h │ │ ├── RegionIsolation.h │ │ ├── SCCVisitor.h │ │ ├── SILInliner.h │ │ ├── SILIsolationInfo.h │ │ ├── SILOptFunctionBuilder.h │ │ ├── SILSSAUpdater.h │ │ ├── ScopeOptUtils.h │ │ ├── SpecializationMangler.h │ │ ├── StackNesting.h │ │ ├── ValueLifetime.h │ │ └── VariableNameUtils.h │ ├── Sema │ ├── CSBindings.h │ ├── CSFix.h │ ├── CSTrail.def │ ├── CSTrail.h │ ├── CompletionContextFinder.h │ ├── Concurrency.h │ ├── Constraint.h │ ├── ConstraintGraph.h │ ├── ConstraintLocator.h │ ├── ConstraintLocatorPathElts.def │ ├── ConstraintSolverStats.def │ ├── ConstraintSystem.h │ ├── ContextualTypeInfo.h │ ├── FixBehavior.h │ ├── IDETypeChecking.h │ ├── IDETypeCheckingRequestIDZone.def │ ├── IDETypeCheckingRequests.h │ ├── OverloadChoice.h │ ├── PreparedOverload.h │ ├── SILTypeResolutionContext.h │ ├── SolutionResult.h │ ├── SourceLoader.h │ └── SyntacticElementTarget.h │ ├── Serialization │ ├── ScanningLoaders.h │ ├── Serialization.h │ ├── SerializationOptions.h │ ├── SerializedModuleLoader.h │ ├── SerializedSILLoader.h │ └── Validation.h │ ├── StaticMirror │ ├── BinaryScanImpl.h │ ├── BinaryScanningTool.h │ └── ObjectFileContext.h │ ├── Strings.h │ ├── Subsystems.h │ ├── SwiftDemangle │ ├── MangleHack.h │ ├── Platform.h │ └── SwiftDemangle.h │ ├── SwiftRemoteMirror │ ├── CMakeLists.txt │ ├── MemoryReaderInterface.h │ ├── Platform.h │ ├── SwiftRemoteMirror.h │ ├── SwiftRemoteMirrorTypes.h │ └── module.modulemap │ ├── SymbolGraphGen │ ├── DocumentationCategory.h │ ├── FragmentInfo.h │ ├── PathComponent.h │ ├── SymbolGraphGen.h │ └── SymbolGraphOptions.h │ └── Threading │ ├── ConditionVariable.h │ ├── Errors.h │ ├── Impl.h │ ├── Impl │ ├── C11.h │ ├── Darwin.h │ ├── Linux.h │ ├── Linux │ │ └── ulock.h │ ├── Nothreads.h │ ├── Pthreads.h │ ├── Win32.h │ ├── Win32 │ │ └── Win32Defs.h │ └── chrono_utils.h │ ├── Mutex.h │ ├── Once.h │ ├── ScopedLock.h │ ├── TLSKeys.h │ ├── Thread.h │ ├── ThreadLocalStorage.h │ └── ThreadSanitizer.h ├── lib ├── APIDigester │ ├── CMakeLists.txt │ ├── ModuleAnalyzerNodes.cpp │ └── ModuleDiagsConsumer.cpp ├── AST │ ├── ASTContext.cpp │ ├── ASTDemangler.cpp │ ├── ASTDumper.cpp │ ├── ASTMangler.cpp │ ├── ASTNode.cpp │ ├── ASTPrinter.cpp │ ├── ASTScope.cpp │ ├── ASTScopeCreation.cpp │ ├── ASTScopeLookup.cpp │ ├── ASTScopePrinting.cpp │ ├── ASTScopeSourceRange.cpp │ ├── ASTVerifier.cpp │ ├── ASTWalker.cpp │ ├── AbstractConformance.h │ ├── AbstractSourceFileDepGraphFactory.cpp │ ├── AccessNotes.cpp │ ├── AccessRequests.cpp │ ├── ActorIsolation.cpp │ ├── ArgumentList.cpp │ ├── Attr.cpp │ ├── AutoDiff.cpp │ ├── Availability.cpp │ ├── AvailabilityConstraint.cpp │ ├── AvailabilityContext.cpp │ ├── AvailabilityDomain.cpp │ ├── AvailabilityQuery.cpp │ ├── AvailabilityScope.cpp │ ├── AvailabilityScopeBuilder.cpp │ ├── AvailabilitySpec.cpp │ ├── Bridging │ │ ├── ASTContextBridging.cpp │ │ ├── AvailabilityBridging.cpp │ │ ├── CMakeLists.txt │ │ ├── DeclAttributeBridging.cpp │ │ ├── DeclBridging.cpp │ │ ├── DeclContextBridging.cpp │ │ ├── DiagnosticsBridging.cpp │ │ ├── ExprBridging.cpp │ │ ├── GenericsBridging.cpp │ │ ├── MiscBridging.cpp │ │ ├── PatternBridging.cpp │ │ ├── PluginBridging.cpp │ │ ├── StmtBridging.cpp │ │ ├── TypeAttributeBridging.cpp │ │ └── TypeReprBridging.cpp │ ├── Builtins.cpp │ ├── CMakeLists.txt │ ├── CaptureInfo.cpp │ ├── ClangSwiftTypeCorrespondence.cpp │ ├── ClangTypeConverter.cpp │ ├── ClangTypeConverter.h │ ├── ConcreteDeclRef.cpp │ ├── Concurrency.cpp │ ├── ConformanceLookup.cpp │ ├── ConformanceLookupTable.cpp │ ├── ConformanceLookupTable.h │ ├── Decl.cpp │ ├── DeclContext.cpp │ ├── DeclContextDumper.cpp │ ├── DeclNameLoc.cpp │ ├── DiagnosticArgument.cpp │ ├── DiagnosticBridge.cpp │ ├── DiagnosticConsumer.cpp │ ├── DiagnosticEngine.cpp │ ├── DiagnosticGroups.cpp │ ├── DiagnosticList.cpp │ ├── DistributedDecl.cpp │ ├── DocComment.cpp │ ├── Effects.cpp │ ├── Evaluator.cpp │ ├── ExistentialGeneralization.cpp │ ├── Expr.cpp │ ├── ExtInfo.cpp │ ├── FeatureSet.cpp │ ├── FeatureSet.h │ ├── FineGrainedDependencies.cpp │ ├── FineGrainedDependencyFormat.cpp │ ├── ForeignRepresentationInfo.h │ ├── FreestandingMacroExpansion.cpp │ ├── FrontendSourceFileDepGraphFactory.cpp │ ├── FrontendSourceFileDepGraphFactory.h │ ├── FunctionRefInfo.cpp │ ├── GenericEnvironment.cpp │ ├── GenericParamList.cpp │ ├── GenericSignature.cpp │ ├── Identifier.cpp │ ├── ImportCache.cpp │ ├── IndexSubset.cpp │ ├── InlinableText.cpp │ ├── InlinableText.h │ ├── LayoutConstraint.cpp │ ├── LifetimeDependence.cpp │ ├── LocalArchetypeRequirementCollector.cpp │ ├── Module.cpp │ ├── ModuleDependencies.cpp │ ├── ModuleLoader.cpp │ ├── ModuleNameLookup.cpp │ ├── NameLookup.cpp │ ├── NameLookupRequests.cpp │ ├── OperatorNameLookup.cpp │ ├── PackConformance.cpp │ ├── PackExpansionMatcher.cpp │ ├── Parameter.cpp │ ├── ParameterPack.cpp │ ├── Pattern.cpp │ ├── PlatformKindUtils.cpp │ ├── PluginLoader.cpp │ ├── PluginRegistry.cpp │ ├── PrettyStackTrace.cpp │ ├── ProtocolConformance.cpp │ ├── ProtocolConformanceRef.cpp │ ├── RawComment.cpp │ ├── Requirement.cpp │ ├── RequirementEnvironment.cpp │ ├── RequirementMachine │ │ ├── ApplyInverses.cpp │ │ ├── ConcreteContraction.cpp │ │ ├── ConcreteTypeWitness.cpp │ │ ├── Debug.h │ │ ├── Diagnostics.cpp │ │ ├── Diagnostics.h │ │ ├── GenericSignatureQueries.cpp │ │ ├── Histogram.h │ │ ├── HomotopyReduction.cpp │ │ ├── InterfaceType.cpp │ │ ├── KnuthBendix.cpp │ │ ├── MinimalConformances.cpp │ │ ├── NameLookup.cpp │ │ ├── NameLookup.h │ │ ├── NormalizeRewritePath.cpp │ │ ├── PropertyMap.cpp │ │ ├── PropertyMap.h │ │ ├── PropertyRelations.cpp │ │ ├── PropertyUnification.cpp │ │ ├── RequirementBuilder.cpp │ │ ├── RequirementLowering.cpp │ │ ├── RequirementLowering.h │ │ ├── RequirementMachine.cpp │ │ ├── RequirementMachine.h │ │ ├── RequirementMachineRequests.cpp │ │ ├── RewriteContext.cpp │ │ ├── RewriteContext.h │ │ ├── RewriteLoop.cpp │ │ ├── RewriteLoop.h │ │ ├── RewriteSystem.cpp │ │ ├── RewriteSystem.h │ │ ├── Rule.cpp │ │ ├── Rule.h │ │ ├── RuleBuilder.cpp │ │ ├── RuleBuilder.h │ │ ├── SimplifySubstitutions.cpp │ │ ├── Symbol.cpp │ │ ├── Symbol.h │ │ ├── Term.cpp │ │ ├── Term.h │ │ ├── Trie.h │ │ ├── TypeDifference.cpp │ │ └── TypeDifference.h │ ├── SILLayout.cpp │ ├── SearchPathOptions.cpp │ ├── Stmt.cpp │ ├── StorageImpl.cpp │ ├── SubstitutionMap.cpp │ ├── SubstitutionMapStorage.h │ ├── SwiftNameTranslation.cpp │ ├── Type.cpp │ ├── TypeCheckRequests.cpp │ ├── TypeDeclFinder.cpp │ ├── TypeJoinMeet.cpp │ ├── TypeRepr.cpp │ ├── TypeSubstitution.cpp │ ├── TypeWalker.cpp │ ├── USRGeneration.cpp │ └── UnqualifiedLookup.cpp ├── ASTGen │ ├── .swift-format │ ├── CMakeLists.txt │ ├── Package.swift │ ├── Sources │ │ ├── ASTGen │ │ │ ├── ASTGen+CompilerBuildConfiguration.swift │ │ │ ├── ASTGen.swift │ │ │ ├── Availability.swift │ │ │ ├── Bridge.swift │ │ │ ├── BuiltinPound.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── CompilerBuildConfiguration.swift │ │ │ ├── DeclAttrs.swift │ │ │ ├── Decls.swift │ │ │ ├── Diagnostics.swift │ │ │ ├── DiagnosticsBridge.swift │ │ │ ├── Exprs.swift │ │ │ ├── Fingerprint.swift │ │ │ ├── Generics.swift │ │ │ ├── LexicalLookup.swift │ │ │ ├── Literals.swift │ │ │ ├── ParameterClause.swift │ │ │ ├── Patterns.swift │ │ │ ├── Regex.swift │ │ │ ├── SourceFile.swift │ │ │ ├── StableHasher.swift │ │ │ ├── Stmts.swift │ │ │ ├── TypeAttrs.swift │ │ │ └── Types.swift │ │ ├── CMakeLists.txt │ │ ├── MacroEvaluation │ │ │ ├── CMakeLists.txt │ │ │ ├── Macros.swift │ │ │ ├── PluginHost.swift │ │ │ └── SourceManager.swift │ │ └── SwiftIDEUtilsBridging │ │ │ ├── CMakeLists.txt │ │ │ └── NameMatcherBridging.swift │ └── _RegexParser_Sources ├── ASTSectionImporter │ ├── ASTSectionImporter.cpp │ └── CMakeLists.txt ├── Basic │ ├── Assertions.cpp │ ├── BasicBridging.cpp │ ├── BasicSourceInfo.cpp │ ├── BlockList.cpp │ ├── CASOptions.cpp │ ├── CMakeLists.txt │ ├── Cache.cpp │ ├── ClusteredBitVector.cpp │ ├── Darwin │ │ └── Cache-Mac.inc │ ├── Default │ │ ├── Task.inc │ │ └── TaskQueue.inc │ ├── DiverseStack.cpp │ ├── Edit.cpp │ ├── EditorPlaceholder.cpp │ ├── ExponentialGrowthAppendingBinaryByteStream.cpp │ ├── Feature.cpp │ ├── FileSystem.cpp │ ├── FileTypes.cpp │ ├── Fingerprint.cpp │ ├── JSONSerialization.cpp │ ├── LangOptions.cpp │ ├── LoadDynamicLibrary.cpp │ ├── Located.cpp │ ├── Mangler.cpp │ ├── OutputFileMap.cpp │ ├── ParseableOutput.cpp │ ├── PartsOfSpeech.def │ ├── Platform.cpp │ ├── PrefixMap.cpp │ ├── PrettyStackTrace.cpp │ ├── PrimitiveParsing.cpp │ ├── Program.cpp │ ├── QuotedString.cpp │ ├── Sandbox.cpp │ ├── SmallBitVector.cpp │ ├── SourceLoc.cpp │ ├── StableHasher.cpp │ ├── Statistic.cpp │ ├── StringExtras.cpp │ ├── SupportedFeatures.cpp │ ├── TargetInfo.cpp │ ├── TaskQueue.cpp │ ├── ThreadSafeRefCounted.cpp │ ├── UUID.cpp │ ├── Unicode.cpp │ ├── UnicodeExtendedGraphemeClusters.cpp.gyb │ ├── Unix │ │ └── TaskQueue.inc │ ├── Version.cpp │ └── Windows │ │ └── TaskQueue.inc ├── CMakeLists.txt ├── ClangImporter │ ├── CFDatabase.def │ ├── CFTypeInfo.cpp │ ├── CFTypeInfo.h │ ├── CMakeLists.txt │ ├── CXXMethodBridging.h │ ├── ClangAdapter.cpp │ ├── ClangAdapter.h │ ├── ClangClassTemplateNamePrinter.cpp │ ├── ClangClassTemplateNamePrinter.h │ ├── ClangDerivedConformances.cpp │ ├── ClangDerivedConformances.h │ ├── ClangDiagnosticConsumer.cpp │ ├── ClangDiagnosticConsumer.h │ ├── ClangImporter.cpp │ ├── ClangImporterRequests.cpp │ ├── ClangIncludePaths.cpp │ ├── ClangIncludePaths.h │ ├── ClangModuleDependencyScanner.cpp │ ├── ClangSourceBufferImporter.cpp │ ├── ClangSourceBufferImporter.h │ ├── DWARFImporter.cpp │ ├── ImportDecl.cpp │ ├── ImportEnumInfo.cpp │ ├── ImportEnumInfo.h │ ├── ImportMacro.cpp │ ├── ImportName.cpp │ ├── ImportName.h │ ├── ImportType.cpp │ ├── ImporterImpl.h │ ├── InferredAttributes.def │ ├── MacroTable.def │ ├── MappedTypes.def │ ├── Serializability.cpp │ ├── SortedCFDatabase.def.gyb │ ├── SwiftBridging │ │ ├── CMakeLists.txt │ │ ├── module.modulemap │ │ └── swift │ │ │ ├── bridging │ │ │ └── bridging.modulemap │ ├── SwiftDeclSynthesizer.cpp │ ├── SwiftDeclSynthesizer.h │ ├── SwiftLookupTable.cpp │ └── SwiftLookupTable.h ├── CompilerSwiftSyntax │ └── CMakeLists.txt ├── ConstExtract │ ├── CMakeLists.txt │ └── ConstExtract.cpp ├── Demangling │ ├── CMakeLists.txt │ ├── Context.cpp │ ├── CrashReporter.cpp │ ├── CrashReporter.h │ ├── Demangler.cpp │ ├── DemanglerAssert.h │ ├── Errors.cpp │ ├── ManglingUtils.cpp │ ├── NodeDumper.cpp │ ├── NodePrinter.cpp │ ├── OldDemangler.cpp │ ├── OldRemangler.cpp │ ├── Punycode.cpp │ ├── Remangler.cpp │ └── RemanglerBase.h ├── DependencyScan │ ├── CMakeLists.txt │ ├── DependencyScanJSON.cpp │ ├── DependencyScanningTool.cpp │ ├── ModuleDependencyCacheSerialization.cpp │ ├── ModuleDependencyScanner.cpp │ ├── ScanDependencies.cpp │ └── StringUtils.cpp ├── Driver │ ├── Action.cpp │ ├── CMakeLists.txt │ ├── Compilation.cpp │ ├── DarwinToolChains.cpp │ ├── Driver.cpp │ ├── FrontendUtil.cpp │ ├── Job.cpp │ ├── PrettyStackTrace.cpp │ ├── ToolChain.cpp │ ├── ToolChains.cpp │ ├── ToolChains.h │ ├── UnixToolChains.cpp │ ├── WebAssemblyToolChains.cpp │ └── WindowsToolChains.cpp ├── DriverTool │ ├── CMakeLists.txt │ ├── SwiftCacheToolOptions.td │ ├── autolink_extract_main.cpp │ ├── driver.cpp │ ├── modulewrap_main.cpp │ ├── sil_func_extractor_main.cpp │ ├── sil_llvm_gen_main.cpp │ ├── sil_nm_main.cpp │ ├── sil_opt_main.cpp │ ├── sil_passpipeline_dumper_main.cpp │ ├── swift_api_digester_main.cpp │ ├── swift_cache_tool_main.cpp │ ├── swift_dependency_tool_main.cpp │ ├── swift_llvm_opt_main.cpp │ ├── swift_parse_test_main.cpp │ ├── swift_symbolgraph_extract_main.cpp │ └── swift_synthesize_interface_main.cpp ├── Frontend │ ├── ArgsToFrontendInputsConverter.cpp │ ├── ArgsToFrontendInputsConverter.h │ ├── ArgsToFrontendOptionsConverter.cpp │ ├── ArgsToFrontendOptionsConverter.h │ ├── ArgsToFrontendOutputsConverter.cpp │ ├── ArgsToFrontendOutputsConverter.h │ ├── CASOutputBackends.cpp │ ├── CMakeLists.txt │ ├── CachedDiagnostics.cpp │ ├── CachingUtils.cpp │ ├── CompileJobCacheKey.cpp │ ├── CompileJobCacheResult.cpp │ ├── CompilerInvocation.cpp │ ├── DependencyVerifier.cpp │ ├── DiagnosticHelper.cpp │ ├── DiagnosticVerifier.cpp │ ├── Frontend.cpp │ ├── FrontendInputsAndOutputs.cpp │ ├── FrontendOptions.cpp │ ├── MakeStyleDependencies.cpp │ ├── ModuleInterfaceBuilder.cpp │ ├── ModuleInterfaceBuilder.h │ ├── ModuleInterfaceLoader.cpp │ ├── ModuleInterfaceSupport.cpp │ ├── PrintingDiagnosticConsumer.cpp │ ├── Serialization.cpp │ └── SerializedDiagnosticConsumer.cpp ├── FrontendTool │ ├── CMakeLists.txt │ ├── Dependencies.h │ ├── FrontendTool.cpp │ ├── ImportedModules.cpp │ ├── LoadedModuleTrace.cpp │ ├── TBD.cpp │ └── TBD.h ├── IDE │ ├── APIDigesterData.cpp │ ├── AfterPoundExprCompletion.cpp │ ├── ArgumentCompletion.cpp │ ├── CMakeLists.txt │ ├── CodeCompletion.cpp │ ├── CodeCompletionCache.cpp │ ├── CodeCompletionContext.cpp │ ├── CodeCompletionDiagnostics.cpp │ ├── CodeCompletionDiagnostics.h │ ├── CodeCompletionResult.cpp │ ├── CodeCompletionResultBuilder.cpp │ ├── CodeCompletionResultBuilder.h │ ├── CodeCompletionResultPrinter.cpp │ ├── CodeCompletionResultType.cpp │ ├── CodeCompletionString.cpp │ ├── CodeCompletionStringPrinter.cpp │ ├── CommentConversion.cpp │ ├── CompletionLookup.cpp │ ├── CompletionOverrideLookup.cpp │ ├── ConformingMethodList.cpp │ ├── CursorInfo.cpp │ ├── ExprCompletion.cpp │ ├── ExprContextAnalysis.cpp │ ├── ExprContextAnalysis.h │ ├── Formatting.cpp │ ├── FuzzyStringMatcher.cpp │ ├── IDEBridging.cpp │ ├── IDERequests.cpp │ ├── IDETypeChecking.cpp │ ├── ImportDepth.cpp │ ├── KeyPathCompletion.cpp │ ├── ModuleInterfacePrinting.cpp │ ├── PostfixCompletion.cpp │ ├── REPLCodeCompletion.cpp │ ├── SelectedOverloadInfo.cpp │ ├── SourceEntityWalker.cpp │ ├── SwiftSourceDocInfo.cpp │ ├── SyntaxModel.cpp │ ├── TypeCheckCompletionCallback.cpp │ ├── TypeContextInfo.cpp │ ├── UnresolvedMemberCompletion.cpp │ └── Utils.cpp ├── IDETool │ ├── CMakeLists.txt │ ├── CompileInstance.cpp │ ├── CompilerInvocation.cpp │ ├── DependencyChecking.cpp │ ├── DependencyChecking.h │ ├── IDEInspectionInstance.cpp │ └── SyntacticMacroExpansion.cpp ├── IRGen │ ├── APIGen.cpp │ ├── APIGen.h │ ├── Address.h │ ├── AllocStackHoisting.cpp │ ├── BitPatternBuilder.h │ ├── BitPatternReader.h │ ├── CMakeLists.txt │ ├── CallEmission.h │ ├── Callee.h │ ├── ClassLayout.cpp │ ├── ClassLayout.h │ ├── ClassMetadataVisitor.h │ ├── ClassTypeInfo.h │ ├── ConformanceDescription.h │ ├── ConstantBuilder.h │ ├── DebugTypeInfo.cpp │ ├── DebugTypeInfo.h │ ├── DominancePoint.h │ ├── DominanceScope.h │ ├── EntryPointArgumentEmission.h │ ├── EnumMetadataVisitor.h │ ├── EnumPayload.cpp │ ├── EnumPayload.h │ ├── Explosion.h │ ├── ExtendedExistential.h │ ├── ExtraInhabitants.cpp │ ├── ExtraInhabitants.h │ ├── Field.h │ ├── FixedTypeInfo.h │ ├── ForeignClassMetadataVisitor.h │ ├── Fulfillment.cpp │ ├── Fulfillment.h │ ├── GenArchetype.cpp │ ├── GenArchetype.h │ ├── GenArray.cpp │ ├── GenBuiltin.cpp │ ├── GenBuiltin.h │ ├── GenCall.cpp │ ├── GenCall.h │ ├── GenCast.cpp │ ├── GenCast.h │ ├── GenClangDecl.cpp │ ├── GenClangType.cpp │ ├── GenClass.cpp │ ├── GenClass.h │ ├── GenConcurrency.cpp │ ├── GenConcurrency.h │ ├── GenConstant.cpp │ ├── GenConstant.h │ ├── GenControl.cpp │ ├── GenCoro.cpp │ ├── GenCoverage.cpp │ ├── GenDecl.cpp │ ├── GenDecl.h │ ├── GenDiffFunc.cpp │ ├── GenDiffWitness.cpp │ ├── GenDistributed.cpp │ ├── GenDistributed.h │ ├── GenEnum.cpp │ ├── GenEnum.h │ ├── GenExistential.cpp │ ├── GenExistential.h │ ├── GenFunc.cpp │ ├── GenFunc.h │ ├── GenHasSymbol.cpp │ ├── GenHeap.cpp │ ├── GenHeap.h │ ├── GenInit.cpp │ ├── GenIntegerLiteral.cpp │ ├── GenIntegerLiteral.h │ ├── GenKeyPath.cpp │ ├── GenKeyPath.h │ ├── GenMeta.cpp │ ├── GenMeta.h │ ├── GenObjC.cpp │ ├── GenObjC.h │ ├── GenOpaque.cpp │ ├── GenOpaque.h │ ├── GenPack.cpp │ ├── GenPack.h │ ├── GenPointerAuth.cpp │ ├── GenPointerAuth.h │ ├── GenPoly.cpp │ ├── GenPoly.h │ ├── GenProto.cpp │ ├── GenProto.h │ ├── GenRecord.h │ ├── GenReflection.cpp │ ├── GenStruct.cpp │ ├── GenStruct.h │ ├── GenThunk.cpp │ ├── GenTuple.cpp │ ├── GenTuple.h │ ├── GenType.cpp │ ├── GenType.h │ ├── GenValueWitness.cpp │ ├── GenValueWitness.h │ ├── GenericArguments.h │ ├── GenericRequirement.h │ ├── HeapTypeInfo.h │ ├── IRABIDetailsProvider.cpp │ ├── IRBuilder.h │ ├── IRGen.cpp │ ├── IRGen.h │ ├── IRGenDebugInfo.cpp │ ├── IRGenDebugInfo.h │ ├── IRGenFunction.cpp │ ├── IRGenFunction.h │ ├── IRGenMangler.cpp │ ├── IRGenMangler.h │ ├── IRGenModule.cpp │ ├── IRGenModule.h │ ├── IRGenRequests.cpp │ ├── IRGenSIL.cpp │ ├── IRGenSILPasses.cpp │ ├── IRSymbolVisitor.cpp │ ├── IndirectTypeInfo.h │ ├── LegacyLayoutFormat.h │ ├── Linking.cpp │ ├── LoadableByAddress.cpp │ ├── LoadableTypeInfo.h │ ├── LocalTypeData.cpp │ ├── LocalTypeData.h │ ├── LocalTypeDataKind.h │ ├── MemberAccessStrategy.h │ ├── MetadataLayout.cpp │ ├── MetadataLayout.h │ ├── MetadataPath.h │ ├── MetadataRequest.cpp │ ├── MetadataRequest.h │ ├── MetadataSource.h │ ├── MetadataVisitor.h │ ├── NativeConventionSchema.h │ ├── NecessaryBindings.h │ ├── NominalMetadataVisitor.h │ ├── NonFixedTypeInfo.h │ ├── Outlining.cpp │ ├── Outlining.h │ ├── PackMetadataMarkerInserter.cpp │ ├── ProtocolInfo.h │ ├── ReferenceTypeInfo.h │ ├── ResilientTypeInfo.h │ ├── ScalarPairTypeInfo.h │ ├── ScalarTypeInfo.h │ ├── Signature.h │ ├── StructLayout.cpp │ ├── StructLayout.h │ ├── StructMetadataVisitor.h │ ├── SwiftTargetInfo.cpp │ ├── SwiftTargetInfo.h │ ├── SwitchBuilder.h │ ├── TBDGen.cpp │ ├── TBDGenRequests.cpp │ ├── TBDGenVisitor.h │ ├── Temporary.h │ ├── TupleMetadataVisitor.h │ ├── TypeInfo.h │ ├── TypeLayout.cpp │ ├── TypeLayout.h │ ├── TypeLayoutDumper.cpp │ ├── TypeLayoutDumper.h │ ├── TypeLayoutVerifier.cpp │ ├── TypeVisitor.h │ ├── WitnessIndex.h │ └── ldPlatformKinds.def ├── Immediate │ ├── CMakeLists.txt │ ├── Immediate.cpp │ ├── ImmediateImpl.h │ └── SwiftMaterializationUnit.cpp ├── Index │ ├── CMakeLists.txt │ ├── Index.cpp │ ├── IndexDataConsumer.cpp │ ├── IndexRecord.cpp │ └── IndexSymbol.cpp ├── LLVMPasses │ ├── ARCEntryPointBuilder.h │ ├── CMakeLists.txt │ ├── LLVMARCContract.cpp │ ├── LLVMARCOpts.cpp │ ├── LLVMARCOpts.h │ ├── LLVMEmitAsyncEntryReturnMetadata.cpp │ ├── LLVMInlineTree.cpp │ ├── LLVMMergeFunctions.cpp │ ├── LLVMSwift.def │ ├── LLVMSwiftAA.cpp │ └── LLVMSwiftRCIdentity.cpp ├── Localization │ ├── CMakeLists.txt │ └── LocalizationFormat.cpp ├── Macros │ ├── CMakeLists.txt │ └── Sources │ │ ├── ObservationMacros │ │ ├── Availability.swift │ │ ├── CMakeLists.txt │ │ ├── Extensions.swift │ │ └── ObservableMacro.swift │ │ └── SwiftMacros │ │ ├── CMakeLists.txt │ │ ├── DebugDescriptionMacro.swift │ │ ├── DistributedResolvableMacro.swift │ │ ├── OptionSetMacro.swift │ │ ├── SwiftifyImportMacro.swift │ │ ├── SyntaxExtensions.swift │ │ └── TaskLocalMacro.swift ├── Markup │ ├── AST.cpp │ ├── CMakeLists.txt │ ├── LineList.cpp │ └── Markup.cpp ├── Migrator │ ├── APIDiffMigratorPass.cpp │ ├── CMakeLists.txt │ ├── Diff.h │ ├── EditorAdapter.cpp │ ├── FixitApplyDiagnosticConsumer.cpp │ ├── MigrationState.cpp │ ├── Migrator.cpp │ ├── OptionalTryMigratorPass.cpp │ ├── README.md │ ├── RewriteBufferEditsReceiver.cpp │ ├── ios4.json │ ├── ios42.json │ ├── macos4.json │ ├── macos42.json │ ├── overlay4.json │ ├── overlay42.json │ ├── tvos4.json │ ├── tvos42.json │ ├── watchos4.json │ └── watchos42.json ├── Option │ ├── CMakeLists.txt │ ├── Options.cpp │ ├── SanitizerOptions.cpp │ └── features.json ├── Parse │ ├── CMakeLists.txt │ ├── Confusables.cpp │ ├── Lexer.cpp │ ├── ParseDecl.cpp │ ├── ParseDeclName.cpp │ ├── ParseExpr.cpp │ ├── ParseGeneric.cpp │ ├── ParseIfConfig.cpp │ ├── ParsePattern.cpp │ ├── ParseRegex.cpp │ ├── ParseRequests.cpp │ ├── ParseStmt.cpp │ ├── ParseType.cpp │ ├── ParseVersion.cpp │ ├── Parser.cpp │ └── PersistentParserState.cpp ├── PrintAsClang │ ├── CMakeLists.txt │ ├── ClangSyntaxPrinter.cpp │ ├── ClangSyntaxPrinter.h │ ├── DeclAndTypePrinter.cpp │ ├── DeclAndTypePrinter.h │ ├── ModuleContentsWriter.cpp │ ├── ModuleContentsWriter.h │ ├── OutputLanguageMode.h │ ├── PrimitiveTypeMapping.cpp │ ├── PrimitiveTypeMapping.h │ ├── PrintAsClang.cpp │ ├── PrintClangClassType.cpp │ ├── PrintClangClassType.h │ ├── PrintClangFunction.cpp │ ├── PrintClangFunction.h │ ├── PrintClangValueType.cpp │ ├── PrintClangValueType.h │ ├── PrintSwiftToClangCoreScaffold.cpp │ ├── PrintSwiftToClangCoreScaffold.h │ ├── SwiftToClangInteropContext.cpp │ ├── SwiftToClangInteropContext.h │ ├── _SwiftCxxInteroperability.h │ ├── _SwiftStdlibCxxOverlay.h │ └── experimental-interoperability-version.json ├── Refactoring │ ├── AddEquatableConformance.cpp │ ├── AddExplicitCodableImplementation.cpp │ ├── Async │ │ ├── AsyncConverter.cpp │ │ ├── AsyncHandlerDesc.cpp │ │ ├── AsyncRefactoring.h │ │ ├── AsyncRefactorings.cpp │ │ ├── CallbackClassifier.cpp │ │ ├── CallbackCondition.cpp │ │ ├── DeclCollector.cpp │ │ ├── DeclReferenceFinder.cpp │ │ ├── ReferenceCollector.cpp │ │ ├── ScopedDeclCollector.cpp │ │ ├── Utils.cpp │ │ └── Utils.h │ ├── CMakeLists.txt │ ├── CollapseNestedIfStmt.cpp │ ├── ContextFinder.h │ ├── ConvertGuardExprToIfLetExpr.cpp │ ├── ConvertIfLetExprToGuardExpr.cpp │ ├── ConvertStringConcatenationToInterpolation.cpp │ ├── ConvertToComputedProperty.cpp │ ├── ConvertToDoCatch.cpp │ ├── ConvertToSwitchStmt.cpp │ ├── ConvertToTernaryExpr.cpp │ ├── ExpandMacro.cpp │ ├── ExpandSwitchCases.cpp │ ├── ExpandTernaryExpr.cpp │ ├── ExtractExpr.cpp │ ├── ExtractExprBase.cpp │ ├── ExtractExprBase.h │ ├── ExtractFunction.cpp │ ├── ExtractRepeatedExpr.cpp │ ├── FillProtocolStubs.cpp │ ├── LocalRename.cpp │ ├── LocalizeString.cpp │ ├── MemberwiseInitLocalRefactoring.cpp │ ├── MoveMembersToExtension.cpp │ ├── Refactoring.cpp │ ├── RefactoringAction.cpp │ ├── RefactoringActions.h │ ├── ReplaceBodiesWithFatalError.cpp │ ├── SimplifyNumberLiteral.cpp │ ├── SyntacticRename.cpp │ ├── SyntacticRenameRangeDetails.cpp │ ├── TrailingClosure.cpp │ ├── Utils.cpp │ └── Utils.h ├── RemoteAST │ ├── CMakeLists.txt │ ├── InProcessMemoryReader.cpp │ └── RemoteAST.cpp ├── SIL │ ├── CMakeLists.txt │ ├── IR │ │ ├── AbstractionPattern.cpp │ │ ├── ApplySite.cpp │ │ ├── Bridging.cpp │ │ ├── CMakeLists.txt │ │ ├── Linker.cpp │ │ ├── Linker.h │ │ ├── Notifications.cpp │ │ ├── OperandOwnership.cpp │ │ ├── SIL.cpp │ │ ├── SILArgument.cpp │ │ ├── SILBasicBlock.cpp │ │ ├── SILBuilder.cpp │ │ ├── SILConstants.cpp │ │ ├── SILCoverageMap.cpp │ │ ├── SILDebugInfoExpression.cpp │ │ ├── SILDebugScope.cpp │ │ ├── SILDeclRef.cpp │ │ ├── SILDefaultOverrideTable.cpp │ │ ├── SILDefaultWitnessTable.cpp │ │ ├── SILDifferentiabilityWitness.cpp │ │ ├── SILFunction.cpp │ │ ├── SILFunctionBuilder.cpp │ │ ├── SILFunctionType.cpp │ │ ├── SILGlobalVariable.cpp │ │ ├── SILInstruction.cpp │ │ ├── SILInstructions.cpp │ │ ├── SILLocation.cpp │ │ ├── SILModule.cpp │ │ ├── SILMoveOnlyDeinit.cpp │ │ ├── SILPrinter.cpp │ │ ├── SILProfiler.cpp │ │ ├── SILSuccessor.cpp │ │ ├── SILSymbolVisitor.cpp │ │ ├── SILType.cpp │ │ ├── SILTypeSubstitution.cpp │ │ ├── SILUndef.cpp │ │ ├── SILVTable.cpp │ │ ├── SILValue.cpp │ │ ├── SILWitnessTable.cpp │ │ ├── TypeLowering.cpp │ │ └── ValueOwnership.cpp │ ├── Parser │ │ ├── CMakeLists.txt │ │ ├── ParseSIL.cpp │ │ ├── ParseTestSpecification.cpp │ │ ├── SILParser.h │ │ ├── SILParserFunctionBuilder.h │ │ └── SILParserState.h │ ├── SIL.cpp │ ├── Utils │ │ ├── BasicBlockUtils.cpp │ │ ├── BitDataflow.cpp │ │ ├── CMakeLists.txt │ │ ├── CalleeCache.cpp │ │ ├── DebugUtils.cpp │ │ ├── Dominance.cpp │ │ ├── DynamicCasts.cpp │ │ ├── FieldSensitivePrunedLiveness.cpp │ │ ├── GenericSpecializationMangler.cpp │ │ ├── InstWrappers.cpp │ │ ├── InstructionUtils.cpp │ │ ├── LoopInfo.cpp │ │ ├── MemAccessUtils.cpp │ │ ├── MemoryLocations.cpp │ │ ├── OSSALifetimeCompletion.cpp │ │ ├── OptimizationRemark.cpp │ │ ├── OwnershipLiveness.cpp │ │ ├── OwnershipUtils.cpp │ │ ├── PrettyStackTrace.cpp │ │ ├── Projection.cpp │ │ ├── PrunedLiveness.cpp │ │ ├── SILBridging.cpp │ │ ├── SILInstructionWorklist.cpp │ │ ├── SILRemarkStreamer.cpp │ │ ├── ScopedAddressUtils.cpp │ │ ├── Test.cpp │ │ └── ValueUtils.cpp │ └── Verifier │ │ ├── CMakeLists.txt │ │ ├── DebugInfoVerifier.cpp │ │ ├── GuaranteedPhiVerifier.cpp │ │ ├── GuaranteedPhiVerifierPrivate.h │ │ ├── LinearLifetimeChecker.cpp │ │ ├── LinearLifetimeCheckerPrivate.h │ │ ├── MemoryLifetimeVerifier.cpp │ │ ├── SILOwnershipVerifier.cpp │ │ └── SILVerifier.cpp ├── SILGen │ ├── ASTVisitor.h │ ├── ArgumentScope.h │ ├── ArgumentSource.cpp │ ├── ArgumentSource.h │ ├── CMakeLists.txt │ ├── Callee.h │ ├── Cleanup.cpp │ ├── Cleanup.h │ ├── Condition.cpp │ ├── Condition.h │ ├── Conversion.h │ ├── ExecutorBreadcrumb.h │ ├── ExitableFullExpr.h │ ├── FormalEvaluation.cpp │ ├── FormalEvaluation.h │ ├── FunctionInputGenerator.h │ ├── Initialization.h │ ├── InitializeDistActorIdentity.h │ ├── JumpDest.h │ ├── LValue.h │ ├── ManagedValue.cpp │ ├── ManagedValue.h │ ├── RValue.cpp │ ├── RValue.h │ ├── ResultPlan.cpp │ ├── ResultPlan.h │ ├── SGFContext.h │ ├── SILGen.cpp │ ├── SILGen.h │ ├── SILGenApply.cpp │ ├── SILGenAvailability.cpp │ ├── SILGenBridging.cpp │ ├── SILGenBuilder.cpp │ ├── SILGenBuilder.h │ ├── SILGenBuiltin.cpp │ ├── SILGenConcurrency.cpp │ ├── SILGenConstructor.cpp │ ├── SILGenConvert.cpp │ ├── SILGenDecl.cpp │ ├── SILGenDestructor.cpp │ ├── SILGenDistributed.cpp │ ├── SILGenDynamicCast.cpp │ ├── SILGenDynamicCast.h │ ├── SILGenEpilog.cpp │ ├── SILGenExpr.cpp │ ├── SILGenForeignError.cpp │ ├── SILGenFunction.cpp │ ├── SILGenFunction.h │ ├── SILGenFunctionBuilder.h │ ├── SILGenGlobalVariable.cpp │ ├── SILGenLValue.cpp │ ├── SILGenLazyConformance.cpp │ ├── SILGenLocalArchetype.cpp │ ├── SILGenPack.cpp │ ├── SILGenPattern.cpp │ ├── SILGenPoly.cpp │ ├── SILGenProlog.cpp │ ├── SILGenRequests.cpp │ ├── SILGenStmt.cpp │ ├── SILGenThunk.cpp │ ├── SILGenTopLevel.cpp │ ├── SILGenTopLevel.h │ ├── SILGenType.cpp │ ├── Scope.cpp │ ├── Scope.h │ ├── SpecializedEmitter.h │ ├── SwitchEnumBuilder.cpp │ ├── SwitchEnumBuilder.h │ ├── TupleGenerators.h │ └── Varargs.h ├── SILOptimizer │ ├── ARC │ │ ├── ARCBBState.cpp │ │ ├── ARCBBState.h │ │ ├── ARCLoopOpts.cpp │ │ ├── ARCMatchingSet.cpp │ │ ├── ARCMatchingSet.h │ │ ├── ARCRegionState.cpp │ │ ├── ARCRegionState.h │ │ ├── ARCSequenceOptUtils.cpp │ │ ├── ARCSequenceOptUtils.h │ │ ├── ARCSequenceOpts.cpp │ │ ├── ARCSequenceOpts.h │ │ ├── CMakeLists.txt │ │ ├── GlobalARCSequenceDataflow.cpp │ │ ├── GlobalARCSequenceDataflow.h │ │ ├── GlobalLoopARCSequenceDataflow.cpp │ │ ├── GlobalLoopARCSequenceDataflow.h │ │ ├── RCStateTransition.cpp │ │ ├── RCStateTransition.def │ │ ├── RCStateTransition.h │ │ ├── RCStateTransitionVisitors.cpp │ │ ├── RCStateTransitionVisitors.h │ │ ├── RefCountState.cpp │ │ └── RefCountState.h │ ├── Analysis │ │ ├── ARCAnalysis.cpp │ │ ├── AccessStorageAnalysis.cpp │ │ ├── AccessSummaryAnalysis.cpp │ │ ├── AliasAnalysis.cpp │ │ ├── Analysis.cpp │ │ ├── ArraySemantic.cpp │ │ ├── BasicCalleeAnalysis.cpp │ │ ├── CMakeLists.txt │ │ ├── CallerAnalysis.cpp │ │ ├── ClassHierarchyAnalysis.cpp │ │ ├── ClosureScope.cpp │ │ ├── ColdBlockInfo.cpp │ │ ├── DeadEndBlocksAnalysis.cpp │ │ ├── DestructorAnalysis.cpp │ │ ├── DifferentiableActivityAnalysis.cpp │ │ ├── EpilogueARCAnalysis.cpp │ │ ├── FunctionOrder.cpp │ │ ├── IVAnalysis.cpp │ │ ├── IsSelfRecursiveAnalysis.cpp │ │ ├── LoopAnalysis.cpp │ │ ├── LoopRegionAnalysis.cpp │ │ ├── NonLocalAccessBlockAnalysis.cpp │ │ ├── PassManagerVerifierAnalysis.cpp │ │ ├── ProtocolConformanceAnalysis.cpp │ │ ├── RCIdentityAnalysis.cpp │ │ ├── Reachability.cpp │ │ ├── RegionAnalysis.cpp │ │ ├── SimplifyInstruction.cpp │ │ └── ValueTracking.cpp │ ├── CMakeLists.txt │ ├── Differentiation │ │ ├── ADContext.cpp │ │ ├── AdjointValue.cpp │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── DifferentiationInvoker.cpp │ │ ├── JVPCloner.cpp │ │ ├── LinearMapInfo.cpp │ │ ├── PullbackCloner.cpp │ │ ├── TangentBuilder.cpp │ │ ├── Thunk.cpp │ │ └── VJPCloner.cpp │ ├── FunctionSignatureTransforms │ │ ├── ArgumentExplosionTransform.cpp │ │ ├── CMakeLists.txt │ │ ├── DeadArgumentTransform.cpp │ │ ├── ExistentialSpecializer.cpp │ │ ├── ExistentialTransform.cpp │ │ ├── ExistentialTransform.h │ │ ├── FunctionSignatureOpts.cpp │ │ ├── FunctionSignatureOpts.h │ │ └── OwnedToGuaranteedTransform.cpp │ ├── IPO │ │ ├── CMakeLists.txt │ │ ├── CapturePropagation.cpp │ │ ├── ClosureSpecializer.cpp │ │ ├── CrossModuleOptimization.cpp │ │ ├── DeadFunctionElimination.cpp │ │ ├── GlobalPropertyOpt.cpp │ │ ├── LetPropertiesOpts.cpp │ │ └── UsePrespecialized.cpp │ ├── LoopTransforms │ │ ├── ArrayOpt.h │ │ ├── ArrayPropertyOpt.cpp │ │ ├── BoundsCheckOpts.cpp │ │ ├── CMakeLists.txt │ │ ├── COWArrayOpt.cpp │ │ ├── ForEachLoopUnroll.cpp │ │ ├── LICM.cpp │ │ ├── LoopRotate.cpp │ │ └── LoopUnroll.cpp │ ├── Mandatory │ │ ├── AccessEnforcementSelection.cpp │ │ ├── AccessMarkerElimination.cpp │ │ ├── AddressLowering.cpp │ │ ├── AddressLowering.h │ │ ├── AlwaysEmitConformanceMetadataPreservation.cpp │ │ ├── CMakeLists.txt │ │ ├── CapturePromotion.cpp │ │ ├── ClosureLifetimeFixup.cpp │ │ ├── ConstantPropagation.cpp │ │ ├── ConsumeOperatorCopyableAddressesChecker.cpp │ │ ├── ConsumeOperatorCopyableValuesChecker.cpp │ │ ├── DIMemoryUseCollector.cpp │ │ ├── DIMemoryUseCollector.h │ │ ├── DataflowDiagnostics.cpp │ │ ├── DebugInfoCanonicalizer.cpp │ │ ├── DefiniteInitialization.cpp │ │ ├── DiagnoseInvalidEscapingCaptures.cpp │ │ ├── DiagnoseLifetimeIssues.cpp │ │ ├── DiagnoseStaticExclusivity.cpp │ │ ├── DiagnoseUnnecessaryPreconcurrencyImports.cpp │ │ ├── DiagnoseUnreachable.cpp │ │ ├── DiagnosticDeadFunctionElimination.cpp │ │ ├── Differentiation.cpp │ │ ├── FlowIsolation.cpp │ │ ├── IRGenPrepare.cpp │ │ ├── LexicalLifetimeEliminator.cpp │ │ ├── LowerHopToActor.cpp │ │ ├── LowerTupleAddrConstructor.cpp │ │ ├── MandatoryInlining.cpp │ │ ├── MoveOnlyAddressCheckerTester.cpp │ │ ├── MoveOnlyAddressCheckerUtils.cpp │ │ ├── MoveOnlyAddressCheckerUtils.h │ │ ├── MoveOnlyBorrowToDestructureTester.cpp │ │ ├── MoveOnlyBorrowToDestructureUtils.cpp │ │ ├── MoveOnlyBorrowToDestructureUtils.h │ │ ├── MoveOnlyChecker.cpp │ │ ├── MoveOnlyDiagnostics.cpp │ │ ├── MoveOnlyDiagnostics.h │ │ ├── MoveOnlyObjectCheckerTester.cpp │ │ ├── MoveOnlyObjectCheckerUtils.cpp │ │ ├── MoveOnlyObjectCheckerUtils.h │ │ ├── MoveOnlyTempAllocationFromLetTester.cpp │ │ ├── MoveOnlyTypeUtils.cpp │ │ ├── MoveOnlyTypeUtils.h │ │ ├── MoveOnlyUtils.cpp │ │ ├── MoveOnlyUtils.h │ │ ├── MoveOnlyWrappedTypeEliminator.cpp │ │ ├── MovedAsyncVarDebugInfoPropagator.cpp │ │ ├── NestedSemanticFunctionCheck.cpp │ │ ├── OSLogOptimization.cpp │ │ ├── OptimizeHopToExecutor.cpp │ │ ├── OwnershipModelEliminator.cpp │ │ ├── PMOMemoryUseCollector.cpp │ │ ├── PMOMemoryUseCollector.h │ │ ├── PerformanceDiagnostics.cpp │ │ ├── PhiStorageOptimizer.cpp │ │ ├── PhiStorageOptimizer.h │ │ ├── PredictableMemOpt.cpp │ │ ├── RawSILInstLowering.cpp │ │ ├── ReferenceBindingTransform.cpp │ │ ├── RegionAnalysisInvalidationTransform.cpp │ │ ├── SILGenCleanup.cpp │ │ ├── SendNonSendable.cpp │ │ ├── ThunkLowering.cpp │ │ └── YieldOnceCheck.cpp │ ├── PassManager │ │ ├── CMakeLists.txt │ │ ├── PassManager.cpp │ │ ├── PassPipeline.cpp │ │ ├── Passes.cpp │ │ ├── PrettyStackTrace.cpp │ │ └── SILOptimizerRequests.cpp │ ├── SILCombiner │ │ ├── CMakeLists.txt │ │ ├── SILCombine.cpp │ │ ├── SILCombiner.h │ │ ├── SILCombinerApplyVisitors.cpp │ │ ├── SILCombinerBuiltinVisitors.cpp │ │ ├── SILCombinerCastVisitors.cpp │ │ ├── SILCombinerMiscVisitors.cpp │ │ └── Simplifications.def │ ├── SILOptimizer.cpp │ ├── SemanticARC │ │ ├── BorrowScopeOpts.cpp │ │ ├── CMakeLists.txt │ │ ├── Context.cpp │ │ ├── Context.h │ │ ├── CopyValueOpts.cpp │ │ ├── OwnedToGuaranteedPhiOpt.cpp │ │ ├── OwnershipConversionElimination.cpp │ │ ├── OwnershipLiveRange.cpp │ │ ├── OwnershipLiveRange.h │ │ ├── OwnershipPhiOperand.h │ │ ├── RedundantMoveValueElimination.cpp │ │ ├── SemanticARCOptVisitor.cpp │ │ ├── SemanticARCOptVisitor.h │ │ ├── SemanticARCOpts.cpp │ │ ├── SemanticARCOpts.h │ │ └── Transforms.h │ ├── Transforms │ │ ├── ARCCodeMotion.cpp │ │ ├── AccessEnforcementDom.cpp │ │ ├── AccessEnforcementOpts.cpp │ │ ├── AccessEnforcementReleaseSinking.cpp │ │ ├── AccessEnforcementWMO.cpp │ │ ├── AllocBoxToStack.cpp │ │ ├── ArrayCountPropagation.cpp │ │ ├── AssemblyVisionRemarkGenerator.cpp │ │ ├── CMakeLists.txt │ │ ├── COWOpts.cpp │ │ ├── CSE.cpp │ │ ├── ConditionForwarding.cpp │ │ ├── CopyForwarding.cpp │ │ ├── CopyPropagation.cpp │ │ ├── DeadCodeElimination.cpp │ │ ├── DeadObjectElimination.cpp │ │ ├── DestroyAddrHoisting.cpp │ │ ├── Devirtualizer.cpp │ │ ├── DifferentiabilityWitnessDevirtualizer.cpp │ │ ├── EagerSpecializer.cpp │ │ ├── GenericSpecializer.cpp │ │ ├── Outliner.cpp │ │ ├── PartialApplySimplification.cpp │ │ ├── PerformanceInliner.cpp │ │ ├── PhiArgumentOptimizations.cpp │ │ ├── PruneVTables.cpp │ │ ├── RedundantOverflowCheckRemoval.cpp │ │ ├── SILCodeMotion.cpp │ │ ├── SILLowerAggregateInstrs.cpp │ │ ├── SILMem2Reg.cpp │ │ ├── SILSROA.cpp │ │ ├── SimplifyCFG.cpp │ │ ├── Sink.cpp │ │ ├── SpeculativeDevirtualizer.cpp │ │ └── StringOptimization.cpp │ ├── UtilityPasses │ │ ├── AccessPathVerification.cpp │ │ ├── AccessStorageAnalysisDumper.cpp │ │ ├── AccessStorageDumper.cpp │ │ ├── AccessSummaryDumper.cpp │ │ ├── BasicCalleePrinter.cpp │ │ ├── BasicInstructionPropertyDumper.cpp │ │ ├── BugReducerTester.cpp │ │ ├── CFGPrinter.cpp │ │ ├── CMakeLists.txt │ │ ├── CallerAnalysisPrinter.cpp │ │ ├── ComputeDominanceInfo.cpp │ │ ├── ComputeLoopInfo.cpp │ │ ├── ConstantEvaluableSubsetChecker.cpp │ │ ├── ConstantEvaluatorTester.cpp │ │ ├── EpilogueARCMatcherDumper.cpp │ │ ├── EpilogueRetainReleaseMatcherDumper.cpp │ │ ├── FunctionOrderPrinter.cpp │ │ ├── IVInfoPrinter.cpp │ │ ├── InstCount.cpp │ │ ├── Link.cpp │ │ ├── LoopCanonicalizer.cpp │ │ ├── LoopInfoPrinter.cpp │ │ ├── LoopRegionPrinter.cpp │ │ ├── ModulePrinter.cpp │ │ ├── OwnershipDumper.cpp │ │ ├── OwnershipVerifierTextualErrorDumper.cpp │ │ ├── RCIdentityDumper.cpp │ │ ├── SILDebugInfoGenerator.cpp │ │ ├── SILSkippingChecker.cpp │ │ ├── SerializeSILPass.cpp │ │ ├── SimplifyUnreachableContainingBlocks.cpp │ │ ├── StripDebugInfo.cpp │ │ └── TestRunner.cpp │ └── Utils │ │ ├── BasicBlockOptUtils.cpp │ │ ├── CFGOptUtils.cpp │ │ ├── CMakeLists.txt │ │ ├── CanonicalizeBorrowScope.cpp │ │ ├── CanonicalizeInstruction.cpp │ │ ├── CanonicalizeOSSALifetime.cpp │ │ ├── CastOptimizer.cpp │ │ ├── CheckedCastBrJumpThreading.cpp │ │ ├── CompileTimeInterpolationUtils.cpp │ │ ├── ConstExpr.cpp │ │ ├── ConstantFolding.cpp │ │ ├── Devirtualize.cpp │ │ ├── DifferentiationMangler.cpp │ │ ├── DistributedActor.cpp │ │ ├── Existential.cpp │ │ ├── GenericCloner.cpp │ │ ├── Generics.cpp │ │ ├── InstOptUtils.cpp │ │ ├── InstructionDeleter.cpp │ │ ├── KeyPathProjector.cpp │ │ ├── LexicalDestroyFolding.cpp │ │ ├── LoopUtils.cpp │ │ ├── OnonePrespecializations.def │ │ ├── OptimizerBridging.cpp │ │ ├── OptimizerStatsUtils.cpp │ │ ├── OwnershipOptUtils.cpp │ │ ├── PartialApplyCombiner.cpp │ │ ├── PartitionUtils.cpp │ │ ├── PerformanceInlinerUtils.cpp │ │ ├── RegionIsolation.cpp │ │ ├── SILInliner.cpp │ │ ├── SILIsolationInfo.cpp │ │ ├── SILSSAUpdater.cpp │ │ ├── ShrinkBorrowScope.cpp │ │ ├── SpecializationMangler.cpp │ │ ├── StackNesting.cpp │ │ ├── ValueLifetime.cpp │ │ └── VariableNameUtils.cpp ├── Sema │ ├── AssociatedTypeInference.cpp │ ├── BuilderTransform.cpp │ ├── CMakeLists.txt │ ├── CSApply.cpp │ ├── CSBindings.cpp │ ├── CSDiagnostics.cpp │ ├── CSDiagnostics.h │ ├── CSFix.cpp │ ├── CSGen.cpp │ ├── CSOptimizer.cpp │ ├── CSRanking.cpp │ ├── CSSimplify.cpp │ ├── CSSolver.cpp │ ├── CSStep.cpp │ ├── CSStep.h │ ├── CSSyntacticElement.cpp │ ├── CSTrail.cpp │ ├── CodeSynthesis.cpp │ ├── CodeSynthesis.h │ ├── CodeSynthesisDistributedActor.cpp │ ├── Comment.cpp │ ├── CompletionContextFinder.cpp │ ├── ConstantnessSemaDiagnostics.cpp │ ├── Constraint.cpp │ ├── ConstraintGraph.cpp │ ├── ConstraintLocator.cpp │ ├── ConstraintSystem.cpp │ ├── DebuggerTestingTransform.cpp │ ├── DerivedConformance │ │ ├── DerivedConformance.cpp │ │ ├── DerivedConformance.h │ │ ├── DerivedConformanceActor.cpp │ │ ├── DerivedConformanceAdditiveArithmetic.cpp │ │ ├── DerivedConformanceCaseIterable.cpp │ │ ├── DerivedConformanceCodable.cpp │ │ ├── DerivedConformanceCodingKey.cpp │ │ ├── DerivedConformanceComparable.cpp │ │ ├── DerivedConformanceDifferentiable.cpp │ │ ├── DerivedConformanceDistributedActor.cpp │ │ ├── DerivedConformanceEquatableHashable.cpp │ │ ├── DerivedConformanceError.cpp │ │ └── DerivedConformanceRawRepresentable.cpp │ ├── IDETypeCheckingRequests.cpp │ ├── ImportResolution.cpp │ ├── InstrumenterSupport.cpp │ ├── InstrumenterSupport.h │ ├── LegalConstExprVerifier.cpp │ ├── LookupVisibleDecls.cpp │ ├── MiscDiagnostics.cpp │ ├── MiscDiagnostics.h │ ├── NonisolatedNonsendingByDefaultMigration.cpp │ ├── NonisolatedNonsendingByDefaultMigration.h │ ├── OpenedExistentials.cpp │ ├── OpenedExistentials.h │ ├── PCMacro.cpp │ ├── PlaygroundTransform.cpp │ ├── PreCheckTarget.cpp │ ├── ResilienceDiagnostics.cpp │ ├── SourceLoader.cpp │ ├── SyntacticElementTarget.cpp │ ├── TypeAccessScopeChecker.h │ ├── TypeCheckAccess.cpp │ ├── TypeCheckAccess.h │ ├── TypeCheckAttr.cpp │ ├── TypeCheckAttrABI.cpp │ ├── TypeCheckAvailability.cpp │ ├── TypeCheckAvailability.h │ ├── TypeCheckBitwise.cpp │ ├── TypeCheckBitwise.h │ ├── TypeCheckCaptures.cpp │ ├── TypeCheckCircularity.cpp │ ├── TypeCheckCodeCompletion.cpp │ ├── TypeCheckConcurrency.cpp │ ├── TypeCheckConcurrency.h │ ├── TypeCheckConstraints.cpp │ ├── TypeCheckDecl.cpp │ ├── TypeCheckDecl.h │ ├── TypeCheckDeclObjC.cpp │ ├── TypeCheckDeclOverride.cpp │ ├── TypeCheckDeclPrimary.cpp │ ├── TypeCheckDistributed.cpp │ ├── TypeCheckDistributed.h │ ├── TypeCheckEffects.cpp │ ├── TypeCheckEffects.h │ ├── TypeCheckExpr.cpp │ ├── TypeCheckExprObjC.cpp │ ├── TypeCheckGeneric.cpp │ ├── TypeCheckInvertible.cpp │ ├── TypeCheckInvertible.h │ ├── TypeCheckMacros.cpp │ ├── TypeCheckMacros.h │ ├── TypeCheckNameLookup.cpp │ ├── TypeCheckObjC.h │ ├── TypeCheckPattern.cpp │ ├── TypeCheckPropertyWrapper.cpp │ ├── TypeCheckProtocol.cpp │ ├── TypeCheckProtocol.h │ ├── TypeCheckRegex.cpp │ ├── TypeCheckRequestFunctions.cpp │ ├── TypeCheckStmt.cpp │ ├── TypeCheckStorage.cpp │ ├── TypeCheckSwitchStmt.cpp │ ├── TypeCheckType.cpp │ ├── TypeCheckType.h │ ├── TypeCheckUnsafe.cpp │ ├── TypeCheckUnsafe.h │ ├── TypeChecker.cpp │ ├── TypeChecker.h │ ├── TypeOfReference.cpp │ └── TypoCorrection.h ├── Serialization │ ├── BCReadingExtras.h │ ├── CMakeLists.txt │ ├── DeclTypeRecordNodes.def │ ├── Deserialization.cpp │ ├── DeserializationErrors.h │ ├── DeserializeSIL.cpp │ ├── DeserializeSIL.h │ ├── DocFormat.h │ ├── ModuleFile.cpp │ ├── ModuleFile.h │ ├── ModuleFileCoreTableInfo.h │ ├── ModuleFileSharedCore.cpp │ ├── ModuleFileSharedCore.h │ ├── ModuleFormat.h │ ├── SILFormat.h │ ├── SILSerializationFunctionBuilder.h │ ├── ScanningLoaders.cpp │ ├── Serialization.cpp │ ├── Serialization.h │ ├── SerializationFormat.h │ ├── SerializeDoc.cpp │ ├── SerializeSIL.cpp │ ├── SerializedModuleLoader.cpp │ ├── SerializedSILLoader.cpp │ └── SourceInfoFormat.h ├── StaticMirror │ ├── BinaryScanningTool.cpp │ ├── CMakeLists.txt │ └── ObjectFileContext.cpp ├── SwiftDemangle │ ├── CMakeLists.txt │ ├── MangleHack.cpp │ └── SwiftDemangle.cpp ├── SwiftRemoteInspection │ └── CMakeLists.txt ├── SwiftRemoteMirror │ └── CMakeLists.txt ├── SwiftSyntax │ └── CMakeLists.txt ├── SymbolGraphGen │ ├── AvailabilityMixin.cpp │ ├── AvailabilityMixin.h │ ├── CMakeLists.txt │ ├── DeclarationFragmentPrinter.cpp │ ├── DeclarationFragmentPrinter.h │ ├── Edge.cpp │ ├── Edge.h │ ├── FormatVersion.h │ ├── JSON.cpp │ ├── JSON.h │ ├── Symbol.cpp │ ├── Symbol.h │ ├── SymbolGraph.cpp │ ├── SymbolGraph.h │ ├── SymbolGraphASTWalker.cpp │ ├── SymbolGraphASTWalker.h │ └── SymbolGraphGen.cpp ├── Threading │ ├── C11.cpp │ ├── CMakeLists.txt │ ├── Errors.cpp │ ├── Linux.cpp │ ├── Pthreads.cpp │ ├── ThreadSanitizer.cpp │ └── Win32.cpp └── Tooling │ ├── CMakeLists.txt │ └── libSwiftScan │ ├── CMakeLists.txt │ ├── SwiftCaching.cpp │ ├── c-include-check.c │ ├── libSwiftScan.cpp │ └── libSwiftScan.exports ├── localization ├── CMakeLists.txt └── diagnostics │ └── .gitkeep ├── stdlib ├── CMakeLists.txt ├── Info.plist.in ├── cmake │ ├── WindowsVFS.yaml.in │ └── modules │ │ ├── AddSwiftStdlib.cmake │ │ ├── CompatibilityLibs.cmake │ │ ├── StdlibOptions.cmake │ │ └── SwiftSource.cmake ├── include │ └── llvm │ │ ├── ADT │ │ ├── ArrayRef.h │ │ ├── DenseMap.h │ │ ├── DenseMapInfo.h │ │ ├── DenseSet.h │ │ ├── Hashing.h │ │ ├── PointerIntPair.h │ │ ├── PointerUnion.h │ │ ├── STLExtras.h │ │ ├── ScopeExit.h │ │ ├── SmallPtrSet.h │ │ ├── SmallString.h │ │ ├── SmallVector.h │ │ ├── StringExtras.h │ │ ├── StringRef.h │ │ ├── StringSwitch.h │ │ ├── Twine.h │ │ ├── iterator.h │ │ └── iterator_range.h │ │ └── Support │ │ ├── AlignOf.h │ │ ├── Alignment.h │ │ ├── Allocator.h │ │ ├── AllocatorBase.h │ │ ├── Atomic.h │ │ ├── Casting.h │ │ ├── Compiler.h │ │ ├── ErrorHandling.h │ │ ├── MathExtras.h │ │ ├── MemAlloc.h │ │ ├── PointerLikeTypeTraits.h │ │ ├── SwapByteOrder.h │ │ └── type_traits.h ├── linker-support │ └── magic-symbols-for-install-name.c ├── private │ ├── BlocksRuntimeStubs │ │ ├── BlocksRuntime.c │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── DifferentiationUnittest │ │ ├── CMakeLists.txt │ │ └── DifferentiationUnittest.swift.gyb │ ├── OSLog │ │ ├── CMakeLists.txt │ │ ├── OSLogFloatFormatting.swift │ │ ├── OSLogFloatingPointTypes.swift │ │ ├── OSLogIntegerFormatting.swift │ │ ├── OSLogIntegerTypes.swift │ │ ├── OSLogMessage.swift │ │ ├── OSLogNSObjectType.swift │ │ ├── OSLogPrivacy.swift │ │ ├── OSLogStringAlignment.swift │ │ ├── OSLogStringTypes.swift │ │ ├── OSLogSwiftProtocols.swift │ │ └── OSLogTestHelper.swift │ ├── README.txt │ ├── RuntimeUnittest │ │ ├── CMakeLists.txt │ │ ├── ExclusivityTests.cpp │ │ └── RuntimeUnittest.swift │ ├── StdlibCollectionUnittest │ │ ├── CMakeLists.txt │ │ ├── COWLoggingArray.swift │ │ ├── CheckCollectionInstance.swift │ │ ├── CheckCollectionType.swift │ │ ├── CheckMutableCollectionType.swift │ │ ├── CheckRangeReplaceableCollectionType.swift │ │ ├── CheckRangeReplaceableSliceType.swift │ │ ├── CheckSequenceInstance.swift │ │ ├── CheckSequenceType.swift │ │ ├── LoggingWrappers.swift │ │ ├── MinimalCollections.swift │ │ ├── RangeSelection.swift │ │ ├── StdlibCollectionUnittest.swift │ │ └── WriteBackMutableSlice.swift │ ├── StdlibUnicodeUnittest │ │ ├── CMakeLists.txt │ │ ├── Collation.swift │ │ ├── GraphemeBreaking.swift │ │ ├── StdlibUnicodeUnittest.swift │ │ ├── UnicodeScalarProperties.swift │ │ └── WordBreaking.swift │ ├── StdlibUnittest │ │ ├── CMakeLists.txt │ │ ├── CheckStrideable.swift │ │ ├── InspectValue.cpp │ │ ├── InspectValue.swift │ │ ├── InterceptTraps.cpp │ │ ├── LifetimeTracked.swift │ │ ├── MinimalTypes.swift │ │ ├── OpaqueIdentityFunctions.cpp │ │ ├── OpaqueIdentityFunctions.swift │ │ ├── RaceTest.swift │ │ ├── Statistics.swift │ │ ├── StdlibCoreExtras.swift │ │ ├── StdlibUnittest.swift │ │ ├── StringConvertible.swift │ │ ├── StringTestHelpers.swift │ │ ├── TestHelpers.swift │ │ └── TypeIndexed.swift │ ├── StdlibUnittestFoundationExtras │ │ ├── CMakeLists.txt │ │ ├── StdlibUnittestFoundationExtras.swift │ │ └── UnavailableFoundationMethodThunks.mm │ ├── SwiftPrivate │ │ ├── AtomicInt.swift.gyb │ │ ├── CMakeLists.txt │ │ ├── IO.swift │ │ ├── ShardedAtomicCounter.swift │ │ └── SwiftPrivate.swift │ ├── SwiftPrivateLibcExtras │ │ ├── CMakeLists.txt │ │ ├── Subprocess.c │ │ ├── Subprocess.swift │ │ └── SwiftPrivateLibcExtras.swift │ ├── SwiftPrivateThreadExtras │ │ ├── CMakeLists.txt │ │ ├── SwiftPrivateThreadExtras.swift │ │ └── ThreadBarriers.swift │ └── SwiftReflectionTest │ │ ├── CMakeLists.txt │ │ └── SwiftReflectionTest.swift ├── public │ ├── CMakeLists.txt │ ├── ClangOverlays │ │ ├── CMakeLists.txt │ │ ├── float.swift.gyb │ │ └── linker-support │ │ │ └── magic-symbols-for-install-name.c │ ├── CommandLineSupport │ │ ├── CMakeLists.txt │ │ └── CommandLine.cpp │ ├── CompatibilityOverride │ │ ├── CompatibilityOverride.cpp │ │ ├── CompatibilityOverride.h │ │ ├── CompatibilityOverrideConcurrency.def │ │ ├── CompatibilityOverrideIncludePath.h │ │ └── CompatibilityOverrideRuntime.def │ ├── Concurrency │ │ ├── Actor.cpp │ │ ├── Actor.swift │ │ ├── AsyncCompactMapSequence.swift │ │ ├── AsyncDropFirstSequence.swift │ │ ├── AsyncDropWhileSequence.swift │ │ ├── AsyncFilterSequence.swift │ │ ├── AsyncFlatMapSequence.swift │ │ ├── AsyncIteratorProtocol.swift │ │ ├── AsyncLet.cpp │ │ ├── AsyncLet.swift │ │ ├── AsyncMapSequence.swift │ │ ├── AsyncPrefixSequence.swift │ │ ├── AsyncPrefixWhileSequence.swift │ │ ├── AsyncSequence.swift │ │ ├── AsyncStream.cpp │ │ ├── AsyncStream.swift │ │ ├── AsyncStreamBuffer.swift │ │ ├── AsyncThrowingCompactMapSequence.swift │ │ ├── AsyncThrowingDropWhileSequence.swift │ │ ├── AsyncThrowingFilterSequence.swift │ │ ├── AsyncThrowingFlatMapSequence.swift │ │ ├── AsyncThrowingMapSequence.swift │ │ ├── AsyncThrowingPrefixWhileSequence.swift │ │ ├── AsyncThrowingStream.swift │ │ ├── CFExecutor.swift │ │ ├── CMakeLists.txt │ │ ├── CheckedContinuation.swift │ │ ├── Clock.cpp │ │ ├── Clock.swift │ │ ├── ConcurrencyHooks.cpp │ │ ├── ContinuousClock.swift │ │ ├── CooperativeExecutor.swift │ │ ├── CooperativeGlobalExecutor.cpp │ │ ├── Debug.h │ │ ├── Deque │ │ │ ├── Compatibility.swift │ │ │ ├── Deque+Codable.swift │ │ │ ├── Deque+Collection.swift │ │ │ ├── Deque+CustomDebugStringConvertible.swift │ │ │ ├── Deque+CustomReflectable.swift │ │ │ ├── Deque+CustomStringConvertible.swift │ │ │ ├── Deque+Equatable.swift │ │ │ ├── Deque+ExpressibleByArrayLiteral.swift │ │ │ ├── Deque+Extras.swift │ │ │ ├── Deque+Hashable.swift │ │ │ ├── Deque+Storage.swift │ │ │ ├── Deque+Testing.swift │ │ │ ├── Deque+UnsafeHandle.swift │ │ │ ├── Deque.swift │ │ │ ├── UnsafeMutableBufferPointer+Utilities.swift │ │ │ ├── _DequeBuffer.swift │ │ │ ├── _DequeBufferHeader.swift │ │ │ ├── _DequeSlot.swift │ │ │ └── _UnsafeWrappedBuffer.swift │ │ ├── DiscardingTaskGroup.swift │ │ ├── DispatchExecutor.swift │ │ ├── DispatchGlobalExecutor.cpp │ │ ├── EmbeddedSupport.cpp │ │ ├── Error.cpp │ │ ├── Error.h │ │ ├── Errors.swift │ │ ├── Executor.swift │ │ ├── ExecutorAssertions.swift │ │ ├── ExecutorBridge.cpp │ │ ├── ExecutorBridge.h │ │ ├── ExecutorBridge.swift │ │ ├── ExecutorChecks.cpp │ │ ├── ExecutorImpl.cpp │ │ ├── ExecutorImpl.h │ │ ├── ExecutorImpl.swift │ │ ├── GlobalActor.swift │ │ ├── GlobalConcurrentExecutor.swift │ │ ├── GlobalExecutor.cpp │ │ ├── InternalShims │ │ │ ├── module.modulemap │ │ │ └── stdlib_shims.h │ │ ├── MainActor.swift │ │ ├── PartialAsyncTask.swift │ │ ├── PlatformExecutorCooperative.swift │ │ ├── PlatformExecutorDarwin.swift │ │ ├── PlatformExecutorFreeBSD.swift │ │ ├── PlatformExecutorLinux.swift │ │ ├── PlatformExecutorNone.swift │ │ ├── PlatformExecutorOpenBSD.swift │ │ ├── PlatformExecutorWindows.swift │ │ ├── PriorityQueue.swift │ │ ├── SourceCompatibilityShims.swift │ │ ├── SuspendingClock.swift │ │ ├── Task+PriorityEscalation.swift │ │ ├── Task+TaskExecutor.swift │ │ ├── Task+immediate.swift.gyb │ │ ├── Task+init.swift.gyb │ │ ├── Task.cpp │ │ ├── Task.swift │ │ ├── TaskAlloc.cpp │ │ ├── TaskCancellation.swift │ │ ├── TaskGroup+addTask.swift.gyb │ │ ├── TaskGroup.cpp │ │ ├── TaskGroup.swift │ │ ├── TaskGroupPrivate.h │ │ ├── TaskLocal.cpp │ │ ├── TaskLocal.h │ │ ├── TaskLocal.swift │ │ ├── TaskPrivate.h │ │ ├── TaskSleep.swift │ │ ├── TaskSleepDuration.swift │ │ ├── TaskStatus.cpp │ │ ├── ThreadingError.cpp │ │ ├── Tracing.h │ │ ├── TracingSignpost.cpp │ │ ├── TracingSignpost.h │ │ ├── TracingStubs.h │ │ ├── UnimplementedExecutor.swift │ │ ├── VoucherSupport.h │ │ └── linker-support │ │ │ └── magic-symbols-for-install-name.c │ ├── Cxx │ │ ├── CMakeLists.txt │ │ ├── CxxConvertibleToBool.swift │ │ ├── CxxConvertibleToCollection.swift │ │ ├── CxxDictionary.swift │ │ ├── CxxOptional.swift │ │ ├── CxxPair.swift │ │ ├── CxxRandomAccessCollection.swift │ │ ├── CxxSequence.swift │ │ ├── CxxSet.swift │ │ ├── CxxSpan.swift │ │ ├── CxxVector.swift │ │ ├── UnsafeCxxIterators.swift │ │ ├── cxxshim │ │ │ ├── CMakeLists.txt │ │ │ ├── libcxxshim.h │ │ │ ├── libcxxshim.modulemap │ │ │ └── libcxxstdlibshim.h │ │ ├── libstdcxx │ │ │ ├── CMakeLists.txt │ │ │ ├── libstdcxx.h │ │ │ └── libstdcxx.modulemap │ │ └── std │ │ │ ├── CMakeLists.txt │ │ │ ├── Chrono.swift │ │ │ ├── String.swift │ │ │ ├── std.apinotes │ │ │ └── std.swift │ ├── Demangling │ │ └── CMakeLists.txt │ ├── Differentiation │ │ ├── AnyDifferentiable.swift │ │ ├── ArrayDifferentiation.swift │ │ ├── CMakeLists.txt │ │ ├── Differentiable.swift │ │ ├── DifferentialOperators.swift │ │ ├── DifferentiationUtilities.swift │ │ ├── FloatingPointDifferentiation.swift.gyb │ │ ├── OptionalDifferentiation.swift │ │ ├── SIMDDifferentiation.swift.gyb │ │ └── TgmathDerivatives.swift.gyb │ ├── Distributed │ │ ├── CMakeLists.txt │ │ ├── DistributedActor.cpp │ │ ├── DistributedActor.swift │ │ ├── DistributedActorSystem.swift │ │ ├── DistributedAssertions.swift │ │ ├── DistributedDefaultExecutor.swift │ │ ├── DistributedMacros.swift │ │ ├── DistributedMetadata.swift │ │ └── LocalTestingDistributedActorSystem.swift │ ├── LLVMSupport │ │ ├── CMakeLists.txt │ │ ├── ErrorHandling.cpp │ │ ├── Hashing.cpp │ │ ├── MemAlloc.cpp │ │ ├── SmallPtrSet.cpp │ │ ├── SmallVector.cpp │ │ └── StringRef.cpp │ ├── Observation │ │ ├── CMakeLists.txt │ │ └── Sources │ │ │ └── Observation │ │ │ ├── CMakeLists.txt │ │ │ ├── Locking.swift │ │ │ ├── Observable.swift │ │ │ ├── ObservationRegistrar.swift │ │ │ ├── ObservationTracking.swift │ │ │ ├── Observations.swift │ │ │ ├── ThreadLocal.cpp │ │ │ └── ThreadLocal.swift │ ├── Platform │ │ ├── Android.swift │ │ ├── CMakeLists.txt │ │ ├── Glibc.swift.gyb │ │ ├── Math.swift │ │ ├── Musl.swift.gyb │ │ ├── POSIXError.swift │ │ ├── Platform.swift │ │ ├── README.md │ │ ├── SwiftAndroidNDK.h │ │ ├── SwiftBionic.h │ │ ├── SwiftGlibc.h.gyb │ │ ├── SwiftMusl.h │ │ ├── SwiftWASILibc.apinotes │ │ ├── TiocConstants.swift │ │ ├── WASILibc.swift.gyb │ │ ├── android.modulemap │ │ ├── glibc.modulemap.gyb │ │ ├── musl.modulemap │ │ ├── posix_filesystem.apinotes │ │ ├── spawn.apinotes │ │ ├── tgmath.swift.gyb │ │ ├── ucrt.modulemap │ │ ├── ucrt.swift │ │ ├── vcruntime.apinotes │ │ ├── vcruntime.modulemap │ │ ├── wasi-libc.modulemap │ │ └── winsdk.modulemap │ ├── README.txt │ ├── RegexBuilder │ │ └── CMakeLists.txt │ ├── RegexParser │ │ └── CMakeLists.txt │ ├── RemoteInspection │ │ ├── CMakeLists.txt │ │ ├── MetadataSource.cpp │ │ ├── TypeLowering.cpp │ │ ├── TypeRef.cpp │ │ └── TypeRefBuilder.cpp │ ├── Resources │ │ ├── linux-static │ │ │ ├── static-executable-args.lnk │ │ │ └── static-stdlib-args.lnk │ │ ├── linux │ │ │ └── static-executable-args.lnk │ │ └── wasi │ │ │ └── static-executable-args.lnk │ ├── RuntimeModule │ │ ├── Address.swift │ │ ├── Backtrace+Codable.swift │ │ ├── Backtrace.swift │ │ ├── BacktraceFormatter.swift │ │ ├── Base64.swift │ │ ├── ByteSwapping.swift │ │ ├── CMakeLists.txt │ │ ├── CachingMemoryReader.swift │ │ ├── CompactBacktrace.swift │ │ ├── CompactImageMap.swift │ │ ├── Compression.swift │ │ ├── Context.swift │ │ ├── CoreSymbolication.swift │ │ ├── Dwarf.swift │ │ ├── EightByteBuffer.swift │ │ ├── Elf.swift │ │ ├── ElfImageCache.swift │ │ ├── FramePointerUnwinder.swift │ │ ├── Image.swift │ │ ├── ImageMap+Darwin.swift │ │ ├── ImageMap+Linux.swift │ │ ├── ImageMap.swift │ │ ├── ImageSource.swift │ │ ├── Libc.swift │ │ ├── LimitSequence.swift │ │ ├── MemoryReader.swift │ │ ├── OSReleaseScanner.swift │ │ ├── ProcMapsScanner.swift │ │ ├── Registers.swift │ │ ├── RichFrame.swift │ │ ├── Runtime.swift │ │ ├── SymbolicatedBacktrace.swift │ │ ├── Utils.swift │ │ ├── Win32Extras.cpp │ │ ├── get-cpu-context.S │ │ ├── get-cpu-context.asm │ │ └── modules │ │ │ ├── Compression.h │ │ │ ├── FixedLayout.h │ │ │ ├── ImageFormats │ │ │ ├── Dwarf │ │ │ │ ├── dwarf.h │ │ │ │ └── eh_frame_hdr.h │ │ │ ├── Elf │ │ │ │ └── elf.h │ │ │ └── ImageFormats.modulemap │ │ │ ├── OS │ │ │ ├── Darwin.h │ │ │ ├── Libc.h │ │ │ ├── Linux.h │ │ │ ├── OS.modulemap │ │ │ └── Windows.h │ │ │ ├── Runtime │ │ │ └── Runtime.h │ │ │ └── module.modulemap │ ├── StringProcessing │ │ └── CMakeLists.txt │ ├── SwiftOnoneSupport │ │ ├── CMakeLists.txt │ │ └── SwiftOnoneSupport.swift │ ├── SwiftRemoteMirror │ │ ├── CMakeLists.txt │ │ └── SwiftRemoteMirror.cpp │ ├── SwiftShims │ │ └── swift │ │ │ └── shims │ │ │ ├── AssertionReporting.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CoreFoundationShims.h │ │ │ ├── EmbeddedShims.h │ │ │ ├── FoundationShims.h │ │ │ ├── GlobalObjects.h │ │ │ ├── HeapObject.h │ │ │ ├── KeyPath.h │ │ │ ├── LibcOverlayShims.h │ │ │ ├── LibcShims.h │ │ │ ├── MetadataSections.h │ │ │ ├── ObjCShims.h │ │ │ ├── Random.h │ │ │ ├── RefCount.h │ │ │ ├── Reflection.h │ │ │ ├── RuntimeShims.h │ │ │ ├── RuntimeStubs.h │ │ │ ├── SwiftStdbool.h │ │ │ ├── SwiftStddef.h │ │ │ ├── SwiftStdint.h │ │ │ ├── System.h │ │ │ ├── Target.h │ │ │ ├── ThreadLocalStorage.h │ │ │ ├── UnicodeData.h │ │ │ ├── Visibility.h │ │ │ ├── _SwiftConcurrency.h │ │ │ ├── _SwiftDistributed.h │ │ │ ├── _SynchronizationShims.h │ │ │ ├── module.modulemap │ │ │ └── parent.modulemap │ ├── Synchronization │ │ ├── Atomics │ │ │ ├── Atomic.swift │ │ │ ├── AtomicBool.swift │ │ │ ├── AtomicFloats.swift │ │ │ ├── AtomicIntegers.swift.gyb │ │ │ ├── AtomicLazyReference.swift │ │ │ ├── AtomicMemoryOrderings.swift │ │ │ ├── AtomicOptional.swift │ │ │ ├── AtomicPointers.swift │ │ │ ├── AtomicRepresentable.swift │ │ │ ├── AtomicStorage.swift.gyb │ │ │ └── WordPair.swift │ │ ├── CMakeLists.txt │ │ ├── Cell.swift │ │ └── Mutex │ │ │ ├── DarwinImpl.swift │ │ │ ├── FreeBSDImpl.swift │ │ │ ├── LinuxImpl.swift │ │ │ ├── Mutex.swift │ │ │ ├── MutexUnavailable.swift │ │ │ ├── SpinLoopHint.swift │ │ │ ├── WasmImpl.swift │ │ │ └── WindowsImpl.swift │ ├── Threading │ │ └── CMakeLists.txt │ ├── Volatile │ │ ├── CMakeLists.txt │ │ └── Volatile.swift │ ├── Windows │ │ ├── CMakeLists.txt │ │ └── WinSDK.swift │ ├── core │ │ ├── ASCII.swift │ │ ├── Algorithm.swift │ │ ├── AnyHashable.swift │ │ ├── Array.swift │ │ ├── ArrayBody.swift │ │ ├── ArrayBuffer.swift │ │ ├── ArrayBufferProtocol.swift │ │ ├── ArrayCast.swift │ │ ├── ArrayShared.swift │ │ ├── ArraySlice.swift │ │ ├── ArrayType.swift │ │ ├── Assert.swift │ │ ├── AssertCommon.swift │ │ ├── AtomicInt.swift.gyb │ │ ├── Availability.swift │ │ ├── BidirectionalCollection.swift │ │ ├── Bitset.swift │ │ ├── Bool.swift │ │ ├── BridgeObjectiveC.swift │ │ ├── BridgeStorage.swift │ │ ├── BridgingBuffer.swift │ │ ├── Builtin.swift │ │ ├── BuiltinMath.swift │ │ ├── CMakeLists.txt │ │ ├── CString.swift │ │ ├── CTypes.swift │ │ ├── Character.swift │ │ ├── CharacterProperties.swift │ │ ├── ClosedRange.swift │ │ ├── CocoaArray.swift │ │ ├── Codable.swift │ │ ├── Collection.swift │ │ ├── CollectionAlgorithms.swift │ │ ├── CollectionDifference.swift │ │ ├── CollectionOfOne.swift │ │ ├── CommandLine.swift │ │ ├── Comparable.swift │ │ ├── CompilerProtocols.swift │ │ ├── ContiguousArray.swift │ │ ├── ContiguousArrayBuffer.swift │ │ ├── ContiguouslyStored.swift │ │ ├── DebuggerSupport.swift │ │ ├── Dictionary.swift │ │ ├── DictionaryBridging.swift │ │ ├── DictionaryBuilder.swift │ │ ├── DictionaryCasting.swift │ │ ├── DictionaryStorage.swift │ │ ├── DictionaryVariant.swift │ │ ├── Diffing.swift │ │ ├── DiscontiguousSlice.swift │ │ ├── DropWhile.swift │ │ ├── Dump.swift │ │ ├── Duration.swift │ │ ├── DurationProtocol.swift │ │ ├── EitherSequence.swift │ │ ├── EmbeddedPrint.swift │ │ ├── EmbeddedRuntime.swift │ │ ├── EmbeddedStubs.swift │ │ ├── EmptyCollection.swift │ │ ├── EnumeratedSequence.swift │ │ ├── Equatable.swift │ │ ├── ErrorType.swift │ │ ├── ExistentialCollection.swift │ │ ├── Filter.swift │ │ ├── FlatMap.swift │ │ ├── Flatten.swift │ │ ├── FloatingPoint.swift │ │ ├── FloatingPointParsing.swift.gyb │ │ ├── FloatingPointRandom.swift │ │ ├── FloatingPointTypes.swift.gyb │ │ ├── GroupInfo.json │ │ ├── HashTable.swift │ │ ├── Hashable.swift │ │ ├── Hasher.swift │ │ ├── Hashing.swift │ │ ├── Identifiable.swift │ │ ├── Indices.swift │ │ ├── InlineArray.swift │ │ ├── InputStream.swift │ │ ├── Instant.swift │ │ ├── Int128.swift │ │ ├── IntegerParsing.swift │ │ ├── IntegerTypes.swift.gyb │ │ ├── Integers.swift │ │ ├── Join.swift │ │ ├── KeyPath.swift │ │ ├── KeyValuePairs.swift │ │ ├── LazyCollection.swift │ │ ├── LazySequence.swift │ │ ├── LegacyABI.swift │ │ ├── LegacyInt128.swift.gyb │ │ ├── LifetimeManager.swift │ │ ├── Macros.swift │ │ ├── ManagedBuffer.swift │ │ ├── Map.swift │ │ ├── MemoryLayout.swift │ │ ├── MigrationSupport.swift │ │ ├── Mirror.swift │ │ ├── Mirrors.swift │ │ ├── Misc.swift │ │ ├── MutableCollection.swift │ │ ├── NFC.swift │ │ ├── NFD.swift │ │ ├── NativeDictionary.swift │ │ ├── NativeSet.swift │ │ ├── NewtypeWrapper.swift │ │ ├── ObjectIdentifier+DebugDescription.swift │ │ ├── ObjectIdentifier.swift │ │ ├── OptionSet.swift │ │ ├── Optional.swift │ │ ├── OutputStream.swift │ │ ├── PlaygroundDisplay.swift │ │ ├── Pointer.swift │ │ ├── Policy.swift │ │ ├── PrefixWhile.swift │ │ ├── Prespecialize.swift │ │ ├── PreviousModuleInstallName.json │ │ ├── Print.swift │ │ ├── PtrAuth.swift │ │ ├── REPL.swift │ │ ├── Random.swift │ │ ├── RandomAccessCollection.swift │ │ ├── Range.swift │ │ ├── RangeReplaceableCollection.swift │ │ ├── RangeSet.swift │ │ ├── RangeSetRanges.swift │ │ ├── ReflectionMirror.swift │ │ ├── Repeat.swift │ │ ├── Result.swift │ │ ├── Reverse.swift │ │ ├── Runtime.swift │ │ ├── RuntimeFunctionCounters.swift │ │ ├── SIMDFloatConcreteOperations.swift.gyb │ │ ├── SIMDIntegerConcreteOperations.swift.gyb │ │ ├── SIMDMaskConcreteOperations.swift.gyb │ │ ├── SIMDVector.swift │ │ ├── SIMDVectorTypes.swift.gyb │ │ ├── Sendable.swift │ │ ├── Sequence.swift │ │ ├── SequenceAlgorithms.swift │ │ ├── Set.swift │ │ ├── SetAlgebra.swift │ │ ├── SetAnyHashableExtensions.swift │ │ ├── SetBridging.swift │ │ ├── SetBuilder.swift │ │ ├── SetCasting.swift │ │ ├── SetStorage.swift │ │ ├── SetVariant.swift │ │ ├── ShadowProtocols.swift │ │ ├── Shims.swift │ │ ├── SipHash.swift │ │ ├── Slice.swift │ │ ├── SliceBuffer.swift │ │ ├── SmallString.swift │ │ ├── Sort.swift │ │ ├── Span │ │ │ ├── MutableRawSpan.swift │ │ │ ├── MutableSpan.swift │ │ │ ├── OutputRawSpan.swift │ │ │ ├── OutputSpan.swift │ │ │ ├── RawSpan.swift │ │ │ └── Span.swift │ │ ├── StaticBigInt.swift │ │ ├── StaticPrint.swift │ │ ├── StaticString.swift │ │ ├── Stride.swift │ │ ├── String.swift │ │ ├── StringBreadcrumbs.swift │ │ ├── StringBridge.swift │ │ ├── StringCharacterView.swift │ │ ├── StringComparable.swift │ │ ├── StringComparison.swift │ │ ├── StringCreate.swift │ │ ├── StringGraphemeBreaking.swift │ │ ├── StringGuts.swift │ │ ├── StringGutsRangeReplaceable.swift │ │ ├── StringGutsSlice.swift │ │ ├── StringHashable.swift │ │ ├── StringIndex.swift │ │ ├── StringIndexConversions.swift │ │ ├── StringIndexValidation.swift │ │ ├── StringInterpolation.swift │ │ ├── StringLegacy.swift │ │ ├── StringNormalization.swift │ │ ├── StringObject.swift │ │ ├── StringProtocol.swift │ │ ├── StringRangeReplaceableCollection.swift │ │ ├── StringStorage.swift │ │ ├── StringStorageBridge.swift │ │ ├── StringSwitch.swift │ │ ├── StringTesting.swift │ │ ├── StringUTF16View.swift │ │ ├── StringUTF8Validation.swift │ │ ├── StringUTF8View.swift │ │ ├── StringUnicodeScalarView.swift │ │ ├── StringWordBreaking.swift │ │ ├── Substring.swift │ │ ├── SwiftNativeNSArray.swift │ │ ├── SwiftifyImport.swift │ │ ├── TemporaryAllocation.swift │ │ ├── ThreadLocalStorage.swift │ │ ├── Tuple.swift.gyb │ │ ├── UInt128.swift │ │ ├── UIntBuffer.swift │ │ ├── UTF16.swift │ │ ├── UTF32.swift │ │ ├── UTF8.swift │ │ ├── UTF8EncodingError.swift │ │ ├── UTF8Span.swift │ │ ├── UTF8SpanBits.swift │ │ ├── UTF8SpanComparisons.swift │ │ ├── UTF8SpanFundamentals.swift │ │ ├── UTF8SpanInternalHelpers.swift │ │ ├── UTF8SpanIterators.swift │ │ ├── UTFEncoding.swift │ │ ├── UnavailableStringAPIs.swift │ │ ├── UnfoldSequence.swift │ │ ├── Unicode.swift │ │ ├── UnicodeBreakProperty.swift │ │ ├── UnicodeData.swift │ │ ├── UnicodeEncoding.swift │ │ ├── UnicodeHelpers.swift │ │ ├── UnicodeParser.swift │ │ ├── UnicodeSPI.swift │ │ ├── UnicodeScalar.swift │ │ ├── UnicodeScalarProperties.swift │ │ ├── Unmanaged.swift │ │ ├── UnmanagedOpaqueString.swift │ │ ├── UnmanagedString.swift │ │ ├── UnsafeBufferPointer.swift.gyb │ │ ├── UnsafeBufferPointerSlice.swift │ │ ├── UnsafePointer.swift │ │ ├── UnsafeRawBufferPointer.swift.gyb │ │ ├── UnsafeRawPointer.swift │ │ ├── ValidUTF8Buffer.swift │ │ ├── VarArgs.swift │ │ ├── WriteBackMutableSlice.swift │ │ └── Zip.swift │ ├── libexec │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ └── swift-backtrace │ │ │ ├── AnsiColor.swift │ │ │ ├── CMakeLists.txt │ │ │ ├── JSON.swift │ │ │ ├── TargetLinux.swift │ │ │ ├── TargetMacOS.swift │ │ │ ├── Themes.swift │ │ │ ├── Utils.swift │ │ │ └── main.swift │ ├── runtime │ │ ├── AccessibleFunction.cpp │ │ ├── AnyHashableSupport.cpp │ │ ├── Array.cpp │ │ ├── AutoDiffSupport.cpp │ │ ├── AutoDiffSupport.h │ │ ├── Backtrace.cpp │ │ ├── BacktracePrivate.h │ │ ├── BacktraceUtils.cpp │ │ ├── Bincompat.cpp │ │ ├── BytecodeLayouts.cpp │ │ ├── BytecodeLayouts.h │ │ ├── CMakeLists.txt │ │ ├── Casting.cpp │ │ ├── ConcurrencyExclusivity.inc │ │ ├── CrashHandlerLinux.cpp │ │ ├── CrashHandlerMacOS.cpp │ │ ├── CrashReporter.cpp │ │ ├── Demangle.cpp │ │ ├── DynamicCast.cpp │ │ ├── Enum.cpp │ │ ├── EnumImpl.h │ │ ├── EnvironmentVariables.cpp │ │ ├── EnvironmentVariables.def │ │ ├── ErrorDefaultImpls.cpp │ │ ├── ErrorObject.h │ │ ├── ErrorObject.mm │ │ ├── ErrorObjectCommon.cpp │ │ ├── ErrorObjectNative.cpp │ │ ├── ErrorObjectTestSupport.h │ │ ├── Errors.cpp │ │ ├── Exception.cpp │ │ ├── Exclusivity.cpp │ │ ├── ExclusivityPrivate.h │ │ ├── ExistentialContainer.cpp │ │ ├── ExistentialMetadataImpl.h │ │ ├── Float16Support.cpp │ │ ├── FoundationSupport.cpp │ │ ├── FunctionReplacement.cpp │ │ ├── GenericCacheEntry.h │ │ ├── GenericMetadataBuilder.cpp │ │ ├── Heap.cpp │ │ ├── HeapObject.cpp │ │ ├── ImageInspection.h │ │ ├── ImageInspectionCOFF.cpp │ │ ├── ImageInspectionCommon.cpp │ │ ├── ImageInspectionCommon.h │ │ ├── ImageInspectionELF.cpp │ │ ├── ImageInspectionMachO.cpp │ │ ├── ImageInspectionStatic.cpp │ │ ├── ImageInspectionWasm.cpp │ │ ├── KeyPaths.cpp │ │ ├── KnownMetadata.cpp │ │ ├── Leaks.h │ │ ├── Leaks.mm │ │ ├── LibPrespecialized.cpp │ │ ├── Metadata.cpp │ │ ├── MetadataAllocatorTags.def │ │ ├── MetadataCache.h │ │ ├── MetadataImpl.h │ │ ├── MetadataLookup.cpp │ │ ├── Numeric.cpp │ │ ├── ObjCRuntimeGetImageNameFromClass.h │ │ ├── ObjCRuntimeGetImageNameFromClass.mm │ │ ├── Once.cpp │ │ ├── Paths.cpp │ │ ├── Portability.cpp │ │ ├── Private.h │ │ ├── ProtocolConformance.cpp │ │ ├── RefCount.cpp │ │ ├── ReflectionMirror.cpp │ │ ├── ReflectionMirrorObjC.mm │ │ ├── RuntimeInvocationsTracking.cpp │ │ ├── RuntimeInvocationsTracking.def │ │ ├── RuntimeInvocationsTracking.h │ │ ├── StackAllocator.h │ │ ├── SwiftDtoa.cpp │ │ ├── SwiftEquatableSupport.h │ │ ├── SwiftHashableSupport.h │ │ ├── SwiftObject.h │ │ ├── SwiftObject.mm │ │ ├── SwiftRT-COFF.cpp │ │ ├── SwiftRT-ELF-WASM.cpp │ │ ├── SwiftTLSContext.cpp │ │ ├── SwiftTLSContext.h │ │ ├── SwiftValue.h │ │ ├── SwiftValue.mm │ │ ├── SymbolInfo.cpp │ │ ├── SymbolInfo.h │ │ ├── ThreadingError.cpp │ │ ├── Tracing.cpp │ │ ├── Tracing.h │ │ ├── WeakReference.h │ │ └── Win32.cpp │ └── stubs │ │ ├── Assert.cpp │ │ ├── Availability.mm │ │ ├── CMakeLists.txt │ │ ├── FoundationHelpers.mm │ │ ├── GlobalObjects.cpp │ │ ├── LibcShims.cpp │ │ ├── MathStubs.cpp │ │ ├── OptionalBridgingHelper.mm │ │ ├── Random.cpp │ │ ├── Reflection.mm │ │ ├── Stubs.cpp │ │ ├── SwiftNativeNSObject.mm │ │ ├── SwiftNativeNSXXXBase.mm.gyb │ │ ├── SwiftNativeNSXXXBaseARC.m │ │ ├── ThreadLocalStorage.cpp │ │ └── Unicode │ │ ├── Apple │ │ ├── GraphemeData.h │ │ ├── NormalizationData.h │ │ └── ScalarPropsData.h │ │ ├── CMakeLists.txt │ │ ├── Common │ │ ├── CaseData.h │ │ ├── GraphemeData.h │ │ ├── NormalizationData.h │ │ ├── ScalarPropsData.h │ │ ├── ScriptData.h │ │ └── WordData.h │ │ ├── UnicodeData.cpp │ │ ├── UnicodeGrapheme.cpp │ │ ├── UnicodeNormalization.cpp │ │ ├── UnicodeScalarProps.cpp │ │ └── UnicodeWord.cpp ├── toolchain │ ├── CMakeLists.txt │ ├── Compatibility50 │ │ ├── CMakeLists.txt │ │ ├── CompatibilityOverride.def │ │ ├── CompatibilityOverride.h │ │ ├── Overrides.cpp │ │ ├── Overrides.h │ │ └── ProtocolConformance.cpp │ ├── Compatibility51 │ │ ├── CMakeLists.txt │ │ ├── CompatibilityOverride.def │ │ ├── CompatibilityOverride.h │ │ ├── Concurrent.h │ │ ├── Overrides.cpp │ │ ├── Overrides.h │ │ └── ProtocolConformance.cpp │ ├── Compatibility56 │ │ ├── CMakeLists.txt │ │ ├── CompatibilityOverride.h │ │ ├── CompatibilityOverrideConcurrency.def │ │ ├── CompatibilityOverrideRuntime.def │ │ ├── Concurrency │ │ │ ├── Actor.cpp │ │ │ ├── AsyncLet.cpp │ │ │ ├── Error.cpp │ │ │ ├── MutexPThread.cpp │ │ │ ├── Task.cpp │ │ │ ├── TaskAlloc.cpp │ │ │ ├── TaskLocal.cpp │ │ │ ├── TaskStatus.cpp │ │ │ └── ThreadSanitizer.cpp │ │ ├── Overrides.cpp │ │ ├── Overrides.h │ │ ├── Runtime │ │ │ └── Exclusivity.cpp │ │ └── include │ │ │ ├── Concurrency │ │ │ ├── Actor.h │ │ │ ├── AsyncLet.h │ │ │ ├── Error.h │ │ │ ├── Executor.h │ │ │ ├── Task.h │ │ │ ├── TaskLocal.h │ │ │ ├── TaskPrivate.h │ │ │ ├── TaskStatus.h │ │ │ ├── Threading │ │ │ │ ├── Mutex.h │ │ │ │ └── MutexPThread.h │ │ │ ├── VoucherShims.h │ │ │ └── VoucherSupport.h │ │ │ └── Runtime │ │ │ ├── AtomicWaitQueue.h │ │ │ ├── Concurrency.h │ │ │ └── Threading │ │ │ ├── MutexSingleThreaded.h │ │ │ ├── MutexWin32.h │ │ │ ├── Once.h │ │ │ ├── ThreadLocal.h │ │ │ └── ThreadLocalStorage.h │ ├── CompatibilityConcurrency │ │ ├── CMakeLists.txt │ │ └── CompatibilityConcurrency.cpp │ ├── CompatibilityDynamicReplacements │ │ ├── CMakeLists.txt │ │ └── DynamicReplaceable.cpp │ ├── CompatibilityPacks │ │ ├── CMakeLists.txt │ │ └── Metadata.cpp │ ├── CompatibilitySpan │ │ ├── CMakeLists.txt │ │ └── FakeStdlib.swift │ ├── CompatibilityThreading │ │ └── CMakeLists.txt │ └── legacy_layouts │ │ ├── CMakeLists.txt │ │ ├── appletvos │ │ └── layouts-arm64.yaml │ │ ├── appletvsimulator │ │ └── layouts-x86_64.yaml │ │ ├── iphoneos │ │ ├── layouts-arm64.yaml │ │ ├── layouts-arm64e.yaml │ │ ├── layouts-armv7.yaml │ │ └── layouts-armv7s.yaml │ │ ├── iphonesimulator │ │ ├── layouts-i386.yaml │ │ └── layouts-x86_64.yaml │ │ ├── macosx │ │ └── layouts-x86_64.yaml │ │ ├── watchos │ │ ├── layouts-arm64_32.yaml │ │ └── layouts-armv7k.yaml │ │ └── watchsimulator │ │ └── layouts-i386.yaml └── tools │ ├── CMakeLists.txt │ └── swift-reflection-test │ ├── CMakeLists.txt │ ├── messages.h │ ├── overrides.c │ ├── overrides.h │ └── swift-reflection-test.c ├── test ├── APIJSON │ ├── Inputs │ │ ├── NativeDep.h │ │ └── module.modulemap │ ├── apigen.swift │ ├── availability.swift │ ├── extension.swift │ ├── non-objc-class.swift │ ├── objc-implement.swift │ ├── spi.swift │ └── struct.swift ├── APINotes │ ├── Inputs │ │ ├── broken-modules │ │ │ ├── BrokenAPINotes.apinotes │ │ │ ├── BrokenAPINotes.h │ │ │ └── module.modulemap │ │ ├── custom-frameworks │ │ │ └── APINotesFrameworkTest.framework │ │ │ │ ├── Headers │ │ │ │ ├── APINotesFrameworkTest.apinotes │ │ │ │ ├── APINotesFrameworkTest.h │ │ │ │ ├── Classes.h │ │ │ │ ├── Enums.h │ │ │ │ ├── Globals.h │ │ │ │ ├── ImportAsMember.h │ │ │ │ ├── Properties.h │ │ │ │ ├── Protocols.h │ │ │ │ ├── SwiftWrapper.h │ │ │ │ └── Types.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── custom-modules │ │ │ ├── APINotesTest.apinotes │ │ │ ├── APINotesTest.h │ │ │ ├── ObsoletedAPINotesTest.apinotes │ │ │ ├── ObsoletedAPINotesTest.h │ │ │ └── module.modulemap │ ├── basic.swift │ ├── blocks.swift │ ├── broken-swift-name.swift │ ├── irgen-prop-getter-setter.swift │ ├── obsoleted.swift │ ├── properties.swift │ ├── type_changes.swift │ ├── versioned-multi.swift │ ├── versioned-objc-dynamic-lookup.swift │ ├── versioned-objc.swift │ ├── versioned-test-mangling.swift │ └── versioned.swift ├── ASTGen │ ├── Inputs │ │ └── objc_decls.h │ ├── attrs.swift │ ├── attrs_objc.swift │ ├── autodiff.swift │ ├── availability.swift │ ├── decls.swift │ ├── diagnostics.swift │ ├── do_expr.swift │ ├── embedded_availability.swift │ ├── exprs.swift │ ├── if_config.swift │ ├── if_config_expr.swift │ ├── keypath.swift │ ├── lit.local.cfg │ ├── macros.swift │ ├── object_literals.swift │ ├── pound_assert.swift │ ├── regex.swift │ ├── sourcelocation.swift │ ├── stmts.swift │ ├── top_level.swift │ └── types.swift ├── AssociatedTypeInference │ ├── assoc_type_inference_cycle.swift │ ├── associated_type_default.swift │ ├── associated_type_default_lookup.swift │ ├── associated_type_generic_param.swift │ ├── associated_type_inference.swift │ ├── associated_type_inference_abstract.swift │ ├── associated_type_inference_distributed.swift │ ├── associated_type_inference_dynamic_self.swift │ ├── associated_type_inference_exponential.swift │ ├── associated_type_inference_exponential_2.swift │ ├── associated_type_inference_fixed_type_experimental_inference.swift │ ├── associated_type_inference_foundation_1.swift │ ├── associated_type_inference_foundation_2.swift │ ├── associated_type_inference_generic_class.swift │ ├── associated_type_inference_more_specific.swift │ ├── associated_type_inference_objc_existential.swift │ ├── associated_type_inference_operator.swift │ ├── associated_type_inference_proto_ext.swift │ ├── associated_type_inference_stdlib.swift │ ├── associated_type_inference_stdlib_2.swift │ ├── associated_type_inference_stdlib_3.swift │ ├── associated_type_inference_stdlib_4.swift │ ├── associated_type_inference_stdlib_4a.swift │ ├── associated_type_inference_stdlib_5.swift │ ├── associated_type_inference_tautology.swift │ ├── associated_type_inference_tautology_2.swift │ ├── associated_type_inference_tautology_3.swift │ ├── associated_type_inference_tautology_4.swift │ ├── associated_type_inference_valid.swift │ ├── associated_type_protocol_extension.swift │ ├── associated_type_tuple.swift │ ├── identical_solutions.swift │ ├── issue-53221.swift │ ├── issue-57765.swift │ ├── issue-71216.swift │ ├── issue-75371.swift │ ├── issue-79367.swift │ ├── missing_conformance.swift │ ├── rdar118998138.swift │ ├── rdar122574126.swift │ ├── rdar122584912.swift │ ├── rdar122586685.swift │ ├── rdar122586992.swift │ ├── rdar122587432.swift │ ├── rdar122587920.swift │ ├── rdar122588328.swift │ ├── rdar122589094.swift │ ├── rdar122596633-1.swift │ ├── rdar122596633-2.swift │ ├── rdar123261282.swift │ ├── rdar123262178.swift │ ├── rdar123270042.swift │ ├── rdar123336457.swift │ ├── rdar123339514.swift │ ├── rdar123345520.swift │ ├── rdar123357062.swift │ ├── rdar127575477.swift │ ├── rdar90402522.swift │ ├── type_witness_from_parameterized_protocol.swift │ └── typed_throws_getter.swift ├── AutoDiff │ ├── IRGen │ │ ├── Inputs │ │ │ └── loadable_by_address_cross_module.swift │ │ ├── differentiable_function.sil │ │ ├── differentiable_function_type.swift │ │ ├── loadable_by_address.swift │ │ ├── loadable_by_address_cross_module.swift │ │ ├── runtime.swift │ │ └── witness_table_differentiable_requirements.sil │ ├── ModuleInterface │ │ └── differentiation.swift │ ├── Parse │ │ ├── derivative_attr_parse.swift │ │ ├── differentiable_attr_parse.swift │ │ ├── differentiable_func_type.swift │ │ └── transpose_attr_parse.swift │ ├── README.md │ ├── SIL │ │ ├── Parse │ │ │ └── sildeclref.sil │ │ ├── Serialization │ │ │ └── differentiable_function_type.swift │ │ ├── differentiability_witness_function_inst.sil │ │ ├── differentiability_witness_function_inst_transpose.sil │ │ ├── differentiable_function_inst.sil │ │ ├── linear_function_inst.sil │ │ └── sil_differentiability_witness.sil │ ├── SILGen │ │ ├── Inputs │ │ │ └── noderivative_attr_other_file.swift │ │ ├── autodiff_builtins.swift │ │ ├── differentiability_witness_generic_signature.swift │ │ ├── differentiable_function.swift │ │ ├── has_symbol.swift │ │ ├── inout_differentiability_witness.swift │ │ ├── mangling.swift │ │ ├── nil_coalescing.swift │ │ ├── noderivative_attr.swift │ │ ├── noderivative_attr_cross_file.swift │ │ ├── reabstraction.swift │ │ ├── sil_differentiability_witness.swift │ │ ├── vtable.swift │ │ └── witness_table.swift │ ├── SILOptimizer │ │ ├── BuildingSimulation.swift │ │ ├── Inputs │ │ │ ├── differentiation_diagnostics_other_file.swift │ │ │ └── nontrivial_loadable_type.swift │ │ ├── activity_analysis.swift │ │ ├── closure_specialization │ │ │ ├── multi_bb_bte.sil │ │ │ ├── multi_bb_no_bte1.sil │ │ │ ├── multi_bb_no_bte2.sil │ │ │ └── single_bb.sil │ │ ├── derivative_sil.swift │ │ ├── differentiability_witness_inlining.sil │ │ ├── differential_apply.swift │ │ ├── differentiation.swift │ │ ├── differentiation_control_flow_diagnostics.swift │ │ ├── differentiation_control_flow_sil.swift │ │ ├── differentiation_diagnostics.swift │ │ ├── differentiation_diagnostics_cross_file.swift │ │ ├── differentiation_function_canonicalization.sil │ │ ├── differentiation_sil.swift │ │ ├── differentiation_subset_parameters_thunk.swift │ │ ├── forward_mode_diagnostics.swift │ │ ├── fragile_curry_thunk.swift │ │ ├── generics.swift │ │ ├── licm_context.swift │ │ ├── linear_function_canonicalization.sil │ │ ├── optional_error.swift │ │ ├── optional_pullback.swift │ │ ├── optional_pullback_error.swift │ │ ├── param_thunk_tuple.swift │ │ ├── property_wrappers.swift │ │ ├── pullback_generation.sil │ │ ├── pullback_generation.swift │ │ ├── pullback_generation_loop_adjoints.swift │ │ ├── pullback_generation_nested_addelement_adjoints.swift │ │ ├── pullback_inlining.swift │ │ ├── replicated-adjoint-prop.swift │ │ ├── semantic_member_accessors_sil.swift │ │ └── vjp_inlining.swift │ ├── Sema │ │ ├── DerivativeRegistrationCrossFile │ │ │ ├── Inputs │ │ │ │ ├── derivatives-error.swift │ │ │ │ ├── derivatives.swift │ │ │ │ └── struct.swift │ │ │ ├── error.swift │ │ │ └── main.swift │ │ ├── DerivativeRegistrationCrossModule │ │ │ ├── Inputs │ │ │ │ ├── a.swift │ │ │ │ └── b.swift │ │ │ └── main.swift │ │ ├── DerivedConformances │ │ │ ├── Inputs │ │ │ │ ├── class_differentiable_other_module.swift │ │ │ │ ├── struct_additive_arithmetic_other_module.swift │ │ │ │ └── struct_differentiable_other_module.swift │ │ │ ├── class_differentiable.swift │ │ │ ├── derived_differentiable.swift │ │ │ ├── derived_differentiable_diagnostics.swift │ │ │ ├── struct_additive_arithmetic.swift │ │ │ ├── struct_differentiable.swift │ │ │ └── struct_differentiable_member_types.swift │ │ ├── ExportedDifferentiationModule │ │ │ ├── Inputs │ │ │ │ └── exports_differentiation.swift │ │ │ └── main.swift │ │ ├── ImplicitDifferentiableAttributeCrossFile │ │ │ ├── Inputs │ │ │ │ ├── other_file.swift │ │ │ │ └── other_file_protocol_default_implementation_witness.swift │ │ │ ├── main.swift │ │ │ └── protocol_default_implementation_witness.swift │ │ ├── derivative_attr_type_checking.swift │ │ ├── differentiable_attr_type_checking.swift │ │ ├── differentiable_features_disabled.swift │ │ ├── differentiable_func_type.swift │ │ ├── differentiable_swift_without_import.swift │ │ ├── missing_differentiable_protocol.swift │ │ └── transpose_attr_type_checking.swift │ ├── Serialization │ │ ├── derivative_attr.swift │ │ ├── differentiable_attr.swift │ │ ├── differentiable_function.swift │ │ └── transpose_attr.swift │ ├── TBD │ │ └── derivative_symbols.swift │ ├── compiler_crashers │ │ ├── README.md │ │ ├── issue-54722-apply-opened-opened-existential-argument.swift │ │ ├── lit.local.cfg │ │ └── pr32302-autodiff-generictypeparamdecl-has-incorrect-depth.swift │ ├── compiler_crashers_fixed │ │ ├── 58660-conflicting-debug-info-inlining.swift │ │ ├── 59467-failed-to-reconstruct-type.swift │ │ ├── Inputs │ │ │ ├── 59467-failed-to-reconstruct-type-second.swift │ │ │ └── tf1202-differentiability-witness-dead-function-elimination.swift │ │ ├── README.md │ │ ├── issue-54935-differentiable-function-extract-subst-function-type.swift │ │ ├── issue-54992-siloptimizer-rewrite-partial-apply-convention-method.swift │ │ ├── issue-55003-derivative-attr-type-checking-parse-stdlib.swift │ │ ├── issue-55085-silgen-immutable-address-use-verification-failure.swift │ │ ├── issue-55086-differentiable-derivation-redeclared-property.swift │ │ ├── issue-55094-noderivative-parameter-type-mangling.swift │ │ ├── issue-55099-differentiation-opaque-result-type.swift │ │ ├── issue-55177-optimize-partial-apply-convention-thin-only.swift │ │ ├── issue-55179-library-evolution.swift │ │ ├── issue-55189-unhandled-pullback-indirect-result.swift │ │ ├── issue-55333-55334-vjp-emitter-definite-initialization.swift │ │ ├── issue-55745-noderivative-inout-parameter.swift │ │ ├── issue-55852-tangent-value-category-mismatch.swift │ │ ├── issue-56263-library-evolution-mode-crasher-property-differentiation.swift │ │ ├── issue-56330-vjpcloner-apply-multiple-consuming-users.swift │ │ ├── issue-56397-cross-module-differentiation-differentiable-function-extract-inlining.swift │ │ ├── issue-56600-symbol-in-ir-file-not-tbd-file.swift │ │ ├── issue-56649-missing-debug-scopes-in-pullback-trampoline.swift │ │ ├── issue-56977-over-consume-in-subset-parameters-thunk.swift │ │ ├── issue-57527-diff-capture.swift │ │ ├── issue-57869-vardecl-adjoint-values.swift │ │ ├── issue-58123-invalid-debug-info.swift │ │ ├── issue-58123-mutating-functions-with-control-flow.swift │ │ ├── issue-58149-generic-signature-builder-keypath-iterable.swift │ │ ├── issue-58152-inout-adjoint-param-idx.swift │ │ ├── issue-62608-conflicting-debug-info.swift │ │ ├── issue-63728-try-apply-activity.swift │ │ ├── issue-65073-substmap.swift │ │ ├── issue-66522-pullback-generation-when-tangentvector-of-input-contains-nondifferentiable-fields.swift │ │ ├── issue-68777-lack-of-diff-requirement.swift │ │ ├── issue-71164-unreachable-blocks.swift │ │ ├── issue-74841-optional-adjoint-buffer.swift │ │ ├── issue-75280-guard-let-optional.swift │ │ ├── issue-77871-implicit-diff-optional-conversion.swift │ │ ├── issue-81607-array-literal-adjoint.swift │ │ ├── lit.local.cfg │ │ ├── rdar71191415-nested-differentiation-of-extension-method-optimized.swift │ │ ├── rdar71319547-generated-decls-shall-not-be-resilient.swift │ │ ├── rdar74087329-debug-scope-trampoline-blocks.swift │ │ ├── rdar84716758-differentiable-protocol-witness-missing-requirements.swift │ │ ├── rdar87429620-differentiable-curry-thunk-reqmachine.swift │ │ ├── tf1160-derivative-usable-from-inline-mismatch.swift │ │ ├── tf1167-differentiable-attr-override-match.swift │ │ ├── tf1180-silgen-vtable-method-does-not-appear.swift │ │ ├── tf1202-differentiability-witness-dead-function-elimination.swift │ │ ├── tf1232-autodiff-generated-declaration-mangling.swift │ │ └── tf1315-pullback-subset-parameter-thunk-generation.swift │ ├── e2e_optimizations.swift │ ├── lit.local.cfg │ ├── mangling.swift │ ├── sil_combine.sil │ ├── stdlib │ │ ├── anydifferentiable.swift │ │ ├── callee_differential_not_leaked_in_func_with_loops.swift │ │ ├── collection_higher_order_functions.swift │ │ ├── derivative_customization.swift │ │ ├── differentiable_protocol.swift │ │ ├── differentiable_stdlib_conformances.swift │ │ ├── differential_operators.swift.gyb │ │ ├── floating_point.swift.gyb │ │ ├── lit.local.cfg │ │ ├── optional.swift │ │ ├── simd.swift │ │ └── tgmath_derivatives.swift.gyb │ └── validation-test │ │ ├── Inputs │ │ ├── AutoDiffTypes.swift │ │ ├── cross_module_derivative_attr │ │ │ ├── main │ │ │ │ └── main.swift │ │ │ └── module1 │ │ │ │ ├── module1.swift │ │ │ │ └── module1_other_file.swift │ │ ├── cross_module_differentiation_other.swift │ │ └── main.swift │ │ ├── address_only_tangentvector.swift │ │ ├── always_emit_into_client │ │ ├── Inputs │ │ │ ├── MultiFileModule │ │ │ │ ├── file1.swift │ │ │ │ └── file2.swift │ │ │ ├── MultiModule │ │ │ │ ├── file1.swift │ │ │ │ └── file2.swift │ │ │ ├── MultiModuleProtocol │ │ │ │ ├── file1.swift │ │ │ │ ├── file2.swift │ │ │ │ └── file3.swift │ │ │ ├── MultiModuleStruct │ │ │ │ ├── file1.swift │ │ │ │ ├── file2.swift │ │ │ │ ├── file2_no_jvp.swift │ │ │ │ └── file2_no_vjp.swift │ │ │ └── SingleFileModule │ │ │ │ └── file.swift │ │ ├── multi_file.swift │ │ ├── multi_module.swift │ │ ├── multi_module_protocol.swift │ │ ├── multi_module_struct.swift │ │ ├── multi_module_struct_no_jvp.swift │ │ ├── multi_module_struct_no_vjp.swift │ │ └── single_file.swift │ │ ├── array.swift │ │ ├── class_differentiation.swift │ │ ├── closure_specialization │ │ ├── multi_bb_bte.swift │ │ ├── multi_bb_no_bte.swift │ │ ├── single_bb1.swift │ │ └── single_bb2.swift │ │ ├── control_flow.swift │ │ ├── cross_module_derivative_attr.swift │ │ ├── cross_module_differentiation.swift │ │ ├── custom_derivatives.swift │ │ ├── derivative_registration.swift │ │ ├── differentiable_property.swift │ │ ├── differentiable_protocol_requirements.swift │ │ ├── existential.swift │ │ ├── forward_mode_array.swift │ │ ├── forward_mode_inout.swift │ │ ├── forward_mode_simd.swift │ │ ├── forward_mode_simple.swift │ │ ├── function_type_metadata.swift │ │ ├── inout_control_flow.swift │ │ ├── inout_parameters.swift │ │ ├── issue-58353.swift │ │ ├── issue-64257-use-after-free.swift │ │ ├── lit.local.cfg │ │ ├── method.swift │ │ ├── modify_accessor.swift │ │ ├── optional.swift │ │ ├── optional_property.swift │ │ ├── property_wrappers.swift │ │ ├── reabstraction.swift │ │ ├── reflection.swift │ │ ├── repeated_calls.swift │ │ ├── separate_tangent_type.swift │ │ ├── simple_math.swift │ │ ├── simple_model.swift │ │ ├── storeborrow.swift │ │ ├── subset_parameters_thunk.swift │ │ └── superset_adjoint.swift ├── AutolinkExtract │ ├── Inputs │ │ └── Frameworks │ │ │ └── Link.framework │ │ │ ├── Headers │ │ │ └── Link.h │ │ │ ├── Link │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── empty.swift │ ├── empty_archive.swift │ ├── error_no_inputs.swift │ ├── import.swift │ ├── import_archive.swift │ ├── import_framework.swift │ ├── linker-order.ll │ └── llvm-ir.cpp ├── Availability │ ├── Inputs │ │ ├── availability_enum_case_other.swift │ │ ├── availability_multi_other.swift │ │ └── conformance_availability_overlapping_other.swift │ ├── api-availability-only.swift │ ├── availability.swift │ ├── availability_accessors.swift │ ├── availability_and_delayed_parsing.swift │ ├── availability_compound.swift │ ├── availability_custom_domains.swift │ ├── availability_define.swift │ ├── availability_define_multi_file.swift │ ├── availability_define_parsing.swift │ ├── availability_deinit.swift │ ├── availability_deprecated.swift │ ├── availability_deprecated_script_mode.swift │ ├── availability_enum_case.swift │ ├── availability_global_actor.swift │ ├── availability_implicitly_unnecessary.swift │ ├── availability_isolated_any.swift │ ├── availability_literals.swift │ ├── availability_literals_inferred.swift │ ├── availability_macos.swift │ ├── availability_main_actor.swift │ ├── availability_parameterized_existential.swift │ ├── availability_scopes.swift │ ├── availability_scopes_custom_domains.swift │ ├── availability_scopes_target_min_inlining.swift │ ├── availability_scopes_target_min_inlining_maccatalyst.swift │ ├── availability_script_mode.swift │ ├── availability_soft_deprecated.swift │ ├── availability_stored.swift │ ├── availability_stored_unavailable.swift │ ├── availability_stored_unavailable_maccatalyst.swift │ ├── availability_swift_versions.swift │ ├── availability_swiftui.swift │ ├── availability_target_min_inlining.swift │ ├── availability_unavailable_overrides.swift │ ├── availability_unnecessary.swift │ ├── availability_versions.swift │ ├── availability_versions_canonical.swift │ ├── availability_versions_multi.swift │ ├── availability_versions_objc_api.swift │ ├── availability_versions_playgrounds.swift │ ├── availability_versions_unsupported.swift │ ├── availability_with_overloading.swift │ ├── conformance_availability.swift │ ├── conformance_availability_disambiguate.swift │ ├── conformance_availability_overlapping.swift │ ├── conformance_availability_warn.swift │ ├── generalized_accessors_availability.swift │ ├── inline_array_availability.swift │ ├── operator_availability.swift │ ├── pack_conformance_availability.swift │ ├── property_wrapper_availability.swift │ ├── result_builder_availability.swift │ ├── spi-available-context.swift │ ├── spi-available-inline.swift │ ├── spi-available-local.swift │ ├── spi-available-swift-module.swift │ └── value_generics_availability.swift ├── Backtracing │ ├── BacktraceWithLimit.swift │ ├── BacktraceWithLimitAndTop.swift │ ├── CodableBacktrace.swift │ ├── CompactImageMap.swift │ ├── Crash.swift │ ├── CrashAsync.swift │ ├── CrashOutputFile.swift │ ├── CrashStatic.swift │ ├── CrashWithThunk.swift │ ├── DwarfReader.swift │ ├── EarlyMessage.swift │ ├── ElfReader.swift │ ├── FatalError.swift │ ├── ImageMap.swift │ ├── Inputs │ │ ├── Inlining.swift │ │ ├── fib.c │ │ ├── has-uuid-syms │ │ ├── make-debuglink │ │ └── make-minidebug │ ├── JSON.swift │ ├── JSONAsync.swift │ ├── NotImportedByDefault.swift │ ├── Overflow.swift │ ├── SimpleAsyncBacktrace.swift │ ├── SimpleBacktrace.swift │ ├── StackOverflow.swift │ ├── StaticBacktracer.swift │ ├── SymbolicatedBacktrace.swift │ ├── SymbolicatedBacktraceInline.swift │ └── Timing.swift ├── CAS │ ├── Inputs │ │ ├── BuildCommandExtractor.py │ │ ├── ExtractOutputKey.py │ │ ├── GenerateExplicitModuleMap.py │ │ ├── PrintResponseFile.py │ │ ├── SwiftDepsExtractor.py │ │ └── objc.h │ ├── Xcc_args.swift │ ├── Xcc_objc_direct.swift │ ├── binary_module_deps.swift │ ├── block-list.swift │ ├── bridging-header.swift │ ├── cache_key_compute.swift │ ├── cache_replay.swift │ ├── cache_replay_mccas.swift │ ├── cache_replay_multiple_files.swift │ ├── cache_replay_multiple_files_mccas.swift │ ├── cached_diagnostics.swift │ ├── cached_diagnostics_empty_filename.swift │ ├── cached_diagnostics_macro.swift │ ├── cached_diagnostics_pcm.swift │ ├── cached_diagnostics_remap.swift │ ├── can-import.swift │ ├── cas-explicit-module-map.swift │ ├── cas_output_backend.swift │ ├── clang-module-export-as.swift │ ├── clang-target-codegen.swift │ ├── coverage-dir.swift │ ├── cross_import.swift │ ├── debuginfo_invariant.swift │ ├── dependency_file.swift │ ├── deps_cas_fs.swift │ ├── deterministic_check.swift │ ├── embedded-Xcc.swift │ ├── include-tree-cxx.swift │ ├── include-tree.swift │ ├── incremental_scan.swift │ ├── index-store.swift │ ├── lit.local.cfg │ ├── loc-directive-diagnostics.swift │ ├── macro_deps.swift │ ├── macro_option_set.swift │ ├── macro_plugin.swift │ ├── macro_plugin_external.swift │ ├── mccas.swift │ ├── module_deps_clang_extras.swift │ ├── module_deps_include_tree.swift │ ├── module_hash.swift │ ├── module_path_remap.swift │ ├── module_trace.swift │ ├── no-cas-path-dependency.swift │ ├── opt-record.swift │ ├── path_remap.swift │ ├── plugin_cas.swift │ ├── simlink_inputs.swift │ ├── swift-scan-diagnostics-batch.swift │ ├── swift-scan-diagnostics.swift │ ├── swift-scan-response-file.swift │ ├── swift-scan-test-llvm-args.swift │ ├── swift-scan-test-mccas.swift │ ├── swift-scan-test.swift │ ├── symbol-graph.swift │ ├── uncached-casfs.swift │ └── vfsoverlay.swift ├── CMakeLists.txt ├── Casting │ ├── CastTraps.swift.gyb │ ├── Cast_Blocks.swift │ ├── Casts.swift │ ├── Inputs │ │ ├── Cast_Blocks │ │ │ ├── Cast_Blocks.h │ │ │ ├── Cast_Blocks.m │ │ │ └── module.modulemap │ │ ├── ObjCClassConstants │ │ │ ├── ObjCClassConstants.h │ │ │ ├── ObjCClassConstants.m │ │ │ └── module.modulemap │ │ └── classes.swift │ ├── ObjCClassConstants.swift │ ├── ParameterizedExistentials.swift │ ├── TypeOf_ExtendedExistential.swift │ ├── fast_class_casts.swift │ └── raw_identifier_tuple_elements.swift ├── CircularReferences │ ├── extensions.swift │ ├── global_typealias.swift │ ├── objc.swift │ └── protocols.swift ├── ClangImporter │ ├── AllowErrors │ │ ├── invalid-pch-bridging-header.swift │ │ └── invalid-pcm.swift │ ├── AppKit_test.swift │ ├── CoreGraphics_test.swift │ ├── CoreMIDI_test.swift │ ├── CoreServices_test.swift │ ├── Darwin_sdk_test.swift │ ├── Darwin_test.swift │ ├── Dispatch_test.swift │ ├── Inputs │ │ ├── DoubleMainActor.h │ │ ├── ImplementProtoRenaming.swift │ │ ├── ImportAsMemberSwiftVersioned_a.swift │ │ ├── ImportAsMemberSwiftVersioned_b.swift │ │ ├── ModuleMapWarning │ │ │ ├── PrivateWarning.framework │ │ │ │ ├── Headers │ │ │ │ │ └── PrivateWarning.h │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.private.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── PrivateWarning_Private.h │ │ │ └── bridging-pch.h │ │ ├── MoreSwiftNewtypes_conformances.swift │ │ ├── MoreSwiftNewtypes_tests.swift │ │ ├── SerializationHelper.swift │ │ ├── SwiftPrivateAttr.txt │ │ ├── System │ │ │ └── Library │ │ │ │ └── Frameworks │ │ │ │ └── LinkFramework.framework │ │ │ │ ├── Headers │ │ │ │ └── LinkFramework.h │ │ │ │ ├── LinkFramework │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── app-bridging-header-to-pch.h │ │ ├── app-that-uses-pch-bridging-header.swift │ │ ├── attr-objc_subclassing_restricted.h │ │ ├── availability_custom_domains_other.swift │ │ ├── availability_domains_bridging_header.h │ │ ├── availability_implicit_macosx_other.swift │ │ ├── availability_platform_categories.h │ │ ├── bad-bridging-header.h │ │ ├── bad-ns-extensible-string-enum.h │ │ ├── cfuncs.swift │ │ ├── chained-unit-test-bridging-header-to-pch.h │ │ ├── const_and_pure.h │ │ ├── ctypes_msvc.h │ │ ├── custom-modules │ │ │ ├── AliasCaseErrorEnum │ │ │ │ ├── AliasCaseErrorEnum.apinotes │ │ │ │ ├── AliasCaseErrorEnum.h │ │ │ │ └── module.modulemap │ │ │ ├── Aliases.h │ │ │ ├── AvailabilityExtras.h │ │ │ ├── BlocksReturningBool.h │ │ │ ├── CFAndObjC.h │ │ │ ├── CInsideObjC.h │ │ │ ├── ClangModuleUser.h │ │ │ ├── CommonName.h │ │ │ ├── ConditionallyFoo.h │ │ │ ├── ConflictingNames.h │ │ │ ├── CoreCooling.h │ │ │ ├── EnumExhaustivity.apinotes │ │ │ ├── EnumExhaustivity.h │ │ │ ├── ForwardDeclarationsHelper.h │ │ │ ├── ImageInitializers.h │ │ │ ├── ImportAsMember.apinotes │ │ │ ├── ImportAsMember.h │ │ │ ├── ImportAsMember_Private.h │ │ │ ├── ImportsMissingHeader.h │ │ │ ├── IncompleteTypes │ │ │ │ ├── complete-swift-types.swift │ │ │ │ ├── complete-types.h │ │ │ │ ├── complete-types.m │ │ │ │ ├── incomplete-noroottype-protocol-library.h │ │ │ │ ├── incomplete-noroottype-protocol-library.m │ │ │ │ ├── incomplete-nsproxy-library.h │ │ │ │ ├── incomplete-nsproxy-library.m │ │ │ │ ├── incomplete-type-library-1.h │ │ │ │ ├── incomplete-type-library-1.m │ │ │ │ ├── incomplete-type-library-2.h │ │ │ │ ├── incomplete-type-library-2.m │ │ │ │ ├── module.modulemap │ │ │ │ ├── objc-library-forward-declaring-complete-swift-types.h │ │ │ │ └── objc-library-forward-declaring-complete-swift-types.m │ │ │ ├── IndirectFields.h │ │ │ ├── IndirectFrameworkImporter.h │ │ │ ├── LocalVsFileScope.h │ │ │ ├── LocalVsFileScopeBase.h │ │ │ ├── MacOSVersionCanonicalization.h │ │ │ ├── MacrosDeliberateRedefA │ │ │ │ ├── New.h │ │ │ │ ├── Old.h │ │ │ │ └── module.modulemap │ │ │ ├── MacrosDeliberateRedefB │ │ │ │ ├── Newer.h │ │ │ │ └── module.modulemap │ │ │ ├── MacrosRedefA.h │ │ │ ├── MacrosRedefB.h │ │ │ ├── MacrosRedefWithParallelSubmodules │ │ │ │ ├── A.h │ │ │ │ ├── B.h │ │ │ │ └── module.modulemap │ │ │ ├── MacrosRedefWithSubmodules │ │ │ │ ├── Inner.h │ │ │ │ ├── Outer.h │ │ │ │ └── module.modulemap │ │ │ ├── MoreSwiftNewtypes.h │ │ │ ├── NSManagedObject.h │ │ │ ├── Newtype.h │ │ │ ├── NewtypeSystem.h │ │ │ ├── ObjCBridgeNonconforming.h │ │ │ ├── ObjCIRExtras.h │ │ │ ├── ObjCParseExtras.apinotes │ │ │ ├── ObjCParseExtras.h │ │ │ ├── ObjCParseExtrasInitHelper.h │ │ │ ├── ObjCParseExtrasSystem.h │ │ │ ├── ObjCParseExtrasToo.h │ │ │ ├── ObjCParseExtrasTooHelper.h │ │ │ ├── ObjCSubscripts.h │ │ │ ├── PredefinedMacros.h │ │ │ ├── ProtoRenaming.h │ │ │ ├── ProtoWithInitializer.h │ │ │ ├── Protocols.h │ │ │ ├── Redeclaration.h │ │ │ ├── RedeclaredErrorEnum │ │ │ │ ├── Base.h │ │ │ │ ├── Redeclared.h │ │ │ │ └── module.modulemap │ │ │ ├── RedeclaredProperties │ │ │ │ ├── RPFirst.h │ │ │ │ ├── RPSecond.h │ │ │ │ ├── RedeclaredProperties.h │ │ │ │ ├── RedeclaredPropertiesSplit.h │ │ │ │ ├── RedeclaredPropertiesSplit2.h │ │ │ │ ├── RedeclaredPropertiesSub.h │ │ │ │ ├── RedeclaredPropertiesSubPrivate.h │ │ │ │ └── module.modulemap │ │ │ ├── SubclassExistentialsExtra.h │ │ │ ├── Submodule.h │ │ │ ├── SwiftName.apinotes │ │ │ ├── SwiftName.h │ │ │ ├── SwiftPrivateAttr.h │ │ │ ├── TextualHeaders.framework │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── TextualHeader.h │ │ │ ├── TypeAndValue.h │ │ │ ├── UnimportableMembers.h │ │ │ ├── UnimportableMembersUser.h │ │ │ ├── UsesSubmodule.h │ │ │ ├── Warnings1.h │ │ │ ├── Warnings2.h │ │ │ ├── Warnings3.h │ │ │ ├── Warnings4.h │ │ │ ├── Warnings5.h │ │ │ ├── Warnings6.h │ │ │ ├── Warnings7.h │ │ │ ├── Warnings8.h │ │ │ ├── Warnings9.h │ │ │ ├── WeirdCModule.h │ │ │ ├── ctypes_bits_exported.h │ │ │ ├── cxx_interop.h │ │ │ ├── module.modulemap │ │ │ ├── more-custom-modules │ │ │ │ ├── ImportsMissingHeaderIndirect.h │ │ │ │ └── module.modulemap │ │ │ ├── script.h │ │ │ ├── versioning.h │ │ │ └── x.h │ │ ├── diags_from_header.h │ │ ├── enum-anon.h │ │ ├── enum-error.h │ │ ├── enum-error.m │ │ ├── enum-inferred-exhaustivity.h │ │ ├── enum-new.h │ │ ├── enum-objc.h │ │ ├── enum-stack-protection.h │ │ ├── experimental_clang_importer_diagnostics_bridging_header.h │ │ ├── explicit_existential.h │ │ ├── frameworks │ │ │ ├── Another.framework │ │ │ │ ├── Another │ │ │ │ ├── Headers │ │ │ │ │ └── Another.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── CategoryOverrides.framework │ │ │ │ ├── Headers │ │ │ │ │ └── CategoryOverrides.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── Private.h │ │ │ ├── ImportAsMemberSubmodules.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Actual.h │ │ │ │ │ ├── Fwd.h │ │ │ │ │ ├── ImportAsMemberSubmodules.apinotes │ │ │ │ │ └── ImportAsMemberSubmodules.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── MismatchedNames.framework │ │ │ │ ├── Headers │ │ │ │ │ └── MismatchedNames-Swift.h │ │ │ │ ├── MismatchedNamesSwift.swift │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Module.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Buried │ │ │ │ │ │ └── Treasure.h │ │ │ │ │ ├── Module.h │ │ │ │ │ ├── NotInModule.h │ │ │ │ │ ├── Sub.h │ │ │ │ │ └── Sub2.h │ │ │ │ ├── Module │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.private.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ ├── Sub3.h │ │ │ │ │ └── Sub4.h │ │ │ ├── PrivateAsParallel.framework │ │ │ │ ├── Headers │ │ │ │ │ └── PrivateAsParallel.h │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.private.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── PrivateAsParallel_Priv.h │ │ │ ├── PrivateAsSubmodule.framework │ │ │ │ ├── Headers │ │ │ │ │ └── PrivateAsSubmodule.h │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.private.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── PrivateAsSubmodule_Priv.h │ │ │ ├── PrivatelyReadwrite.framework │ │ │ │ ├── Headers │ │ │ │ │ └── PrivatelyReadwrite.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ │ └── Private.h │ │ │ ├── SPIContainer.framework │ │ │ │ ├── Headers │ │ │ │ │ └── SPIContainer.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── SPIContainerImporter.framework │ │ │ │ ├── Headers │ │ │ │ │ └── SPIContainerImporter.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Simple.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Simple.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Simple │ │ │ │ └── Simple.tbd │ │ │ └── objc_init_redundant.framework │ │ │ │ ├── Headers │ │ │ │ └── objc_init_redundant.h │ │ │ │ ├── Modules │ │ │ │ ├── module.modulemap │ │ │ │ └── module.private.modulemap │ │ │ │ └── PrivateHeaders │ │ │ │ └── objc_init_redundant_priv.h │ │ ├── ibaction.h │ │ ├── incomplete_objc_types_bridging_header.h │ │ ├── inherited-protocols-sil.h │ │ ├── inlinable_bitfields_other.swift │ │ ├── invalid_bridging_header.h │ │ ├── issue-56636.h │ │ ├── macros_redef.h │ │ ├── many-imports │ │ │ ├── module.modulemap │ │ │ └── obsoleted.h │ │ ├── mirror_import_overrides_1.h │ │ ├── mirror_import_overrides_2.h │ │ ├── missing-requirement │ │ │ └── module.modulemap │ │ ├── move_only_types_cycle.h │ │ ├── nested_protocol_name.h │ │ ├── no-fake-source-buffer-excerpts.h │ │ ├── no-import-objc │ │ │ ├── module.modulemap │ │ │ └── people.h │ │ ├── no-nsobject-protocol.h │ │ ├── non-modular │ │ │ ├── Foo.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── NonModular.h │ │ ├── objc_curried_method.h │ │ ├── objc_generics_upper_bound.h │ │ ├── objc_init_blocks.h │ │ ├── objc_init_generics.h │ │ ├── objc_init_override_kind.h │ │ ├── objc_init_redundant_bridging.h │ │ ├── objc_nsmanaged_other.swift │ │ ├── other.swift │ │ ├── overlay.swift │ │ ├── overlay_extension_initializer.swift │ │ ├── pch-bridging-header-with-another-bridging-header │ │ │ ├── app.h │ │ │ ├── has_warning.h │ │ │ └── unit-tests.h │ │ ├── pch-bridging-header-with-non-modular-import.h │ │ ├── pch-loading-error.h │ │ ├── privateframeworks │ │ │ ├── bridging-somekit.h │ │ │ ├── bridging-somekitcore.h │ │ │ ├── overlay │ │ │ │ └── SomeKit.swift │ │ │ ├── withoutprivate │ │ │ │ └── SomeKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── SKWidget.h │ │ │ │ │ ├── SomeKit.apinotes │ │ │ │ │ └── SomeKit.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── withprivate-autolink │ │ │ │ ├── SomeKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── SKWidget.h │ │ │ │ │ │ └── SomeKit.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── SomeKit.tbd │ │ │ │ └── SomeKitCore.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── SKWidget.h │ │ │ │ │ └── SomeKitCore.h │ │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── SomeKitCore.tbd │ │ │ └── withprivate │ │ │ │ ├── SomeKit.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── SKWidget.h │ │ │ │ │ ├── SomeKit.apinotes │ │ │ │ │ └── SomeKit.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── SomeKitCore.framework │ │ │ │ ├── Headers │ │ │ │ ├── SKWidget.h │ │ │ │ ├── SomeKitCore.apinotes │ │ │ │ └── SomeKitCore.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── protocol-member-renaming.h │ │ ├── regionbasedisolation.h │ │ ├── requirement-conflict │ │ │ └── CoreFeatures.framework │ │ │ │ ├── CoreFeatures │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── CoreFeatures │ │ │ │ ├── Headers │ │ │ │ │ ├── CoreFeatures-Swift.h │ │ │ │ │ ├── CoreFeatures.h │ │ │ │ │ └── RootObject.h │ │ │ │ └── Modules │ │ │ │ │ ├── CoreFeatures.swiftmodule │ │ │ │ │ ├── arm64-apple-macos.swiftdoc │ │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ ├── arm64.swiftinterface │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ ├── x86_64-apple-macos.swiftinterface │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Current │ │ ├── restated-protocol-requirement.h │ │ ├── sdk-bridging-header.h │ │ ├── sdk-protocol-class │ │ │ ├── os1.swift │ │ │ ├── os2.swift │ │ │ └── os3.swift │ │ ├── sending.h │ │ ├── serialization-sil.h │ │ ├── static_inline.h │ │ ├── static_inline.swift │ │ ├── submodules-bridging-header.h │ │ ├── systemsearchpaths │ │ │ ├── Frameworks │ │ │ │ └── FWModule.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── FWModule.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── include │ │ │ │ ├── Module.h │ │ │ │ └── module.modulemap │ │ ├── throwing-mismarked-nonnullable-error.h │ │ ├── typedef-with-generic-param.h │ │ ├── unicode │ │ │ ├── module.modulemap │ │ │ └── unicode.h │ │ └── unit-test-bridging-header-to-pch.h │ ├── MixedSource │ │ ├── Inputs │ │ │ ├── AutolinkingTest.framework │ │ │ │ ├── AutolinkingTest │ │ │ │ ├── Headers │ │ │ │ │ └── AutolinkingTest.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── WithSubmodule.framework │ │ │ │ ├── Empty.swift │ │ │ │ ├── Headers │ │ │ │ │ └── Submodule.h │ │ │ │ └── Modules │ │ │ │ │ ├── WithSubmodule.swiftmodule │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ ├── Xcc_include.h │ │ │ ├── broken-modules │ │ │ │ ├── BrokenClangModule.h │ │ │ │ ├── MissingDependencyFromClang.h │ │ │ │ ├── MissingDependencyFromSwift.swift │ │ │ │ └── module.modulemap │ │ │ ├── defer-supermodule-import │ │ │ │ ├── Some-Bridging-Header.h │ │ │ │ └── Some.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── Some.h │ │ │ │ │ └── Submodule.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── error-on-define-impl.h │ │ │ ├── error-on-define.h │ │ │ ├── forward-declarations-other.swift │ │ │ ├── forward-declarations.h │ │ │ ├── import-as-member-swift.h │ │ │ ├── import-mixed-framework-with-forward.h │ │ │ ├── mixed-framework │ │ │ │ ├── Mixed.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Mixed.h │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── Mixed.swiftmodule │ │ │ │ │ │ └── .keep │ │ │ │ │ │ └── module.modulemap │ │ │ │ └── Mixed.swift │ │ │ ├── mixed-target │ │ │ │ ├── Mixed.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Mixed.h │ │ │ │ │ ├── Mixed │ │ │ │ │ └── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── header-again.h │ │ │ │ ├── header.h │ │ │ │ ├── other-file.swift │ │ │ │ └── used-by-both-headers.h │ │ │ ├── mixed-with-header-again.swift │ │ │ ├── mixed-with-header.swift │ │ │ ├── resolve-cross-language │ │ │ │ ├── Base.modulemap │ │ │ │ ├── Base.swift │ │ │ │ └── BaseUser.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── BaseUser.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── submodule │ │ │ │ ├── Mixed.h │ │ │ │ ├── Submodule.h │ │ │ │ └── module.modulemap │ │ │ └── user-module │ │ │ │ ├── module.modulemap │ │ │ │ └── user.h │ │ ├── Xcc_include.swift │ │ ├── autolinking.swift │ │ ├── broken-bridging-header.swift │ │ ├── broken-modules.swift │ │ ├── can_import_objc_idempotent.swift │ │ ├── can_import_submodule_in_mixed_framework.swift │ │ ├── defer-supermodule-import.swift │ │ ├── forward-declarations.swift │ │ ├── import-as-member-swift.swift │ │ ├── import-mixed-framework-with-forward.swift │ │ ├── import-mixed-framework.swift │ │ ├── import-mixed-with-header-twice.swift │ │ ├── import-mixed-with-header.swift │ │ ├── mixed-nsuinteger.swift │ │ ├── mixed-target-using-header-swift4.swift │ │ ├── mixed-target-using-header.swift │ │ ├── mixed-target-using-module.swift │ │ ├── resolve-cross-language.swift │ │ └── submodule.swift │ ├── SceneKit_test.swift │ ├── Security_test.swift │ ├── accessibility_framework.swift │ ├── alias-invalid.swift │ ├── alias.swift │ ├── attr-objc_subclassing_restricted.swift │ ├── attr-swift_name-errors.swift │ ├── attr-swift_name.swift │ ├── attr-swift_name_renaming-objc.swift │ ├── attr-swift_name_renaming.swift │ ├── attr-swift_private.swift │ ├── autolink-disable-all.swift │ ├── autolink-disable-frameworks.swift │ ├── autolink-disable-library.swift │ ├── autolinking.swift │ ├── availability.swift │ ├── availability_app_extension.swift │ ├── availability_custom_domains.swift │ ├── availability_implicit_macosx.swift │ ├── availability_ios.swift │ ├── availability_maccatalyst.swift │ ├── availability_maccatalyst_app_extension.swift │ ├── availability_macosx.swift │ ├── availability_macosx_canonical_versions.swift │ ├── availability_macosx_canonical_versions_appext.swift │ ├── availability_open_enums.swift │ ├── availability_platform_categories.swift │ ├── availability_returns_twice-msvc-aarch64.swift │ ├── availability_returns_twice-msvc-x86_64.swift │ ├── availability_returns_twice.swift │ ├── availability_spi_as_unavailable.swift │ ├── availability_spi_as_unavailable_bridging_header.swift │ ├── availability_spi_library_level_spi.swift │ ├── availability_spi_transitive.swift │ ├── availability_variadic.swift │ ├── availability_watchos.swift │ ├── bad-deployment-target.swift │ ├── bad-ns-extensible-string-enum.swift │ ├── blocks_parse.swift │ ├── blocks_returning_bool.swift │ ├── broken-modules.swift │ ├── c_inside_objc.swift │ ├── can_import_missing_requirement.swift │ ├── can_import_underlying_version.swift │ ├── can_import_underlying_version_ignores_swift_module_version.swift │ ├── can_import_underlying_version_tbd_missing_version.swift │ ├── can_import_version_ignores_missing_tbd_version.swift │ ├── cf.swift │ ├── cfuncs_ir.swift │ ├── cfuncs_parse.swift │ ├── cfuncs_scope.swift │ ├── clang-function-types.swift │ ├── clang_builtin_pcm.swift │ ├── clang_builtins.swift │ ├── const_and_pure.swift │ ├── const_values.swift │ ├── const_values_apinotes.swift │ ├── const_values_cxx.swift │ ├── const_values_fail.swift │ ├── const_values_objc.swift │ ├── cstring_parse.swift │ ├── ctypes_ir.swift │ ├── ctypes_parse.swift │ ├── ctypes_parse_bitfields.swift │ ├── ctypes_parse_macosx.swift │ ├── ctypes_parse_msvc.swift │ ├── ctypes_parse_objc.swift │ ├── ctypes_parse_swift4.swift │ ├── ctypes_parse_union.swift │ ├── custom-include.swift │ ├── cvars_ir.swift │ ├── cvars_parse.swift │ ├── cxx_interop.swift │ ├── cxx_interop_ir.swift │ ├── diags-from-many-modules.swift │ ├── diags-with-many-imports.swift │ ├── diags_from_header.swift │ ├── diags_from_module.swift │ ├── disable-modules-validate-system-headers.swift │ ├── disable-source-import.swift │ ├── duplicate_mainactor.swift │ ├── dynamic_actor_isolation_checks.swift │ ├── enum-anon-sized.swift │ ├── enum-anon.swift │ ├── enum-cxx.swift │ ├── enum-dataflow.swift │ ├── enum-error-case-alias.swift │ ├── enum-error-execute.swift │ ├── enum-error-redeclared.swift │ ├── enum-error.swift │ ├── enum-exhaustivity-system.swift │ ├── enum-exhaustivity.swift │ ├── enum-inferred-exhaustivity.swift │ ├── enum-new.swift │ ├── enum-objc.swift │ ├── enum-renames.swift │ ├── enum-stack-protection.swift │ ├── enum-with-target.swift │ ├── enum.swift │ ├── escaped-identifier-module-name.swift │ ├── experimental_clang_importer_diagnostics_bridging_header.swift │ ├── experimental_diagnostics_cfuncs.swift │ ├── experimental_diagnostics_cmacros.swift │ ├── experimental_diagnostics_cstructs.swift │ ├── experimental_diagnostics_incomplete_types.swift │ ├── experimental_diagnostics_incomplete_types_negative.swift │ ├── experimental_diagnostics_lookup_accuracy.swift │ ├── experimental_diagnostics_no_noise.swift │ ├── experimental_diagnostics_opt_out.swift │ ├── experimental_diagnostics_unreferenced_cmacros.swift │ ├── experimental_eager_diagnostics.swift │ ├── explicit_existential.swift │ ├── foreign_errors.swift │ ├── generic_compatibility_alias.swift │ ├── import-as-member-objc.swift │ ├── import-as-member-versioned.swift │ ├── import-as-member.swift │ ├── import-cgfloat-api.swift │ ├── incomplete_objc_types_availability.swift │ ├── incomplete_objc_types_base_interface.swift │ ├── incomplete_objc_types_base_interface_swift_6.swift │ ├── incomplete_objc_types_bridging_header.swift │ ├── incomplete_objc_types_compatibility_complete_incomplete.swift │ ├── incomplete_objc_types_compatibility_complete_incomplete_inter_file_clang_definition.swift │ ├── incomplete_objc_types_compatibility_complete_incomplete_inter_file_swift_definition.swift │ ├── incomplete_objc_types_compatibility_incomplete_incomplete.swift │ ├── incomplete_objc_types_full_availability.swift │ ├── incomplete_objc_types_full_availability_swift_6.swift │ ├── incomplete_objc_types_importing_limitations_diagnostics.swift │ ├── incomplete_objc_types_no_reference.swift │ ├── incomplete_objc_types_no_root_protocol.swift │ ├── incomplete_objc_types_nsproxy.swift │ ├── incomplete_objc_types_swift_definition_imported.swift │ ├── incomplete_objc_types_swift_definition_imported_implementationOnly.swift │ ├── incomplete_objc_types_swift_definition_imported_name_conflict.swift │ ├── incomplete_objc_types_swift_definition_imported_shadow_type_mismatch.swift │ ├── incomplete_objc_types_swift_ide_test.swift │ ├── indirect_field_codegen.swift │ ├── indirect_fields.swift │ ├── inherited-protocols-sil.swift │ ├── inlinable_bitfields.swift │ ├── invalid_bridging_header.swift │ ├── invalid_vars_should_have_error_type.swift │ ├── invocation-mcpu.swift │ ├── issue-56636.swift │ ├── long-long-promotion.swift │ ├── macro_literals.swift │ ├── macros.swift │ ├── macros_redef.swift │ ├── mapped-integers.swift.gyb │ ├── mirror_import_overrides.swift │ ├── mirror_instance_property_static_method.swift │ ├── missing-overlay.swift │ ├── module-alias-escaped-identifier.swift │ ├── module-alias.swift │ ├── move_only_types_cycle.swift │ ├── nested_protocol_name.swift │ ├── newtype_conformance.swift │ ├── no-fake-source-buffer-excerpts.swift │ ├── no-import-objc.swift │ ├── no-nsobject-protocol.swift │ ├── no-sdk.swift │ ├── non-modular-include.swift │ ├── nullability.swift │ ├── nullability_silgen.swift │ ├── objc-cross-module-override.swift │ ├── objc_async.swift │ ├── objc_async_attrs_noconcurrency.swift │ ├── objc_async_conformance.swift │ ├── objc_async_macos.swift │ ├── objc_bridge_categories.swift │ ├── objc_bridging.swift │ ├── objc_bridging_custom.swift │ ├── objc_bridging_generics.swift │ ├── objc_class_subscript.swift │ ├── objc_curried_method.swift │ ├── objc_diags.swift │ ├── objc_direct.swift │ ├── objc_dynamic_lookup.swift │ ├── objc_factory_method.swift │ ├── objc_failable_inits.swift │ ├── objc_final_dynamic.swift │ ├── objc_forward_declarations.swift │ ├── objc_generics_conformance.swift │ ├── objc_generics_upper_bound.swift │ ├── objc_ibaction.swift │ ├── objc_id_as_any.swift │ ├── objc_implicit_with.swift │ ├── objc_init.swift │ ├── objc_init_blocks.swift │ ├── objc_init_conformance.swift │ ├── objc_init_generics.swift │ ├── objc_init_override_kind.swift │ ├── objc_init_redundant.swift │ ├── objc_ir.swift │ ├── objc_isolation_complete.swift │ ├── objc_method_with_sendable_generic_requirement.swift │ ├── objc_mismatched_names.swift │ ├── objc_missing_designated_init.swift │ ├── objc_nsmanagedobject.swift │ ├── objc_override.swift │ ├── objc_parse.swift │ ├── objc_parse_verifier.swift │ ├── objc_protocol_renaming.swift │ ├── objc_proxies.swift │ ├── objc_redeclared_properties.swift │ ├── objc_redeclared_properties_categories.swift │ ├── objc_redeclared_properties_incompatible.swift │ ├── objc_runtime_visible.swift │ ├── objc_subscript.swift │ ├── optional.swift │ ├── overlay.swift │ ├── overlay_with_submodule.swift │ ├── pch-bridging-header-deps-fine.swift │ ├── pch-bridging-header-module-map-diags.swift │ ├── pch-bridging-header-serialized-diagnostics.swift │ ├── pch-bridging-header-unittest-ok.swift │ ├── pch-bridging-header-unittest-warn.swift │ ├── pch-bridging-header-vs-modular-interface-defn.swift │ ├── pch-bridging-header-with-another-bridging-header.swift │ ├── pch-bridging-header.swift │ ├── pch-loaded-from-header-name.swift │ ├── pch-loading-error.swift │ ├── pcm-emit-and-import.swift │ ├── pcm-emit-direct-cc1-mode.swift │ ├── pcm-emit-system-module.swift │ ├── predates_concurrency_import_swift6.swift │ ├── predefined_macros.swift │ ├── print-module-map-paths.swift │ ├── private_frameworks.swift │ ├── private_frameworks_autolink.swift │ ├── private_frameworks_autolink2.swift │ ├── private_frameworks_modules.swift │ ├── protocol-conformance-in-extension.swift │ ├── protocol-member-renaming.swift │ ├── protocol_metatype_object_conversion.swift │ ├── rdar102564592.swift │ ├── rdar123543707.swift │ ├── regionbasedisolation.swift │ ├── remarks.swift │ ├── requirement-conflict.swift │ ├── requires.swift │ ├── restated-protocol-requirement.swift │ ├── script.swift │ ├── sdk-apinotes.swift │ ├── sdk-bridging-header.swift │ ├── sdk-protocol-class.swift │ ├── sdk.swift │ ├── search-path-order.swift │ ├── sending.swift │ ├── sending_objc.swift │ ├── serialization-search-paths.swift │ ├── serialization-sil.swift │ ├── serialization.swift │ ├── simd.swift │ ├── static_inline.swift │ ├── static_inline_serialize.swift │ ├── static_stdlib.swift │ ├── subclass_existentials.swift │ ├── subclass_existentials_ir.swift │ ├── submodules-bridging-header.swift │ ├── submodules.swift │ ├── submodules_indirect.swift │ ├── submodules_scoped.swift │ ├── swift2_warnings.swift │ ├── swift_modules.swift │ ├── system-search-paths.swift │ ├── textual_headers.swift │ ├── throwing-mismarked-nonnullable-error.swift │ ├── typedef_with_generic_param.swift │ ├── uikit_hacks.swift │ ├── unicode.swift │ ├── validate-modules-once.swift │ ├── versioning.swift │ ├── windows-sdk-macros.swift │ └── working-directory.swift ├── Compatibility │ ├── MixAndMatch │ │ ├── Inputs │ │ │ ├── SomeObjCModule.apinotes │ │ │ ├── SomeObjCModule.h │ │ │ ├── SomeObjCModuleX.swift │ │ │ ├── module.modulemap │ │ │ ├── witness_change_swift4_leaf.swift │ │ │ └── witness_change_swift5.swift │ │ └── witness_change.swift │ ├── accessibility.swift │ ├── accessibility_where.swift │ ├── anyobject_class.swift │ ├── attr_autoclosure.swift │ ├── attr_inlinable_dynamic.swift │ ├── attr_inlinable_old_spelling_4.swift │ ├── attr_inlinable_old_spelling_42.swift │ ├── attr_inlinable_swift42.swift │ ├── attr_inlinable_typealias_swift4.swift │ ├── attr_inlinable_typealias_swift42.swift │ ├── attr_override.swift │ ├── attr_override_lazy.swift │ ├── attr_usableFromInline_protocol.swift │ ├── attr_usableFromInline_swift4.swift │ ├── attr_usableFromInline_swift42.swift │ ├── default_init.swift │ ├── dynamic_self_swift4.swift │ ├── exhaustive_switch.swift │ ├── exhaustive_switch_swift_6.swift │ ├── implicit_tupling_untupling_codegen.swift │ ├── local_types.swift │ ├── lvalue_typeof.swift │ ├── operators.swift │ ├── optional_visibility.swift │ ├── ownership_protocol.swift │ ├── protocol_composition.swift │ ├── self.swift │ ├── shared_owned_identifiers.swift │ ├── special_case_name.swift │ ├── special_func_name.swift │ ├── stdlib_generic_typealiases.swift │ ├── throws_identifier.swift │ └── tuple_arguments_4.swift ├── Concurrency │ ├── Backdeploy │ │ ├── linking.swift │ │ ├── linking_maccatalyst.swift │ │ ├── mangling.swift │ │ ├── objc_actor.swift │ │ └── weak_linking.swift │ ├── CaseIterableIsolation.swift │ ├── Inputs │ │ ├── Delegate.h │ │ ├── GlobalActorIsolatedFunction.swift │ │ ├── GlobalVariables.swift │ │ ├── ImplementationOnlyDefs.swift │ │ ├── NonStrictModule.swift │ │ ├── OtherActors.swift │ │ ├── SendableConformances.swift │ │ ├── SerializedStruct.swift │ │ ├── ShadowsConcur.swift │ │ ├── StrictModule.swift │ │ ├── UnavailableFunction.swift │ │ ├── isolated_conformance_other.swift │ │ ├── other_global_actor_inference.swift │ │ ├── sendable_cycle_other.swift │ │ ├── serialized_default_arguments.swift │ │ ├── transfernonsendable_objc.h │ │ ├── transfernonsendable_preconcurrency_checked.swift │ │ └── transfernonsendable_preconcurrency_unchecked.swift │ ├── LLDBDebuggerFunctionActorExtension.swift │ ├── Macros │ │ └── task_local_macro_expansion.swift │ ├── Reflection │ │ ├── Inputs │ │ │ └── reflect_task.c │ │ └── reflect_task.swift │ ├── Runtime │ │ ├── Inputs │ │ │ ├── MysteryInit.swift │ │ │ ├── RunOnMainActor.h │ │ │ ├── objc_async.h │ │ │ ├── objc_async.m │ │ │ ├── reasync.swift │ │ │ ├── resilient_class.swift │ │ │ └── resilient_protocol.swift │ │ ├── actor_assert_precondition_executor.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_bincompat_crash_swift_6_mode.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_bincompat_nocrash_legacy_mode.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_dispatch_dispatchMain_swift_6_mode.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_dispatch_swift6_mode.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_main_customExecutorOnMain_swift6_mode.swift │ │ ├── actor_assert_precondition_executor_checkIsolated_swift6_mode.swift │ │ ├── actor_assert_precondition_executor_isIsolatingCurrentContext_swift62_mode.swift │ │ ├── actor_assert_precondition_executor_not_implemented_isIsolatingCurrentContext_swift62_mode.swift │ │ ├── actor_assume_executor.swift │ │ ├── actor_counters.swift │ │ ├── actor_counters_freestanding.swift │ │ ├── actor_deinit_escaping_self.swift │ │ ├── actor_detach.swift │ │ ├── actor_dynamic_subclass.swift │ │ ├── actor_init.swift │ │ ├── actor_init_abi.swift │ │ ├── actor_isIsolatingCurrentContext.swift │ │ ├── actor_keypaths.swift │ │ ├── actor_recursive_deinit.swift │ │ ├── async.swift │ │ ├── async_initializer.swift │ │ ├── async_let_fibonacci.swift │ │ ├── async_let_throw_completion_order.swift │ │ ├── async_let_throws.swift │ │ ├── async_parameter_pack.swift │ │ ├── async_properties_actor.swift │ │ ├── async_sequence.swift │ │ ├── async_stream.swift │ │ ├── async_task_async_let_child_cancel.swift │ │ ├── async_task_cancellation_early.swift │ │ ├── async_task_cancellation_taskGroup.swift │ │ ├── async_task_cancellation_while_running.swift │ │ ├── async_task_detach.swift │ │ ├── async_task_executor_and_serial_executor_both_executor.swift │ │ ├── async_task_executor_and_serial_executor_nonisolated_async_func_legacy.swift │ │ ├── async_task_executor_and_serial_executor_nonisolated_async_func_swift6.swift │ │ ├── async_task_executor_default_actor_funcs.swift │ │ ├── async_task_executor_nonisolated_async_func.swift │ │ ├── async_task_executor_nsobject.swift │ │ ├── async_task_executor_structured_concurrency.swift │ │ ├── async_task_executor_unstructured_task_ownership.swift │ │ ├── async_task_executor_withExecutor.swift │ │ ├── async_task_handle_cancellation.swift │ │ ├── async_task_locals_async_let.swift │ │ ├── async_task_locals_basic.swift │ │ ├── async_task_locals_copy_to_async.swift │ │ ├── async_task_locals_copy_to_sync.swift │ │ ├── async_task_locals_groups.swift │ │ ├── async_task_locals_in_task_group_may_need_to_copy.swift │ │ ├── async_task_locals_isolated_deinit.swift │ │ ├── async_task_locals_isolated_deinit_freestanding.swift │ │ ├── async_task_locals_prevent_illegal_use_but_specific_case_is_ok.swift │ │ ├── async_task_locals_synchronous_bind.swift │ │ ├── async_task_locals_wrapper.swift │ │ ├── async_task_naming.swift │ │ ├── async_task_priority_current.swift │ │ ├── async_task_sleep.swift │ │ ├── async_task_sleep_cancel.swift │ │ ├── async_task_withUnsafeCurrentTask.swift │ │ ├── async_task_yield.swift │ │ ├── async_taskgroup_addUnlessCancelled.swift │ │ ├── async_taskgroup_asynciterator_semantics.swift │ │ ├── async_taskgroup_cancelAll_only_specific_group.swift │ │ ├── async_taskgroup_cancel_parent_affects_group.swift │ │ ├── async_taskgroup_cancel_then_completions.swift │ │ ├── async_taskgroup_cancel_then_spawn.swift │ │ ├── async_taskgroup_cancellation_race.swift │ │ ├── async_taskgroup_discarding.swift │ │ ├── async_taskgroup_discarding_dontLeak.swift │ │ ├── async_taskgroup_discarding_dontLeak_class_error.swift │ │ ├── async_taskgroup_discarding_neverConsumingTasks.swift │ │ ├── async_taskgroup_dontLeakTasks.swift │ │ ├── async_taskgroup_is_asyncsequence.swift │ │ ├── async_taskgroup_is_empty.swift │ │ ├── async_taskgroup_next_not_invoked_cancelAll.swift │ │ ├── async_taskgroup_next_not_invoked_without_cancelAll.swift │ │ ├── async_taskgroup_next_on_completed.swift │ │ ├── async_taskgroup_next_on_pending.swift │ │ ├── async_taskgroup_throw_recover.swift │ │ ├── async_taskgroup_throw_rethrow.swift │ │ ├── basic_future.swift │ │ ├── cancellation_handler.swift │ │ ├── cancellation_handler_concurrent.swift │ │ ├── cancellation_handler_only_once.swift │ │ ├── checked_continuation.swift │ │ ├── class_resilience.swift │ │ ├── clock.swift │ │ ├── clocks.swift │ │ ├── continuation_validation.swift │ │ ├── custom_executors.swift │ │ ├── custom_executors_complex_equality.swift │ │ ├── custom_executors_complex_equality_crash.swift │ │ ├── custom_executors_complex_equality_subclass.swift │ │ ├── custom_executors_default.swift │ │ ├── custom_executors_globalActor.swift │ │ ├── custom_executors_moveOnly_job.swift │ │ ├── custom_executors_priority.swift │ │ ├── custom_executors_protocol.swift │ │ ├── custom_executors_sdk_with_consuming_param_but_impl_owned.swift │ │ ├── custom_executors_sdk_with_owned_param_but_impl_consuming.swift │ │ ├── custom_executors_tryDiagnoseExecutorConformance_with_sdk_missing_job_type.swift │ │ ├── custom_executors_tryDiagnoseExecutorConformance_with_sdk_typealias_struct_job_types.swift │ │ ├── custom_main_executor.swift │ │ ├── data_race_detection_crash.swift │ │ ├── data_race_detection_legacy_warning.swift │ │ ├── effectful_properties.swift │ │ ├── exclusivity.swift │ │ ├── exclusivity_custom_executors.swift │ │ ├── executor_deinit1.swift │ │ ├── executor_deinit2.swift │ │ ├── executor_deinit3.swift │ │ ├── future_fibonacci.swift │ │ ├── isolated_conformance.swift │ │ ├── isolated_deinit_main_sync.swift │ │ ├── isolated_macro_in_nonisolated_nonsending_func.swift │ │ ├── mainactor.swift │ │ ├── nonisolated_inherits_isolation.swift │ │ ├── objc_async.swift │ │ ├── protocol_resilience.swift │ │ ├── reasync.swift │ │ ├── sleep_executor.swift │ │ ├── startImmediately.swift │ │ ├── startImmediately_order.swift │ │ ├── startOnMainActor.swift │ │ ├── task_creation.swift │ │ ├── task_destruction.swift │ │ ├── taskgroup_cancelAll_cancellationHandler.swift │ │ └── unspecified_is_main_actor.swift │ ├── ShrinkWrap.swift │ ├── actor_call_implicitly_async.swift │ ├── actor_data_race_checks_minimal.swift │ ├── actor_defer.swift │ ├── actor_derived_conformances.swift │ ├── actor_existentials.swift │ ├── actor_inout_isolation.swift │ ├── actor_isolation.swift │ ├── actor_isolation_cycle.swift │ ├── actor_isolation_filecheck.swift │ ├── actor_isolation_objc.swift │ ├── actor_isolation_swift6.swift │ ├── actor_isolation_unsafe.swift │ ├── actor_keypath_isolation.swift │ ├── actor_keypath_isolation_swift6.swift │ ├── actor_withCancellationHandler.swift │ ├── assumeIsolated.swift │ ├── assume_mainactor.swift │ ├── assume_mainactor_typechecker_errors.swift │ ├── assume_mainactor_typechecker_errors_sendablecheck.swift │ ├── async_cancellation.swift │ ├── async_computed_property.swift │ ├── async_conformance.swift │ ├── async_for_each_back_deploy.swift │ ├── async_initializer.swift │ ├── async_initializer_objc.swift │ ├── async_iterator_inference.swift │ ├── async_let_capture.swift │ ├── async_let_isolation.swift │ ├── async_main.swift │ ├── async_main_invalid_global_actor.swift │ ├── async_main_mainactor_isolation.swift │ ├── async_main_no_concurrency.swift │ ├── async_main_no_exit.swift │ ├── async_main_resolution.swift │ ├── async_main_throws_prints_error.swift │ ├── async_main_typed_error.swift │ ├── async_overload_filtering.swift │ ├── async_sequence_existential.swift │ ├── async_sequence_flatmap_overloading.swift │ ├── async_sequence_macosx.swift │ ├── async_sequence_rethrows.swift │ ├── async_sequence_syntax.swift │ ├── async_task_base_priority.swift │ ├── async_task_escalate_priority.swift │ ├── async_task_group_body_inherit_isolation.swift │ ├── async_task_groups.swift │ ├── async_task_groups_and_actors.swift │ ├── async_task_groups_and_type_inference.swift │ ├── async_task_groups_as_sequence.swift │ ├── async_task_locals_basic_warnings.swift │ ├── async_task_locals_basic_warnings_bug_isolation.swift │ ├── async_task_priority.swift │ ├── async_tasks.swift │ ├── async_throwing.swift │ ├── async_top_level_no_exit.swift │ ├── attr_discardableResult_async_await.swift │ ├── attr_execution │ │ ├── attr_execution.swift │ │ ├── classes_silgen.swift │ │ ├── conversions.swift │ │ ├── conversions_silgen.swift │ │ ├── cross_module.swift │ │ ├── migration_mode.swift │ │ ├── migration_mode_with_interface.swift │ │ ├── nonisolated_cross_module_with_flag_enabled.swift │ │ ├── nonisolated_nonsending_by_default.swift │ │ ├── protocols_silgen.swift │ │ └── witnesses.swift │ ├── await_typo_correction.swift │ ├── blocking_continuations.swift │ ├── builtin_silgen.swift │ ├── closure_isolation.swift │ ├── concurrency_attr_inference_on_closures.swift │ ├── concurrency_availability.swift │ ├── concurrency_module_shadowing.swift │ ├── concurrency_warnings.swift │ ├── concurrent_value_checking.swift │ ├── concurrent_value_checking_objc.swift │ ├── concurrent_value_inference.swift │ ├── concurrentfunction_capturediagnostics.swift │ ├── cross_module_let_sil.swift │ ├── custom_executor_enqueue_availability.swift │ ├── custom_executor_enqueue_deprecation_on_executor_extension.swift │ ├── custom_executor_enqueue_impls.swift │ ├── default_actor_definit.swift │ ├── default_isolation.swift │ ├── deinit_isolation.swift │ ├── deinit_isolation_backdeploy.swift │ ├── deinit_isolation_import │ │ ├── Inputs │ │ │ ├── Alpha.framework │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Alpha.swift │ │ │ ├── Beta.framework │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── Beta.h │ │ └── test.swift │ ├── deinit_isolation_in_value_types.swift │ ├── deinit_isolation_objc.swift │ ├── deinit_isolation_tbd.swift │ ├── derived_conformances_nonisolated.swift │ ├── dispatch_inference.swift │ ├── double_curry_thunk.swift │ ├── dynamic_actor_isolation.swift │ ├── dynamic_checks_for_func_refs_in_preconcurrency_apis.swift │ ├── dynamic_checks_for_func_refs_in_preconcurrency_apis_objc.swift │ ├── dynamic_isolation_checks_for_closures.swift │ ├── effectful_properties_async_if_optional_unwrap.swift │ ├── emit_objc_header_with_Sendable.swift │ ├── execute_child_on_await.swift │ ├── experimental_feature_strictconcurrency.swift │ ├── experimental_feature_strictconcurrency_targeted.swift │ ├── fail_implicit_concurrency_load.swift │ ├── flow_isolation.swift │ ├── flow_isolation_nonstrict.swift │ ├── freestanding_top_level.swift │ ├── global_actor_from_ordinary_context.swift │ ├── global_actor_function_types.swift │ ├── global_actor_function_types_swift6.swift │ ├── global_actor_inference.swift │ ├── global_actor_inference_swift6.swift │ ├── global_actor_isolated_completion_handlers.swift │ ├── global_actor_isolation_cross_module_reference.swift │ ├── global_actor_sendable_fn_type_inference.swift │ ├── global_actor_serialized.swift │ ├── global_function_pointer.swift │ ├── global_variables.swift │ ├── grouped_actor_isolation_diagnostics.swift │ ├── hop_to_executor_unreachable_code.swift │ ├── implied_sendable_conformance_objc.swift │ ├── implied_sendable_conformance_swift5.swift │ ├── implied_sendable_conformance_swift6.swift │ ├── import_nsnotificationname_constants_as_nonisolated.swift │ ├── isolated_any.swift │ ├── isolated_captures.swift │ ├── isolated_conformance.swift │ ├── isolated_conformance_6.swift │ ├── isolated_conformance_default_actor.swift │ ├── isolated_conformance_inference.swift │ ├── isolated_conformance_inference_with_default_actor.swift │ ├── isolated_conformance_migrate.swift │ ├── isolated_conformance_sil.swift │ ├── isolated_default_argument_eval.swift │ ├── isolated_default_arguments.swift │ ├── isolated_default_arguments_serialized.swift │ ├── isolated_default_property_inits.swift │ ├── isolated_nonsending_isolation_macro_sil.swift │ ├── isolated_parameter_valid.swift │ ├── isolated_parameters.swift │ ├── isolation_macro.swift │ ├── isolation_macro_availability.swift │ ├── isolation_macro_local_functions.swift │ ├── issue-57376.swift │ ├── issue-70019.swift │ ├── issue-80363.swift │ ├── issue62394.swift │ ├── local_functions.swift │ ├── metatype_crasher.swift │ ├── nonisolated_access.swift │ ├── nonisolated_deinit.swift │ ├── nonisolated_inherits_isolation.swift │ ├── nonisolated_inherits_isolation_sema.swift │ ├── nonisolated_nonsending.swift │ ├── nonisolated_nonsending_objc_async_by_default.swift │ ├── nonisolated_nonsending_optimize_hoptoexecutor.swift │ ├── nonisolated_rules.swift │ ├── objc_async_overload.swift │ ├── objc_async_protocol_irgen.swift │ ├── objc_require_explicit_sendable.swift │ ├── optional_isolated_parameters.swift │ ├── preconcurrency_anyobject_lookup.swift │ ├── preconcurrency_conformances.swift │ ├── preconcurrency_implementationonly_override.swift │ ├── preconcurrency_overload.swift │ ├── preconcurrency_typealias.swift │ ├── predates_concurrency.swift │ ├── predates_concurrency_import.swift │ ├── predates_concurrency_import_deinit.swift │ ├── predates_concurrency_import_emitmodule.swift │ ├── predates_concurrency_import_foundation_darwin.swift │ ├── predates_concurrency_import_nowarn.swift │ ├── predates_concurrency_import_swift6.swift │ ├── predates_concurrency_swift6.swift │ ├── property_initializers_swift6.swift │ ├── radar_concurrency_nio.swift │ ├── reasync.swift │ ├── reasync_protocol.swift │ ├── reasync_ranking.swift │ ├── redundant_sendable_conformance.swift │ ├── regionanalysis_trackable_value.sil │ ├── require-explicit-sendable.swift │ ├── self_escapes_deinit.swift │ ├── sendable_associated_type.swift │ ├── sendable_attr_in_result_of_objc_methods.swift │ ├── sendable_checking.swift │ ├── sendable_checking_captures_swift5.swift │ ├── sendable_checking_captures_swift6.swift │ ├── sendable_checking_errors.swift │ ├── sendable_checking_swift6.swift │ ├── sendable_conformance_checking.swift │ ├── sendable_conformance_checking_skip_sending.swift │ ├── sendable_cycle.swift │ ├── sendable_disambiguation.swift │ ├── sendable_existentials.swift │ ├── sendable_functions.swift │ ├── sendable_keypath-observe-objc.swift │ ├── sendable_keypaths.swift │ ├── sendable_metatype.swift │ ├── sendable_metatype_swift5.swift │ ├── sendable_metatype_typecheck.swift │ ├── sendable_methods.swift │ ├── sendable_module_checking.swift │ ├── sendable_obc_protocol.swift │ ├── sendable_objc_attr_in_type_context_swift5.swift │ ├── sendable_objc_attr_in_type_context_swift5_strict.swift │ ├── sendable_objc_attr_in_type_context_swift6.swift │ ├── sendable_objc_protocol_attr.swift │ ├── sendable_override_checking.swift │ ├── sendable_preconcurrency.swift │ ├── sendable_preconcurrency_erasure.swift │ ├── sendable_preconcurrency_unused.swift │ ├── sendable_to_any_for_generic_arguments.swift │ ├── sendable_without_preconcurrency.swift │ ├── sendable_without_preconcurrency_2.swift │ ├── sendable_witness_check_delayed.swift │ ├── sending_asynciteratornext_typechecker_error.swift │ ├── sending_closure_inference.swift │ ├── sending_conditional_suppression.swift │ ├── sending_continuation.swift │ ├── sending_interfacefile_printing.swift │ ├── sending_mangling.swift │ ├── sending_subscript.swift │ ├── sending_witness_subscript.swift │ ├── silisolationinfo_inference.sil │ ├── startImmediatelyIsolation.swift │ ├── strict_concurrency_minimal.swift │ ├── task_local.swift │ ├── task_naming_availability.swift │ ├── taskgroup_cancelAll_from_child.swift │ ├── throwing.swift │ ├── toplevel │ │ ├── Inputs │ │ │ └── foo.swift │ │ ├── async-5-top-level.swift │ │ ├── async-6-top-level.swift │ │ ├── main.swift │ │ ├── no-async-5-top-level.swift │ │ ├── no-async-6-top-level.swift │ │ └── synchronous_mainactor.swift │ ├── transfernonsendable.sil │ ├── transfernonsendable.swift │ ├── transfernonsendable_asynclet.swift │ ├── transfernonsendable_cfg.sil │ ├── transfernonsendable_closureliterals_isolationinference.swift │ ├── transfernonsendable_defer_and_typecheck_only.swift │ ├── transfernonsendable_functionsubtyping.swift │ ├── transfernonsendable_functionsubtyping_swift5.swift │ ├── transfernonsendable_global_actor.swift │ ├── transfernonsendable_global_actor_nonsendable.swift │ ├── transfernonsendable_global_actor_sending.swift │ ├── transfernonsendable_global_actor_serialization.swift │ ├── transfernonsendable_global_actor_swift6.swift │ ├── transfernonsendable_initializers.swift │ ├── transfernonsendable_instruction_matching.sil │ ├── transfernonsendable_instruction_matching_differentiability.sil │ ├── transfernonsendable_instruction_matching_opaquevalues.sil │ ├── transfernonsendable_isolationcrossing_partialapply.swift │ ├── transfernonsendable_nonisolated.swift │ ├── transfernonsendable_nonisolatedunsafe.swift │ ├── transfernonsendable_objc.swift │ ├── transfernonsendable_ownership.swift │ ├── transfernonsendable_preconcurrency.swift │ ├── transfernonsendable_preconcurrency_sending.swift │ ├── transfernonsendable_rbi_result.swift │ ├── transfernonsendable_region_based_sendability.swift │ ├── transfernonsendable_sending_params.swift │ ├── transfernonsendable_sending_results.swift │ ├── transfernonsendable_typecheckerbugs.swift │ ├── transfernonsendable_typed_errors.swift │ ├── transfernonsendable_unavailable_conformance.swift │ ├── transfernonsendable_warning_until_swift6.swift │ ├── typed_throws.swift │ ├── unavailable_from_async.swift │ ├── unavailable_from_async_swift6.swift │ ├── unsafe_inherit_executor.swift │ ├── voucher_propagation.swift │ ├── weak_ref_sendability.swift │ ├── where_clause_main_resolution.swift │ └── witness_matching_with_sendable.swift ├── ConstExtraction │ ├── ExtractAnnotations.swift │ ├── ExtractArchetype.swift │ ├── ExtractCalls.swift │ ├── ExtractCoerce.swift │ ├── ExtractConstantsFromMembersAttribute.swift │ ├── ExtractConstantsFromMembersAttributeExperimental.swift │ ├── ExtractDesugared.swift │ ├── ExtractEnums.swift │ ├── ExtractExternalConformances.swift │ ├── ExtractFromExtension.swift │ ├── ExtractFromMacroExpansion.swift │ ├── ExtractFromObjcImplementationExtension.swift │ ├── ExtractGroups.swift │ ├── ExtractInjectOptional.swift │ ├── ExtractInterpolatedStringLiterals.swift │ ├── ExtractKeyPaths.swift │ ├── ExtractLiterals.swift │ ├── ExtractMacroExpandedConformances.swift │ ├── ExtractOpaqueGenericTypealias.swift │ ├── ExtractOpaqueTypealias.swift │ ├── ExtractResultBuilders.swift │ ├── ExtractStaticFunctions.swift │ ├── ExtractTypeAliasUnderlyingType.swift │ ├── ExtractTypeValue.swift │ ├── ExtractTypes.swift │ ├── ExtractUnderlyingToOpaque.swift │ └── Inputs │ │ ├── Macros.swift │ │ ├── ProtocolConformances.swift │ │ └── objc_implementation.h ├── ConstValues │ ├── CImports.swift │ ├── Conditions.swift │ ├── DiagModules.swift │ ├── DiagModulesSyntactic.swift │ ├── DiagNotConst.swift │ ├── DiagNotConstSyntactic.swift │ ├── DiagReferenceCycle.swift │ ├── FloatintPointLiterals.swift │ ├── FunctionTypes.swift │ ├── FunctionTypesSyntactic.swift │ ├── InlineArrays.swift │ ├── IntegerArithmetic.swift │ ├── IntegerExpressions.swift │ ├── IntegerExpressionsSyntactic.swift │ ├── IntegerLiterals.swift │ ├── Modules.swift │ ├── NegativeUnaryReference.swift │ ├── NonWMO.swift │ ├── Optionals.swift │ ├── Parameters.swift │ ├── ParametersSyntactic.swift │ ├── References.swift │ ├── StringTuples.swift │ ├── Strings.swift │ ├── TopLevel.swift │ └── Tuples.swift ├── Constraints │ ├── ErrorBridging.swift │ ├── Inputs │ │ ├── PrivateObjC.swift │ │ ├── c_pointer_conversions.h │ │ ├── disambiguate_iuo_param.h │ │ ├── has_ambiguities.swift │ │ ├── imported_type.h │ │ ├── invalid_metatype_bridging_header.h │ │ ├── keypath.swift │ │ ├── overload.h │ │ └── type_inference_via_defaults_other_module.swift │ ├── add_with_nil.swift │ ├── ambiguity_diagnostics.swift │ ├── ambiguous_specialized_name_diagnostics.swift │ ├── anyhashable-collection-cast.swift │ ├── anyhashable_and_operator_filtering.swift │ ├── argument_matching.swift │ ├── array_literal.swift │ ├── array_literal_local_array.swift │ ├── assignment.swift │ ├── associated-types-mixed-explicit-inferred.swift │ ├── associated_self_types.swift │ ├── associated_types.swift │ ├── async.swift │ ├── bidirectional_conversions.swift │ ├── bridging-nsnumber-and-nsvalue.swift.gyb │ ├── bridging.swift │ ├── bridging_nonobjc.swift │ ├── callAsFunction.swift │ ├── casts.swift │ ├── casts_objc.swift │ ├── casts_swift6.swift │ ├── class.swift │ ├── class_to_object_in_collection.swift │ ├── closure_optional_chain.swift │ ├── closure_resolution_order.swift │ ├── closures.swift │ ├── collection-mutablecollection-order-dependency-1.swift │ ├── collection-mutablecollection-order-dependency-1g.swift │ ├── collection-mutablecollection-order-dependency-2.swift │ ├── collection-mutablecollection-order-dependency-3.swift │ ├── collection-of-function.swift │ ├── common_type.swift │ ├── common_type_objc.swift │ ├── concrete-overload-required.swift │ ├── conditionally_defined_types.swift │ ├── construction.swift │ ├── default_literals.swift │ ├── default_literals_swift4.swift │ ├── dependent_type_requirement_failure.swift │ ├── diag_ambiguities.swift │ ├── diag_ambiguities_module.swift │ ├── diag_missing_arg.swift │ ├── diagnostics.swift │ ├── diagnostics_swift4.swift │ ├── dictionary_literal.swift │ ├── disambiguate_iuo_param.swift │ ├── disfavored.swift │ ├── dynamic_lookup.swift │ ├── dynamic_lookup_swift6.swift │ ├── enum_cases.swift │ ├── existential_metatypes.swift │ ├── fixes.swift │ ├── function.swift │ ├── function_conversion.swift │ ├── gather_all_adjacencies.swift │ ├── generic_construction_deduction.swift │ ├── generic_overload.swift │ ├── generic_protocol_witness.swift │ ├── generic_super_constraint.swift │ ├── generics.swift │ ├── if_expr.swift │ ├── if_switch_expr_cgfloat_double_conversion.swift │ ├── implicit_double_cgfloat_conversion.swift │ ├── implicit_last_exprs_double_cgfloat_conversion.swift │ ├── imported-overload.swift │ ├── imported_rawValue_assignment.swift │ ├── incomplete_function_ref.swift │ ├── inherited_generic_conformance.swift │ ├── init_literal_via_coercion.swift │ ├── invalid_archetype_constraint.swift │ ├── invalid_constraint_lookup.swift │ ├── invalid_decl_ref.swift │ ├── invalid_implicit_conversions.swift │ ├── invalid_logicvalue_coercion.swift │ ├── invalid_metatype_bridging_header.swift │ ├── invalid_stdlib.swift │ ├── invalid_stdlib_2.swift │ ├── issue-45309.swift │ ├── issue-47241.swift │ ├── issue-47827.swift │ ├── issue-49646.swift │ ├── issue-49968.swift │ ├── issue-50410.swift │ ├── issue-50419.swift │ ├── issue-51599.swift │ ├── issue-52072.swift │ ├── issue-52724.swift │ ├── issue-52995.swift │ ├── issue-53125.swift │ ├── issue-53147.swift │ ├── issue-53296.swift │ ├── issue-53305.swift │ ├── issue-54705.swift │ ├── issue-54799.swift │ ├── issue-54820.swift │ ├── issue-54962.swift │ ├── issue-55410.swift │ ├── issue-55623.swift │ ├── issue-56212.swift │ ├── issue-56348.swift │ ├── issue-56387.swift │ ├── issue-58019.swift │ ├── issue-60552.swift │ ├── issue-60806.swift │ ├── issue-60808.swift │ ├── issue-64621.swift │ ├── issue-66553.swift │ ├── issue-66561.swift │ ├── issue-67906.swift │ ├── issue-71040.swift │ ├── issue-71273.swift │ ├── issue-71282.swift │ ├── issue-77008.swift │ ├── issue-77315.swift │ ├── issue-77393.swift │ ├── issue-77924.swift │ ├── issue-78376.swift │ ├── issue-79444.swift │ ├── issue-81023.swift │ ├── iuo.swift │ ├── iuo_objc.swift │ ├── keypath.swift │ ├── keypath_closure_conv_mismatch.swift │ ├── keypath_closure_conv_mismatch_generic.swift │ ├── keypath_closure_conv_mismatch_norettype.swift │ ├── keypath_dynamic_member_lookup.swift │ ├── keypath_swift_5.swift │ ├── lvalues.swift │ ├── members.swift │ ├── members_objc.swift │ ├── metatypes.swift │ ├── moveonly_tuples.swift │ ├── mutating_members.swift │ ├── mutating_members_compat.swift │ ├── nested_generics.swift │ ├── nested_pack_expansion.swift │ ├── nil-coalescing-favoring.swift │ ├── noderivative.swift │ ├── objc_optional_methods_diagnostics.swift │ ├── observable_macro_shadowing.swift │ ├── old_hack_related_ambiguities.swift │ ├── one_element_tuple.swift │ ├── openExistential.swift │ ├── opened_existentials.swift │ ├── opened_existentials_default_arg.swift │ ├── opened_existentials_feature.swift │ ├── opened_existentials_suppression.swift │ ├── opened_existentials_type_variable.swift │ ├── operator.swift │ ├── optional.swift │ ├── overload.swift │ ├── overload_filtering.swift │ ├── overload_filtering_objc.swift │ ├── override.swift │ ├── pack-expansion-expressions.swift │ ├── pack_expansion_types.swift │ ├── parameterized_existential_composition.swift │ ├── parameterized_existential_unrelated_args.swift │ ├── parameterized_existentials.swift │ ├── patterns.swift │ ├── perf_hacks_with_block_list.swift │ ├── phantom_existential_typealias.swift │ ├── pr39543.swift │ ├── protocols.swift │ ├── ranking.swift │ ├── ranking_ambiguities.swift │ ├── rdar105080067.swift │ ├── rdar105781521.swift │ ├── rdar105782480.swift │ ├── rdar106598067.swift │ ├── rdar107420031.swift │ ├── rdar107651291.swift │ ├── rdar107709341.swift │ ├── rdar107724970.swift │ ├── rdar108738034.swift │ ├── rdar109419240.swift │ ├── rdar110617471.swift │ ├── rdar112264204.swift │ ├── rdar113025351.swift │ ├── rdar113326835.swift │ ├── rdar114402042.swift │ ├── rdar116956363.swift │ ├── rdar119055010.swift │ ├── rdar120791071.swift │ ├── rdar121214563.swift │ ├── rdar139234188.swift │ ├── rdar139812024.swift │ ├── rdar139913219.swift │ ├── rdar140212823.swift │ ├── rdar143340082.swift │ ├── rdar143474242.swift │ ├── rdar145092838.swift │ ├── rdar145593552.swift │ ├── rdar146383201.swift │ ├── rdar154553285.swift │ ├── rdar32726044.swift │ ├── rdar35142121.swift │ ├── rdar36226874.swift │ ├── rdar37160679.swift │ ├── rdar37291371.swift │ ├── rdar37303482.swift │ ├── rdar37790062.swift │ ├── rdar38535743.swift │ ├── rdar38625824.swift │ ├── rdar39209245.swift │ ├── rdar39401774.swift │ ├── rdar39931339.swift │ ├── rdar39931475.swift │ ├── rdar40002266.swift │ ├── rdar40945329.swift │ ├── rdar42056741.swift │ ├── rdar42678836.swift │ ├── rdar42750089.swift │ ├── rdar44569159.swift │ ├── rdar44770297.swift │ ├── rdar44816848.swift │ ├── rdar45242032.swift │ ├── rdar45415874.swift │ ├── rdar45490737.swift │ ├── rdar45511837.swift │ ├── rdar46377919.swift │ ├── rdar46544601.swift │ ├── rdar47787705.swift │ ├── rdar60898369.swift │ ├── rdar62201037.swift │ ├── rdar62842651.swift │ ├── rdar62890683.swift │ ├── rdar65254452.swift │ ├── rdar65320500.swift │ ├── rdar66234725.swift │ ├── rdar68155466.swift │ ├── rdar71858936.swift │ ├── rdar82828226.swift │ ├── rdar85263844_swift6.swift │ ├── recursive_concrete_constraints.swift │ ├── requirement_failures_in_contextual_type.swift │ ├── result_builder.swift │ ├── result_builder_ast_transform.swift │ ├── result_builder_conjunction_selection.swift │ ├── result_builder_diags.swift │ ├── result_builder_empty_case.swift │ ├── result_builder_generic_exec.swift │ ├── result_builder_generic_infer.swift │ ├── result_builder_infer.swift │ ├── result_builder_infer.swiftinterface │ ├── result_builder_invalid_stmts.swift │ ├── result_builder_member_import_visibility.swift │ ├── result_builder_nested_diags.swift │ ├── result_builder_opaque_result.swift │ ├── result_builder_opaque_result_structural.swift │ ├── result_builder_switch_with_vars.swift │ ├── result_builder_vars.swift │ ├── same_types.swift │ ├── specialization_with_shadowing.swift │ ├── static_member_on_protocol_with_opaque_result.swift │ ├── static_members_on_protocol_in_generic_context.swift │ ├── sub-pattern-matching-of-enum-element-for-closure.swift │ ├── subscript.swift │ ├── subscript_swift6.swift │ ├── super_constructor.swift │ ├── super_method.swift │ ├── suspicious_bit_casts.swift │ ├── swift_to_c_pointer_conversions.swift.gyb │ ├── swift_to_c_pointer_conversions_sil.swift │ ├── switch_expr.swift │ ├── ternary_expr.swift │ ├── then_stmt.swift │ ├── try_swift5.swift │ ├── tuple-arguments-supported.swift │ ├── tuple-arguments-unsupported.swift │ ├── tuple.swift │ ├── tuple_arguments.swift │ ├── tuple_shuffle.swift │ ├── type_inference_from_default_closure.swift │ ├── type_inference_from_default_exprs.swift │ ├── type_inference_from_default_exprs_executable_test.swift │ ├── type_inference_from_default_exprs_swift7.swift │ ├── type_of.swift │ ├── type_of_verified.swift │ ├── unchecked_optional.swift │ ├── valid_implicit_conversions.swift │ ├── valid_pointer_conversions.swift │ ├── variadic_generic_constraints.swift │ ├── variadic_generic_functions.swift │ ├── variadic_generic_init.swift │ ├── variadic_generic_overload_ranking.swift │ ├── variadic_generic_types.swift │ ├── warn_long_compile.swift │ ├── weak.swift │ ├── without_actually_escaping.swift │ └── without_actually_escaping_no_errors.swift ├── CrossImport │ ├── Inputs │ │ ├── lib-templates │ │ │ ├── Frameworks │ │ │ │ ├── ClangFramework.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── ClangFramework.h │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── ClangFramework.swiftcrossimport │ │ │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ │ │ ├── BystandingLibrary.swiftoverlay │ │ │ │ │ │ ├── NeverImported.swiftoverlay │ │ │ │ │ │ ├── badarch-badvendor-bados │ │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ │ │ └── module-triple-here │ │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OverlaidClangFramework.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── OverlaidClangFramework.h │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── OverlaidClangFramework.swiftcrossimport │ │ │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ │ │ ├── BystandingLibrary.swiftoverlay │ │ │ │ │ │ └── NeverImported.swiftoverlay │ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── SwiftFramework.framework │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── SwiftFramework.swiftcrossimport │ │ │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ │ │ ├── BystandingLibrary.swiftoverlay │ │ │ │ │ │ ├── NeverImported.swiftoverlay │ │ │ │ │ │ ├── badarch-badvendor-bados │ │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ │ │ └── module-triple-here │ │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ │ │ └── SwiftFramework.swiftmodule │ │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ │ ├── _ClangFramework_BystandingLibrary.framework │ │ │ │ │ └── Modules │ │ │ │ │ │ └── _ClangFramework_BystandingLibrary.swiftmodule │ │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ │ ├── _OverlaidClangFramework_BystandingLibrary.framework │ │ │ │ │ └── Modules │ │ │ │ │ │ └── _OverlaidClangFramework_BystandingLibrary.swiftmodule │ │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ │ └── _SwiftFramework_BystandingLibrary.framework │ │ │ │ │ └── Modules │ │ │ │ │ └── _SwiftFramework_BystandingLibrary.swiftmodule │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ ├── include │ │ │ │ ├── ClangLibrary.swiftcrossimport │ │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ │ ├── NeverImported.swiftoverlay │ │ │ │ │ ├── badarch-badvendor-bados │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ │ └── module-triple-here │ │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ ├── Submodule.swiftcrossimport │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ ├── clang_library.h │ │ │ │ ├── clang_library_submodule.h │ │ │ │ ├── core_mi6.h │ │ │ │ ├── core_mi6.swiftcrossimport │ │ │ │ │ └── ThinLibrary.swiftoverlay │ │ │ │ ├── module.modulemap │ │ │ │ └── universal_exports.h │ │ │ └── lib │ │ │ │ └── swift │ │ │ │ ├── AlwaysImported.swiftinterface │ │ │ │ ├── AnonymousGoose.swiftinterface │ │ │ │ ├── BystandingLibrary.swiftinterface │ │ │ │ ├── CircularGoose.swiftinterface │ │ │ │ ├── DeclaringLibrary.swiftcrossimport │ │ │ │ └── BystandingLibrary.swiftoverlay │ │ │ │ ├── DeclaringLibrary.swiftinterface │ │ │ │ ├── EndlessGoose.swiftinterface │ │ │ │ ├── FatLibrary.swiftcrossimport │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ ├── NeverImported.swiftoverlay │ │ │ │ ├── badarch-badvendor-bados │ │ │ │ │ └── AlwaysImported.yaml │ │ │ │ └── module-triple-here │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ ├── FatLibrary.swiftmodule │ │ │ │ └── module-triple-here.swiftinterface │ │ │ │ ├── FlockOfGoose.swiftinterface │ │ │ │ ├── FutureGoose.swiftinterface │ │ │ │ ├── GibberishGoose.swiftinterface │ │ │ │ ├── HorribleGoose.swiftcrossimport │ │ │ │ ├── AnonymousGoose.swiftoverlay │ │ │ │ ├── CircularGoose.swiftoverlay │ │ │ │ ├── EndlessGoose.swiftoverlay │ │ │ │ ├── FlockOfGoose.swiftoverlay │ │ │ │ │ └── .gitkeep │ │ │ │ ├── FutureGoose.swiftoverlay │ │ │ │ ├── GibberishGoose.swiftoverlay │ │ │ │ ├── ListlessGoose.swiftoverlay │ │ │ │ ├── RedundantGoose.swiftoverlay │ │ │ │ └── VersionlessGoose.swiftoverlay │ │ │ │ ├── HorribleGoose.swiftinterface │ │ │ │ ├── ListlessGoose.swiftinterface │ │ │ │ ├── MI6.swiftinterface │ │ │ │ ├── NeverImported.swiftcrossimport │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ └── module-triple-here │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ ├── NeverImported.swiftinterface │ │ │ │ ├── OverlaidClangFramework.swiftcrossimport │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ └── NeverImported.swiftoverlay │ │ │ │ ├── OverlaidClangFramework.swiftmodule │ │ │ │ └── module-triple-here.swiftinterface │ │ │ │ ├── RedundantGoose.swiftcrossimport │ │ │ │ └── HorribleGoose.swiftoverlay │ │ │ │ ├── RedundantGoose.swiftinterface │ │ │ │ ├── ThinLibrary.swiftcrossimport │ │ │ │ ├── AlwaysImported.swiftoverlay │ │ │ │ ├── NeverImported.swiftoverlay │ │ │ │ ├── badarch-badvendor-bados │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ └── module-triple-here │ │ │ │ │ └── AlwaysImported.swiftoverlay │ │ │ │ ├── ThinLibrary.swiftinterface │ │ │ │ ├── UnitaryGoose.swiftcrossimport │ │ │ │ ├── UnitaryGoose.swiftinterface │ │ │ │ ├── UniversalExports.swiftinterface │ │ │ │ ├── VersionlessGoose.swiftinterface │ │ │ │ ├── _AlwaysImportedOverlay.swiftinterface │ │ │ │ ├── _AlwaysImportedPlatformOverlay.swiftinterface │ │ │ │ ├── _NeverImportedOverlay.swiftinterface │ │ │ │ └── _OverlayLibrary.swiftinterface │ │ └── rewrite-module-triples.py │ ├── access-level-imports-errors.swift │ ├── common-case.swift │ ├── explicit-overlay-file.swift │ ├── horrible.swift │ ├── loading.swift │ ├── member-import-visibility.swift │ ├── module-interface.swift │ ├── module-trace.swift │ ├── negative.swift │ ├── remark-option.swift │ ├── scoped.swift │ ├── transitive.swift │ ├── with-access-level-import.swift │ ├── with-implementation-only.swift │ └── with-spi-only-import.swift ├── DWARFImporter │ ├── Inputs │ │ ├── module.modulemap │ │ └── objc-header.h │ └── basic.swift ├── DebugInfo │ ├── ASTPrinter-imported-names.swift │ ├── ASTSection-multi.swift │ ├── ASTSection-single.swift │ ├── ASTSection.swift │ ├── ASTSectionOverlay.swift │ ├── ASTSection_ObjC.swift │ ├── ASTSection_linker.swift │ ├── BoundGenericEnum.swift │ ├── BoundGenericStruct.swift │ ├── BridgingHeaderPCH-Type.swift │ ├── BridgingHeaderPCH.swift │ ├── BuiltinStdlibTypes.swift │ ├── C-typedef-Darwin.swift │ ├── C-typedef.swift │ ├── ClangModuleBreadcrumbs.swift │ ├── ClangPathDots.swift │ ├── Constructors.swift │ ├── Destructors.swift │ ├── DoubleCapture.swift │ ├── DynamicSelf.swift │ ├── DynamicSelfLocation.swift │ ├── EagerTypeMetadata.swift │ ├── ErrorVar.swift │ ├── Errors.swift │ ├── GlobalMetatype.swift │ ├── Globals.swift │ ├── GuardVar.swift │ ├── ImportClangSubmodule.swift │ ├── Imports.swift │ ├── ImportsStdlib.swift │ ├── InlineBridgingHeader.swift │ ├── Inputs │ │ ├── BridgingHeader.h │ │ ├── ClangModule.h │ │ ├── ClangModuleWithOverlay.h │ │ ├── InlineBridgingHeader.h │ │ ├── Macro.h │ │ ├── NonInlined.swift │ │ ├── OtherClangModule.h │ │ ├── OtherSubModule.h │ │ ├── SubModule.h │ │ ├── curry_thunk_other.swift │ │ ├── inline.h │ │ ├── local_type_originally_defined_in_other.swift │ │ ├── module.modulemap │ │ ├── overlay.swift │ │ ├── result_builder.swift │ │ ├── serialized-objc-header.h │ │ ├── testclass.swift │ │ └── vfsoverlay.yaml │ ├── LoadableByAddress-allockstack.swift │ ├── LoadableByAddress-argument.swift │ ├── LoadableByAddress.sil │ ├── LoadableByAddress.swift │ ├── NestedTypes.swift │ ├── ParseableInterfaceImports.swift │ ├── PrivateDiscriminator.swift │ ├── ProtocolContainer.swift │ ├── ResilientSize.swift │ ├── WeakCapture.swift │ ├── accessors.swift │ ├── alignment.swift │ ├── alloc_stack_arg.swift │ ├── alloca-init.swift │ ├── allocstack.swift │ ├── anonymous.swift │ ├── any.swift │ ├── apple-names-accel.swift │ ├── apple-types-accel.swift │ ├── archetype.swift │ ├── archetypes2.swift │ ├── argument.swift │ ├── async-args.swift │ ├── async-await-no-debug-info-after-split-point.swift │ ├── async-await-no-debug-info-outlined-funcs.swift │ ├── async-boxed-arg.swift │ ├── async-direct-arg.swift │ ├── async-let-await.swift │ ├── async-let.swift │ ├── async-lifetime-extension.swift │ ├── async-local-var.swift │ ├── async-task-alloc.swift │ ├── attributes.swift │ ├── autoclosure.swift │ ├── basic.swift │ ├── bool.swift │ ├── bound-namealiastype.swift │ ├── byref-capture.swift │ ├── call-site-info.swift │ ├── callexpr.swift │ ├── capturelist.swift │ ├── captures.swift │ ├── case-match-vars.swift │ ├── case-scope.swift │ ├── case-scope2.swift │ ├── case-scope3.swift │ ├── catch_error.swift │ ├── catch_let.swift │ ├── classes.swift │ ├── cleanupskip.swift │ ├── closure-args.swift │ ├── closure-args2.swift │ ├── closure-multivalue.swift │ ├── closure.swift │ ├── columns.swift │ ├── comp-dir.swift │ ├── compiler-flags-macosx.swift │ ├── compiler-flags.swift │ ├── compileunit-sysroot-sdk.swift │ ├── conditional-assign.swift │ ├── constant_propagation.sil │ ├── constrained_extension.swift │ ├── copyforward.sil │ ├── curry_thunk.swift │ ├── cxx_interop.swift │ ├── dbgvalue-insertpt.swift │ ├── dead-obj-elim.sil │ ├── dead-store-elimination.sil │ ├── debug_fragment_merge.swift │ ├── debug_info_expression.sil │ ├── debug_prefix_map.swift │ ├── debug_prefix_map_abs_rel.swift │ ├── debug_prefix_map_abs_rel_subdir.swift │ ├── debug_prefix_map_sdk.swift │ ├── debug_scope_distinct.swift │ ├── debug_value_addr.swift │ ├── debug_variable.sil │ ├── debug_variable_varinfo_loc.sil │ ├── discriminators_for_profiling.swift │ ├── doubleinlines.swift │ ├── dropped-var.sil │ ├── dynamic_layout.swift │ ├── embedded-recur-c-types.swift │ ├── embedded.swift │ ├── enum.swift │ ├── error_scope.swift │ ├── external-global.swift │ ├── file_compilation_dir.swift │ ├── file_compilation_dir_windows.swift │ ├── fnptr.swift │ ├── for-scope.swift │ ├── for.swift │ ├── foreach.swift │ ├── generic-specializer.swift │ ├── generic_arg.swift │ ├── generic_arg2.swift │ ├── generic_arg3.swift │ ├── generic_arg4.swift │ ├── generic_arg5.swift │ ├── generic_args.swift │ ├── generic_enum.swift │ ├── generic_enum_closure.swift │ ├── global_opaque_var.swift │ ├── global_resilience.swift │ ├── guard-let-scope.swift │ ├── guard-let-scope2.swift │ ├── guard-let-scope3.swift │ ├── guard-let-scope4.swift │ ├── guard-let.swift │ ├── hop_to_executor.swift │ ├── if-branchlocations.swift │ ├── if-let-scope.swift │ ├── if-var.swift │ ├── if.swift │ ├── implicit-scope.swift │ ├── implicitdecl.swift │ ├── implicitreturn.swift │ ├── initializer.swift │ ├── inlined-generics-basic.swift │ ├── inlined-generics.swift │ ├── inlinedAt.swift │ ├── inlinescopes.swift │ ├── inout.swift │ ├── inout2.swift │ ├── irgen_undef.sil │ ├── irgen_void_tuple.sil │ ├── issue-63869.swift │ ├── iteration.swift │ ├── iuo_arg.swift │ ├── keypath.swift │ ├── lazy-getter.swift │ ├── let-scope.swift │ ├── let.swift │ ├── letclause.swift │ ├── letstring.swift │ ├── line-directive-codeview.swift │ ├── line-directive.swift │ ├── linetable-assign.swift │ ├── linetable-cleanups.swift │ ├── linetable-codeview.swift │ ├── linetable-do.swift │ ├── linetable.swift │ ├── local-vars.swift.gyb │ ├── local_generic_type_alias.swift │ ├── local_type_originally_defined_in.swift │ ├── locatable_type.swift │ ├── lto-witness-method-declaration.swift │ ├── macro.swift │ ├── mandatory-inlining-ownership.swift │ ├── mangling-stdlib.swift │ ├── mangling.swift │ ├── method-declaration.swift │ ├── module-alias-load-module.swift │ ├── module-compilation-dir.swift │ ├── module-file-home-is-cwd.swift │ ├── module_abi_name.swift │ ├── module_abi_name_and_orig_defined_in.swift │ ├── modulecache.swift │ ├── move_function_dbginfo.swift │ ├── move_function_dbginfo_async.swift │ ├── multi-file.swift │ ├── nested_functions.swift │ ├── nested_salvage_struct.sil │ ├── nonisolated_nonsending.swift │ ├── nostorage.swift │ ├── objc-witness-method-declaration.swift │ ├── objc_generic_class_debug_info.swift │ ├── opaque_result_type.swift │ ├── optimizer_pipeline.swift │ ├── originally_defined_in.swift │ ├── overlay-import.swift │ ├── parameter-pack.swift │ ├── parameterized_existential_composition.swift │ ├── parent-scope.swift │ ├── patternmatching.swift │ ├── patternvars.swift │ ├── pcomp.swift │ ├── phi-expansion.sil │ ├── profile_counter.swift │ ├── prologue.swift │ ├── property-setter-implicit-tuple.swift │ ├── protocol-extension.swift │ ├── protocol-sugar.swift │ ├── protocol.swift │ ├── protocolarg.swift │ ├── raw_layout.swift │ ├── recursive_actor.swift │ ├── resilient_debug_value.sil │ ├── retroactive_conformance.swift │ ├── retroactive_conformance_witness_thunk.swift │ ├── return.swift │ ├── returnlocation.swift │ ├── runtime-failure.swift │ ├── salvage-integer-literal.swift │ ├── scope-closure.swift │ ├── scope-method.swift │ ├── self-nostorage.swift │ ├── self.swift │ ├── sending_params_and_results.swift │ ├── shadow_copies.swift │ ├── shadowcopy-linetable.swift │ ├── shadowed-arg.swift │ ├── sil-box-subst-func-type.swift │ ├── sil-print-debuginfo-verbose.swift │ ├── sil_based_dbg.swift │ ├── sil_combine.sil │ ├── simple.sil │ ├── simplify_checked_cast_br.sil │ ├── specialization.swift │ ├── sroa_debug_value.sil │ ├── sroa_debug_value_empty.swift │ ├── sroa_mem2reg.sil │ ├── sroa_mem2reg_tuple.sil │ ├── srosroa_mem2reg.sil │ ├── struct_resilience.swift │ ├── structs.swift │ ├── subscript.swift │ ├── sugar.swift │ ├── sugar_inline_array.swift │ ├── test-foundation.swift │ ├── test_ints.swift │ ├── thunks.swift │ ├── top_level_code.swift │ ├── top_level_var.swift │ ├── transparent.swift │ ├── trap.swift │ ├── tuple.swift │ ├── typealias-recursive.swift │ ├── typealias.swift │ ├── typealias_indirect.swift │ ├── typearg.swift │ ├── uninitialized.swift │ ├── unowned-capture.swift │ ├── value-generics-embedded.swift │ ├── value-generics.swift │ ├── value-update.sil │ ├── value-witness-table.swift │ ├── variables-interpreter.swift │ ├── variables.swift │ ├── variadic-generics-closure.swift │ ├── variadic-generics-count.swift │ ├── variadic-generics.swift │ ├── variant_enum.swift │ ├── vector.swift │ ├── verifier_debug_info_expression.sil │ ├── verifier_debug_info_expression_start_fragment.sil │ ├── verifier_debug_scope.sil │ ├── weak-self-capture.swift │ └── while.swift ├── DebuggerTestingTransform │ ├── basic-assignments.swift │ └── class.swift ├── Demangle │ ├── Inputs │ │ ├── bigtype-demangle.txt │ │ ├── bigtype-objcrt.txt │ │ ├── bigtype-remangle.txt │ │ ├── bigtype.txt │ │ ├── lookup_other.swift │ │ ├── manglings-with-clang-types.txt │ │ ├── manglings.txt │ │ ├── objc-getclass.txt │ │ └── simplified-manglings.txt │ ├── clang-function-types-android.swift │ ├── clang-function-types.swift │ ├── demangle-embedded.swift │ ├── demangle-simplified.swift │ ├── demangle-special-options.test │ ├── demangle-types.test │ ├── demangle.swift │ ├── lit.local.cfg │ ├── lookup.swift │ ├── objc-getclass.cpp │ ├── rdar-82252704.swift │ ├── recursion-limit.swift │ ├── remangle.swift │ └── yaml-dump.swift ├── Distributed │ ├── Inputs │ │ ├── BadDistributedActorSystems.swift │ │ ├── CustomSerialExecutorAvailability.swift │ │ ├── EchoActor.swift │ │ ├── FakeCodableForDistributedTests.swift │ │ ├── FakeDistributedActorSystems.swift │ │ ├── dynamic_replacement_da_decl.swift │ │ └── dynamic_replacement_da_extension.swift │ ├── Macros │ │ ├── distributed_macro_expansion_DistributedProtocol_availability.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_errors.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_expansion_errors.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_inheritance.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_package_access.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_primary_associatedtype.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_simple.swift │ │ ├── distributed_macro_expansion_DistributedProtocol_spi.swift │ │ └── distributed_macro_expansion_DistributedProtocol_various_requirements.swift │ ├── Runtime │ │ ├── distributed_actor_assume_executor.swift │ │ ├── distributed_actor_cross_module_final_class_adhoc_requirement_not_optimized_away.swift │ │ ├── distributed_actor_custom_executor_availability.swift │ │ ├── distributed_actor_custom_executor_availability_swift59.swift │ │ ├── distributed_actor_custom_executor_basic.swift │ │ ├── distributed_actor_custom_executor_from_id.swift │ │ ├── distributed_actor_decode.swift │ │ ├── distributed_actor_deinit.swift │ │ ├── distributed_actor_encode_roundtrip.swift │ │ ├── distributed_actor_execute_doesnt_leak_arguments.swift │ │ ├── distributed_actor_executor_asserts.swift │ │ ├── distributed_actor_executor_default.swift │ │ ├── distributed_actor_func_calls_decoded_args_deinit.swift │ │ ├── distributed_actor_func_calls_remoteCall_array_param.swift │ │ ├── distributed_actor_func_calls_remoteCall_bad_targets.swift │ │ ├── distributed_actor_func_calls_remoteCall_computedProperty.swift │ │ ├── distributed_actor_func_calls_remoteCall_da_in_generic_type.swift │ │ ├── distributed_actor_func_calls_remoteCall_echo.swift │ │ ├── distributed_actor_func_calls_remoteCall_empty.swift │ │ ├── distributed_actor_func_calls_remoteCall_extension.swift │ │ ├── distributed_actor_func_calls_remoteCall_extension_concrete.swift │ │ ├── distributed_actor_func_calls_remoteCall_genericFunc.swift │ │ ├── distributed_actor_func_calls_remoteCall_hello.swift │ │ ├── distributed_actor_func_calls_remoteCall_not_codable.swift │ │ ├── distributed_actor_func_calls_remoteCall_property.swift │ │ ├── distributed_actor_func_calls_remoteCall_remoteChanged_asyncness.swift │ │ ├── distributed_actor_func_calls_remoteCall_take.swift │ │ ├── distributed_actor_func_calls_remoteCall_takeThrowReturn.swift │ │ ├── distributed_actor_func_calls_remoteCall_take_two.swift │ │ ├── distributed_actor_func_calls_remoteCall_through_generic.swift │ │ ├── distributed_actor_func_calls_remoteCall_through_generic_and_inner.swift │ │ ├── distributed_actor_func_calls_remoteCall_throw.swift │ │ ├── distributed_actor_func_calls_without_touching_returnType_metadata_first.swift │ │ ├── distributed_actor_generic_codable_da_conformance.swift │ │ ├── distributed_actor_generic_constraint_issue_115497090.swift │ │ ├── distributed_actor_hop_to.swift │ │ ├── distributed_actor_in_other_module.swift │ │ ├── distributed_actor_init_local.swift │ │ ├── distributed_actor_isRemote.swift │ │ ├── distributed_actor_isolated_existential.swift │ │ ├── distributed_actor_isolation_passing.swift │ │ ├── distributed_actor_library_evolution_da_protocol_use.swift │ │ ├── distributed_actor_local.swift │ │ ├── distributed_actor_localSystem.swift │ │ ├── distributed_actor_localSystem_distributedProtocol.swift │ │ ├── distributed_actor_localSystem_distributedProtocol_variable.swift │ │ ├── distributed_actor_localSystem_generic_system.swift │ │ ├── distributed_actor_localSystem_manual_conformance.swift │ │ ├── distributed_actor_local_only_witness_and_call.swift │ │ ├── distributed_actor_protocol_call_resilient_lib.swift │ │ ├── distributed_actor_remoteCall.swift │ │ ├── distributed_actor_remoteCallTarget_demanglingTargetNames.swift │ │ ├── distributed_actor_remoteCall_accessibleFunctions.swift │ │ ├── distributed_actor_remoteCall_accessibleFunctions_crossModule.swift │ │ ├── distributed_actor_remoteCall_accessibleFunctions_crossModule_irgen.swift │ │ ├── distributed_actor_remoteCall_argument_labels.swift │ │ ├── distributed_actor_remoteCall_protocol_method.swift │ │ ├── distributed_actor_remoteCall_protocol_method_in_presence_of_multiple_systems.swift │ │ ├── distributed_actor_remoteCall_roundtrip.swift │ │ ├── distributed_actor_remote_fieldsDontCrashDeinit.swift │ │ ├── distributed_actor_remote_functions.swift │ │ ├── distributed_actor_remote_retains_system.swift │ │ ├── distributed_actor_self_calls.swift │ │ ├── distributed_actor_system_decoder_subclass.swift │ │ ├── distributed_actor_task_executor.swift │ │ ├── distributed_actor_to_actor.swift │ │ ├── distributed_actor_whenLocal.swift │ │ ├── distributed_func_metadata.swift │ │ └── distributed_parameter_validation.swift │ ├── SIL │ │ ├── distributed_actor_default_deinit_sil.swift │ │ ├── distributed_actor_default_init_sil_1.swift │ │ ├── distributed_actor_default_init_sil_2.swift │ │ ├── distributed_actor_default_init_sil_3.swift │ │ ├── distributed_actor_default_init_sil_4.swift │ │ ├── distributed_actor_default_init_sil_5.swift │ │ ├── distributed_actor_default_init_sil_6.swift │ │ ├── distributed_actor_default_init_sil_7.swift │ │ ├── distributed_actor_default_init_sil_8.swift │ │ ├── distributed_actor_explicit_deinit_coverage.swift │ │ ├── distributed_actor_initialize_nondefault.swift │ │ ├── distributed_actor_resolve_sil.swift │ │ ├── distributed_id_system_ownership_verify_sil.swift │ │ ├── distributed_thunk.swift │ │ └── distributed_thunk_skip_function_bodies.swift │ ├── actor_protocols.swift │ ├── distributed_actor_accessor_section_coff.swift │ ├── distributed_actor_accessor_section_elf.swift │ ├── distributed_actor_accessor_section_macho.swift │ ├── distributed_actor_accessor_thunks_32bit.swift │ ├── distributed_actor_accessor_thunks_64bit.swift │ ├── distributed_actor_adhoc_names_in_non_da_types.swift │ ├── distributed_actor_adhoc_requirements_optimized_build.swift │ ├── distributed_actor_async_let.swift │ ├── distributed_actor_ban_owned_shared.swift │ ├── distributed_actor_basic.swift │ ├── distributed_actor_cannot_be_downcast_to_actor.swift │ ├── distributed_actor_concurrency_warnings.swift │ ├── distributed_actor_conditionally_implicitly_codable.swift │ ├── distributed_actor_conform_protocol_with_default_impl.swift │ ├── distributed_actor_derived_conformances.swift │ ├── distributed_actor_executor_ast.swift │ ├── distributed_actor_extension_without_import.swift │ ├── distributed_actor_func_implicitly_async_throws.swift │ ├── distributed_actor_func_param_not_conforming_req_full.swift │ ├── distributed_actor_generic.swift │ ├── distributed_actor_generic_actor.swift │ ├── distributed_actor_generic_actor_distributed_call.swift │ ├── distributed_actor_implicit_codable.swift │ ├── distributed_actor_inference.swift │ ├── distributed_actor_initialization.swift │ ├── distributed_actor_isolated_any.swift │ ├── distributed_actor_isolation.swift │ ├── distributed_actor_isolation_and_tasks.swift │ ├── distributed_actor_layout.swift │ ├── distributed_actor_missing_distributed_import.swift │ ├── distributed_actor_nonisolated.swift │ ├── distributed_actor_protocol_isolation.swift │ ├── distributed_actor_resolve.swift │ ├── distributed_actor_sending_thunks.swift │ ├── distributed_actor_system_missing.swift │ ├── distributed_actor_system_missing_adhoc_requirement_fixits.swift │ ├── distributed_actor_system_missing_adhoc_requirement_impls.swift │ ├── distributed_actor_system_missing_system_type.swift │ ├── distributed_actor_system_missing_type_no_crash.swift │ ├── distributed_actor_thunk_doesnt_leak_arguments.swift │ ├── distributed_actor_to_actor.swift │ ├── distributed_actor_transfernonsendable.swift │ ├── distributed_actor_typed_throws.swift │ ├── distributed_actor_var_implicitly_async_throws.swift │ ├── distributed_func_overloads.swift │ ├── distributed_incomplete_system_no_crash.swift │ ├── distributed_missing_import.swift │ ├── distributed_missing_import_fixit.swift │ ├── distributed_property_must_be_throws.swift │ ├── distributed_protocol_allow_extension_where_self_distributedactr.swift │ ├── distributed_protocol_isolation.swift │ ├── distributed_protocols_distributed_func_serialization_requirements.swift │ ├── distributed_public_module_import.swift │ ├── distributed_serializationRequirement_must_be_protocol.swift │ ├── isolation_macro.swift │ └── lit.local.cfg ├── Driver │ ├── Inputs │ │ ├── IllformedModule.swiftmodule │ │ ├── MacOSX10.15.4.versioned.sdk │ │ │ └── SDKSettings.json │ │ ├── MacOSX10.15.versioned.sdk │ │ │ └── SDKSettings.json │ │ ├── abcd_filemap.yaml │ │ ├── bridging-header.h │ │ ├── crash-after-generating-pch.py │ │ ├── crash.py │ │ ├── empty-ofm.json │ │ ├── empty.sil │ │ ├── error.swift │ │ ├── fail.py │ │ ├── fake-resource-dir │ │ │ └── lib │ │ │ │ ├── swift │ │ │ │ └── clang │ │ │ │ │ └── lib │ │ │ │ │ ├── darwin │ │ │ │ │ ├── libclang_rt.asan_ios_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_iossim_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_osx_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_tvos_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_tvossim_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_watchos_dynamic.dylib │ │ │ │ │ ├── libclang_rt.asan_watchossim_dynamic.dylib │ │ │ │ │ ├── libclang_rt.fuzzer_osx.a │ │ │ │ │ ├── libclang_rt.profile_iossim.a │ │ │ │ │ ├── libclang_rt.profile_tvossim.a │ │ │ │ │ ├── libclang_rt.profile_watchossim.a │ │ │ │ │ ├── libclang_rt.tsan_osx_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_ios.a │ │ │ │ │ ├── libclang_rt.ubsan_ios_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_iossim.a │ │ │ │ │ ├── libclang_rt.ubsan_iossim_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_osx.a │ │ │ │ │ ├── libclang_rt.ubsan_osx_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_tvos.a │ │ │ │ │ ├── libclang_rt.ubsan_tvos_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_tvossim.a │ │ │ │ │ ├── libclang_rt.ubsan_tvossim_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_watchos.a │ │ │ │ │ ├── libclang_rt.ubsan_watchos_dynamic.dylib │ │ │ │ │ ├── libclang_rt.ubsan_watchossim.a │ │ │ │ │ └── libclang_rt.ubsan_watchossim_dynamic.dylib │ │ │ │ │ ├── linux │ │ │ │ │ ├── libclang_rt.asan-x86_64.a │ │ │ │ │ ├── libclang_rt.fuzzer-x86_64.a │ │ │ │ │ ├── libclang_rt.scudo_standalone-x86_64.a │ │ │ │ │ ├── libclang_rt.tsan-x86_64.a │ │ │ │ │ └── libclang_rt.ubsan-x86_64.a │ │ │ │ │ └── windows │ │ │ │ │ ├── clang_rt.asan-x86_64.lib │ │ │ │ │ └── clang_rt.ubsan-x86_64.lib │ │ │ │ └── swift_static │ │ │ │ └── wasi │ │ │ │ └── static-executable-args.lnk │ │ ├── fake-toolchain │ │ │ ├── clang │ │ │ └── ld │ │ ├── filelists │ │ │ ├── check-filelist-abc.py │ │ │ ├── fake-ld.py │ │ │ └── output.json │ │ ├── imported_modules │ │ │ ├── ComplexModuleGraph │ │ │ │ ├── CoreFuel │ │ │ │ │ ├── CoreFuel.h │ │ │ │ │ ├── CoreFuelHydrogen.h │ │ │ │ │ └── CoreFuelMethane.h │ │ │ │ ├── CoreShip.h │ │ │ │ ├── FlightKit.h │ │ │ │ ├── LaunchKit.h │ │ │ │ └── module.modulemap │ │ │ ├── ComplexModuleGraph2 │ │ │ │ ├── CoreDaemon.h │ │ │ │ ├── CoreMemory.h │ │ │ │ ├── DaemonKit │ │ │ │ │ ├── DaemonKit.h │ │ │ │ │ └── ViolateSecondLawOfThermodynamics.h │ │ │ │ ├── FilesystemKit.h │ │ │ │ ├── MemoryKit.h │ │ │ │ └── module.modulemap │ │ │ ├── HasSubmodule │ │ │ │ └── module.modulemap │ │ │ ├── InvalidOverlay.swiftmodule │ │ │ ├── InvalidOverlay │ │ │ │ └── module.modulemap │ │ │ ├── SelfImport │ │ │ │ └── module.modulemap │ │ │ ├── bridging_header.h │ │ │ ├── imported_modules.importedmodules │ │ │ ├── imported_modules2.swift │ │ │ ├── imported_modules_bridging_header.importedmodules │ │ │ ├── imported_modules_underlying.importedmodules │ │ │ └── imported_modules_underlying │ │ │ │ ├── inner.h │ │ │ │ ├── module.modulemap │ │ │ │ └── outer.h │ │ ├── invalid-module-name.swift │ │ ├── lib.swift │ │ ├── libEmpty.so │ │ ├── loaded_module_trace_compiler_plugin.swift │ │ ├── loaded_module_trace_empty.swift │ │ ├── loaded_module_trace_header.h │ │ ├── loaded_module_trace_header2.h │ │ ├── loaded_module_trace_imports_module.swift │ │ ├── main.swift │ │ ├── print-var.sh │ │ ├── unicode-filenames.rsp │ │ ├── unicode.txt │ │ ├── xcrun-bad.sh │ │ ├── xcrun-empty.sh │ │ ├── xcrun-return-self.sh │ │ ├── xcrun.sh │ │ └── 你好.swift │ ├── LegacyDriver │ │ ├── Inputs │ │ │ └── print-args.sh │ │ ├── legacy-driver-propagates-response-file-to-new-driver.swift │ │ └── lit.local.cfg │ ├── access-notes.swift │ ├── actions-dsym.swift │ ├── actions.swift │ ├── advanced_output_file_map.swift │ ├── android-link.swift │ ├── assert.swift │ ├── ast_dump_with_WMO.swift │ ├── autolink-no-shared-objects-elf.swift │ ├── autolink_extract.swift │ ├── badJ.swift │ ├── bad_exec.swift │ ├── bad_tmpdir.swift │ ├── baremetal-target.swift │ ├── basic_output_file_map.swift │ ├── bindings.swift │ ├── bridging-pch.swift │ ├── broken_output_file_map.swift │ ├── color-diagnostics.swift │ ├── compatibility_packs.swift │ ├── compiler_plugin_path.swift │ ├── compiler_plugin_path_iphonesimulator.swift │ ├── compiler_plugin_path_macosx.swift │ ├── compiler_plugin_path_windows.swift │ ├── continue-building-after-errors.swift │ ├── coverage-prefix-map.swift │ ├── crash.swift │ ├── createCompilerInvocation.swift │ ├── cxx_interop.swift │ ├── darwin-static-library-debug.swift │ ├── debug-prefix-map.swift │ ├── debug_anonymous_context_metadata.swift │ ├── diagnose-new-driver-flags.swift │ ├── driver-compile.swift │ ├── driver-time-compilation.swift │ ├── driver-use-frontend.swift │ ├── driver_migration.swift │ ├── driver_mode.swift │ ├── embed-bitcode.swift │ ├── emit-dependencies.swift │ ├── emit-interface.swift │ ├── emit-irgen.swift │ ├── emit-module-from-sib.swift │ ├── emit-module-summary.swift │ ├── emit-objc-header-single-vs-multi-file.swift │ ├── emit-objc-header.swift │ ├── emit-sib-single-file.swift │ ├── emit-sil-single-file.swift │ ├── emit_module_separately.swift │ ├── enable_regex_literals_flag.swift │ ├── environment.swift │ ├── features.swift │ ├── filelist-threshold.swift │ ├── filelists.swift │ ├── force-response-files.swift │ ├── frontend.swift │ ├── fuzzer.swift │ ├── help.swift │ ├── hermetic-seal.swift │ ├── imported_modules.swift │ ├── imported_modules_bridging_header.swift │ ├── imported_modules_underlying.swift │ ├── infer-simulator.swift │ ├── issue-70016-emit-objc-header-with-empty-struct.swift │ ├── link-time-opt-darwin-ld-lib.swift │ ├── link-time-opt.swift │ ├── linker-arclite.swift │ ├── linker-args-order-linux.swift │ ├── linker-autolink-extract.swift │ ├── linker-clang_rt.swift │ ├── linker-library-with-space.swift │ ├── linker-rpath.swift │ ├── linker-tbd.swift │ ├── linker.swift │ ├── loaded_module_trace.swift │ ├── loaded_module_trace_append.swift │ ├── loaded_module_trace_directness.swift │ ├── loaded_module_trace_directness_2.swift │ ├── loaded_module_trace_enabled_features.swift │ ├── loaded_module_trace_env.swift │ ├── loaded_module_trace_foundation.swift │ ├── loaded_module_trace_header.swift │ ├── loaded_module_trace_multifile.swift │ ├── loaded_module_trace_nocrash.swift │ ├── loaded_module_trace_self_cycle.swift │ ├── loaded_module_trace_skip.swift │ ├── loaded_module_trace_spi.swift │ ├── loaded_module_trace_swiftinterface.swift │ ├── lock_interface.swift │ ├── lto-output-mode-clash.swift │ ├── macabi-environment.swift │ ├── malformed-ofm.swift │ ├── merge-module.swift │ ├── missing-ofm.swift │ ├── modulewrap.swift │ ├── multi-threaded.swift │ ├── negating_WMO.swift │ ├── no-inputs.swift │ ├── opt-record-bitstream.swift │ ├── opt-record-options.swift │ ├── opt-record.swift │ ├── opt-remark.swift │ ├── options-apple.swift │ ├── options-interpreter.swift │ ├── options-repl-darwin.swift │ ├── options-repl.swift │ ├── options.swift │ ├── os-deployment.swift │ ├── parseable_output.swift │ ├── parseable_output_unicode.swift │ ├── pipe_round_robin.swift.gyb │ ├── print-target-info-extended.swift │ ├── print_target_info.swift │ ├── print_target_info_macos.swift │ ├── print_target_info_unicode.swift │ ├── profiling.swift │ ├── response-file-merge-modules.swift │ ├── response-file.swift │ ├── response-files-with-spaces-in-filenames.swift │ ├── sanitize_address_use_odr_indicator.swift │ ├── sanitize_coverage.swift │ ├── sanitize_recover.swift │ ├── sanitize_scudo.swift │ ├── sanitize_stable_abi.swift │ ├── sanitizers.swift │ ├── sdk-apple.swift │ ├── sdk-link.swift │ ├── sdk-version.swift │ ├── sdk.swift │ ├── sourceinfo_file.swift │ ├── static-archive.swift │ ├── static-executable.swift │ ├── static-stdlib-autolink-linux.swift │ ├── static-stdlib-linux-lld.swift │ ├── static-stdlib-linux.swift │ ├── subcommands.swift │ ├── supplementary-filelist-empty.swift │ ├── swift-version-7-asserts.swift │ ├── swift-version-7-no-asserts.swift │ ├── swift-version-default.swift │ ├── swift-version.swift │ ├── temp-files.swift │ ├── tools_directory.swift │ ├── unknown-inputs.swift │ ├── verbose.swift │ ├── verify-debug-info.swift │ ├── verify-module-interface.swift │ ├── vfs.swift │ ├── warn_swift3_objc_inference.swift │ ├── warnings-control.swift │ ├── wasm.swift │ ├── windows-libc-options.swift │ ├── windows-link-job.swift │ └── working-directory.swift ├── FixCode │ ├── Inputs │ │ └── fixits-enum-multifile.swift │ ├── fixit-all.swift │ ├── fixits-empty-switch-multifile.swift │ ├── fixits-empty-switch.swift │ ├── fixits-omit-return.swift │ ├── fixits-switch-nonfrozen.swift │ └── fixits-switch.swift ├── Frontend │ ├── DiagnosticVerifier │ │ ├── Inputs │ │ │ └── broken-c-module │ │ │ │ ├── broken_c.h │ │ │ │ └── module.modulemap │ │ ├── broken-c-module.swift │ │ ├── fixits.swift │ │ ├── multiple_prefix_invalid.swift │ │ ├── multiple_prefix_negative.swift │ │ ├── multiple_prefix_positive.swift │ │ ├── verify-apply-fixes.swift │ │ ├── verify-apply-fixes.swift.result │ │ ├── verify.swift │ │ └── verify2.swift │ ├── Inputs │ │ ├── TestPlugin.cpp │ │ ├── android.sdk │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── swift │ │ │ │ └── android │ │ │ │ └── x86_64 │ │ │ │ └── Swift.swiftinterface │ │ ├── bad_output_filemap.yaml │ │ ├── dependencies │ │ │ ├── $$$$$.h │ │ │ ├── UserClangModule.h │ │ │ ├── extra-header.h │ │ │ └── module.modulemap │ │ ├── filelist-other.swift │ │ ├── invalid-module-name.swift │ │ ├── invalid-overlay.yaml │ │ ├── invalid.module.name.swift │ │ ├── json_ast_macro_definitions.swift │ │ ├── json_ast_macro_library.swift │ │ ├── module-alias-src.swift │ │ ├── multiple_input │ │ │ ├── lib.swift │ │ │ └── main.swift │ │ ├── opt-record-2.swift │ │ ├── same_filename │ │ │ ├── A │ │ │ │ └── File.swift │ │ │ └── B │ │ │ │ └── File.swift │ │ ├── sil-merge-partial-modules-other.swift │ │ ├── sil-primary-file-with-sib.sil │ │ ├── single_int.swift │ │ ├── supplementary_output_filemap_missing_a_primary.yaml │ │ └── vfs │ │ │ ├── a-header │ │ │ ├── a-modulemap │ │ │ ├── a-swift-file │ │ │ ├── b-header │ │ │ ├── quaternary-vfsoverlay.yaml │ │ │ ├── secondary-vfsoverlay.yaml │ │ │ ├── tertiary-vfsoverlay.yaml │ │ │ ├── triple-mapped-swift-file │ │ │ └── vfsoverlay.yaml │ ├── InternalChecks.swift │ ├── OptimizationOptions-with-stdlib-checks.swift │ ├── OptimizationOptions-without-stdlib-checks.swift │ ├── Xllvm.swift │ ├── allow-errors-missing.swift │ ├── allow-errors.swift │ ├── android-sdk.swift │ ├── ast-dump-json-macros.swift │ ├── ast-dump-json-no-crash.swift │ ├── ast-dump-json-objc-no-crash.swift │ ├── ast-dump-json-output-map.swift │ ├── ast-dump-json-zlib.swift │ ├── ast-dump-json.swift │ ├── ast-dump.swift │ ├── bad-vfs-overlays.swift │ ├── batch-mode.swift │ ├── batch_mode_missing_module_trace_output.swift │ ├── batch_mode_module_file_names_as_main_output.swift │ ├── batch_mode_output_file_map_missing_primary.swift │ ├── batch_mode_output_file_map_yaml_parse_error.swift │ ├── bitwise-copyable-flag.swift │ ├── clang-args-diags.swift │ ├── crash-in-user-code.swift │ ├── crash-whole-module.swift │ ├── crash.swift │ ├── debug-cycles.swift │ ├── debug-diagnostic-names.swift │ ├── debug-generic-signatures.swift │ ├── debug-output.swift │ ├── default-search-paths.swift │ ├── dependencies-fine.swift │ ├── dependencies-preservation-fine.swift │ ├── dependencies-selective-supplementaries.swift │ ├── dsohandle-linkable.swift │ ├── dump-parse-skip-function-body.swift │ ├── dump-parse-syntactically-valid.swift │ ├── dump-parse.swift │ ├── embed-bitcode-tvos.ll │ ├── embed-bitcode.ll │ ├── embed-bitcode.swift │ ├── emit-const-values-file.swift │ ├── emit-irgen.swift │ ├── emit-module-abi-descriptor.swift │ ├── emit-module-api-descriptor.swift │ ├── emit-module-path-wmo.swift │ ├── emit-module-summary.swift │ ├── emit-plus-zero-normal-arguments.swift │ ├── enable_builtin_module.swift │ ├── enforce-exclusivity.swift │ ├── features │ │ ├── adoption_mode.swift │ │ ├── adoption_mode_adoptable_feature.swift │ │ ├── experimental-features-asserts.swift │ │ ├── experimental-features-no-asserts.swift │ │ ├── strict_features.swift │ │ └── upcoming_feature.swift │ ├── fileid-raw-identifier-module-name.swift │ ├── filelist.swift │ ├── immediate-mode-crash.swift │ ├── immediate-mode-no-output.swift │ ├── implicit-builtins-import.swift │ ├── input-errors.swift │ ├── invalid-module-name.swift │ ├── invalid-target.swift │ ├── invalid-testable-import.swift │ ├── ir-support-codegen.ll │ ├── load-module-with-alias-mangling.swift │ ├── load-pass-plugin.swift │ ├── lowered_sil.swift │ ├── missing_files.swift │ ├── module-alias-diags.swift │ ├── module-alias-dump-ast.swift │ ├── module-alias-emit-imported-modules.swift │ ├── module-alias-emit-sil-reingest.swift │ ├── module-alias-emit-sil.swift │ ├── module-alias-escaped-identifier.swift │ ├── module-alias-explicit-build-alias-in-json.swift │ ├── module-alias-explicit-build-escaped-identifier.swift │ ├── module-alias-explicit-build.swift │ ├── module-alias-for-client.swift │ ├── module-alias-for-lib-and-client.swift │ ├── module-alias-import-attrs.swift │ ├── module-alias-invalid-input.swift │ ├── module-alias-load.swift │ ├── module-alias-scan-deps.swift │ ├── module-alias-serialize-swiftinterface.swift │ ├── module-alias-serialize-swiftmodule.swift │ ├── multiple_input.swift │ ├── no-inputs.swift │ ├── opt-record-supplemental.swift │ ├── output.swift │ ├── output_determinism_check.swift │ ├── parse-sil-inputs.swift │ ├── parseable_output.swift │ ├── parseable_output_batch.swift │ ├── parseable_output_early.swift │ ├── parseable_output_emit_module.swift │ ├── parseable_output_error.swift │ ├── parseable_output_unknown_file_type.swift │ ├── primary-filelist.swift │ ├── print-sil-debug-info.swift │ ├── print-supported-features.swift │ ├── same_filename_twice.swift │ ├── sil-merge-partial-modules-stdlib.swift │ ├── sil-merge-partial-modules.swift │ ├── sil-primary-file-with-sib.swift │ ├── skip-function-bodies-Onone.swift │ ├── skip-function-bodies-parsing.swift │ ├── skip-function-bodies.swift │ ├── supplementary-output-support.swift │ ├── test_datalayout.ll │ ├── unknown-arguments.swift │ ├── version.swift │ ├── vfs.swift │ └── wrong-number-of-arguments.swift ├── Generics │ ├── Inputs │ │ ├── associated_types_multi_file_helper.swift │ │ ├── conditional_conformances_objc.h │ │ ├── external-protocol.swift │ │ ├── generic-nested-in-extension-on-objc-class.swift │ │ ├── issue-51450-other.swift │ │ ├── protocol_typealias_other.swift │ │ ├── rdar48049725_other.swift │ │ └── rdar79564324_other.swift │ ├── abstract_type_witnesses_in_protocols.swift │ ├── abstract_type_witnesses_in_protocols_2.swift │ ├── algorithms.swift │ ├── ambiguous_protocol_inheritance.swift │ ├── analyze_requirement_machine.swift │ ├── archetype_with_redundant_superclass_conformance.swift │ ├── associated_self_constraints.swift │ ├── associated_type_anchor_rdar47605019.swift │ ├── associated_type_order.swift │ ├── associated_type_typo.swift │ ├── associated_type_where_clause.swift │ ├── associated_type_where_clause_hints.swift │ ├── associated_types.swift │ ├── associated_types_inherit.swift │ ├── associated_types_multi_file.swift │ ├── canonical_concrete_substitutions_in_protocol.swift │ ├── canonicalization.swift │ ├── circular_protocol_superclass.swift │ ├── class_constraint.swift │ ├── concrete_conflict.swift │ ├── concrete_conformance_minimization.swift │ ├── concrete_conformance_rule_simplified.swift │ ├── concrete_conformances_in_protocol.swift │ ├── concrete_contraction_existential.swift │ ├── concrete_contraction_substitute_non_nominal_base.swift │ ├── concrete_contraction_unrelated_typealias.swift │ ├── concrete_nesting_elimination_order.swift │ ├── concrete_nesting_elimination_order_2.swift │ ├── concrete_protocol_typealias_minimization.swift │ ├── concrete_redundancy_via_adjustment.swift │ ├── concrete_same_type_versus_anyobject.swift │ ├── concrete_type_property_of_suffix.swift │ ├── conditional_conformance_sendable.swift │ ├── conditional_conformances.swift │ ├── conditional_conformances_execute_smoke.swift │ ├── conditional_conformances_fixit.swift │ ├── conditional_conformances_literals.swift │ ├── conditional_conformances_objc.swift │ ├── conditional_conformances_operators.swift │ ├── conditional_requirement_inference.swift │ ├── conditional_requirement_inference_2.swift │ ├── conditional_requirement_inference_in_protocol.swift │ ├── confluent_example.swift │ ├── conformance_access_path.swift │ ├── conformance_requirement_in_original_protocol.swift │ ├── conformance_requirement_with_protocol_typealias.swift │ ├── connected_components_concrete.swift │ ├── constrained_optional_params.swift │ ├── constrained_type_witnesses.swift │ ├── copyable_and_self_conforming_protocols.swift │ ├── deduction.swift │ ├── derived_via_concrete.swift │ ├── derived_via_concrete_in_protocol.swift │ ├── existential_restrictions.swift │ ├── function_decls.swift │ ├── function_defs.swift │ ├── generic-nested-in-extension-on-objc-class.swift │ ├── generic_objc_superclass.swift │ ├── generic_types.swift │ ├── gsb_canonical_type_bug_1.swift │ ├── gsb_canonical_type_bug_2.swift │ ├── gsb_canonical_type_bug_3.swift │ ├── identity_conformance.swift │ ├── indirectly_concrete_generic_param.swift │ ├── infinite_concrete_type.swift │ ├── infinite_opaque_result_type.swift │ ├── inheritance.swift │ ├── inherited_concrete_conformance_in_protocol.swift │ ├── interdependent_protocol_conformance_example_1.swift │ ├── interdependent_protocol_conformance_example_2.swift │ ├── interdependent_protocol_conformance_example_3.swift │ ├── interdependent_protocol_conformance_example_4.swift │ ├── interdependent_protocol_conformance_example_5.swift │ ├── invalid.swift │ ├── inverse_associatedtype_restriction.swift │ ├── inverse_casting_availability.swift │ ├── inverse_classes1.swift │ ├── inverse_classes2.swift │ ├── inverse_conditional_conformance_copyable_and_escapable.swift │ ├── inverse_conditional_conformance_restriction.swift │ ├── inverse_copyable_requirement.swift │ ├── inverse_copyable_requirement_errors.swift │ ├── inverse_extension_signatures.swift │ ├── inverse_extensions.swift │ ├── inverse_generics.swift │ ├── inverse_generics_stdlib.swift │ ├── inverse_protocols.swift │ ├── inverse_protocols_errors.swift │ ├── inverse_rdar119950540.swift │ ├── inverse_scoping.swift │ ├── inverse_signatures.swift │ ├── issue-48296.swift │ ├── issue-49200.swift │ ├── issue-49823.swift │ ├── issue-49901.swift │ ├── issue-51450.swift │ ├── issue-51472.swift │ ├── issue-52042.swift │ ├── issue-52838.swift │ ├── issue-52932.swift │ ├── issue-53142.swift │ ├── issue-53495.swift │ ├── issue-53550.swift │ ├── issue-54431.swift │ ├── issue-54555.swift │ ├── issue-54974.swift │ ├── issue-55060.swift │ ├── issue-55182.swift │ ├── issue-55258.swift │ ├── issue-55389.swift │ ├── issue-55426.swift │ ├── issue-55666.swift │ ├── issue-56248.swift │ ├── issue-56648.swift │ ├── issue-56840.swift │ ├── issue-56862.swift │ ├── issue-56932.swift │ ├── issue-57264.swift │ ├── issue-57339.swift │ ├── issue-58067.swift │ ├── issue-58069_1.swift │ ├── issue-58069_2.swift │ ├── issue-58100.swift │ ├── issue-58285.swift │ ├── issue-58301.swift │ ├── issue-61020.swift │ ├── issue-61192.swift │ ├── issue-63410.swift │ ├── issue-69318.swift │ ├── joe_monoid.swift │ ├── loop_normalization_1.swift │ ├── loop_normalization_2.swift │ ├── loop_normalization_performance.swift │ ├── marker_self_conformance.swift │ ├── materializable_restrictions.swift │ ├── max_concrete_nesting.swift │ ├── member_type_of_superclass_bound.swift │ ├── minimal_conformances_compare_concrete.swift │ ├── minimize_concrete_unification.swift │ ├── minimize_superclass_unification_generic_1.swift │ ├── minimize_superclass_unification_generic_2.swift │ ├── minimize_superclass_unification_non_generic.swift │ ├── missing_sendable_conformance.swift │ ├── nested_type_reference.swift │ ├── non_fcrs.swift │ ├── non_final_class_conforms_same_type_requirement_on_self.swift │ ├── non_generic_derived_class.swift │ ├── occurs_check_diagnostic.swift │ ├── opaque_archetype_concrete_requirement.swift │ ├── opaque_archetype_concrete_requirement_invalid.swift │ ├── opaque_archetype_concrete_requirement_recursive.swift │ ├── opaque_archetype_concrete_requirement_recursive_rejected.swift │ ├── parameter-pack-requirements.swift │ ├── parameter-pack-same-element-requirements.swift │ ├── protocol_extension_where_clause.swift │ ├── protocol_order.swift │ ├── protocol_requirement_signatures.swift │ ├── protocol_self_concrete_error.swift │ ├── protocol_superclass_cycle.swift │ ├── protocol_type_aliases.swift │ ├── protocol_typealias_concrete_unification.swift │ ├── protocol_typealias_cycle_1.swift │ ├── protocol_typealias_cycle_1a.swift │ ├── protocol_typealias_cycle_2.swift │ ├── protocol_typealias_cycle_3.swift │ ├── protocol_typealias_cycle_4.swift │ ├── protocol_typealias_cycle_5.swift │ ├── protocol_typealias_cycle_6.swift │ ├── protocol_typealias_redeclaration.swift │ ├── protocol_typealias_same_type_requirement.swift │ ├── protocol_typealias_serialization.swift │ ├── protocol_typealias_unbound_generic.swift │ ├── protocol_where_clause.swift │ ├── rdar108963047.swift │ ├── rdar113943346.swift │ ├── rdar115314044.swift │ ├── rdar115538386.swift │ ├── rdar115538574.swift │ ├── rdar116434843.swift │ ├── rdar119866847.swift │ ├── rdar123013710.swift │ ├── rdar124697829.swift │ ├── rdar136686001.swift │ ├── rdar139232031.swift │ ├── rdar25065503.swift │ ├── rdar28544316.swift │ ├── rdar33654588.swift │ ├── rdar48049725.swift │ ├── rdar51908331.swift │ ├── rdar62903491.swift │ ├── rdar63731199.swift │ ├── rdar65015626.swift │ ├── rdar65263302.swift │ ├── rdar68084643.swift │ ├── rdar74321043.swift │ ├── rdar74890907.swift │ ├── rdar75171977.swift │ ├── rdar75656022.swift │ ├── rdar75691385.swift │ ├── rdar76750100.swift │ ├── rdar77462797.swift │ ├── rdar77683844.swift │ ├── rdar77807692.swift │ ├── rdar78233378.swift │ ├── rdar78643612.swift │ ├── rdar79564324.swift │ ├── rdar79570734.swift │ ├── rdar80503090.swift │ ├── rdar83308672.swift │ ├── rdar83687967.swift │ ├── rdar83768458.swift │ ├── rdar83848546.swift │ ├── rdar83894546.swift │ ├── rdar83894546_2.swift │ ├── rdar83955123.swift │ ├── rdar84734584.swift │ ├── rdar86431977.swift │ ├── rdar89921930.swift │ ├── rdar90402519.swift │ ├── rdar90506457.swift │ ├── rdar90506460.swift │ ├── rdar91232987.swift │ ├── rdar91594361.swift │ ├── rdar91771352.swift │ ├── rdar94150249.swift │ ├── rdar94746399.swift │ ├── rdar94848868.swift │ ├── rdar94854326.swift │ ├── rdar94980084.swift │ ├── rdar95075552.swift │ ├── reconstitute_sugar.swift │ ├── recursive_conformances.swift │ ├── recursive_superclass.swift │ ├── redundant_concrete_conformance.swift │ ├── redundant_inferred_requirement_order.swift │ ├── redundant_parent_path_in_protocol.swift │ ├── redundant_protocol_composition.swift │ ├── redundant_protocol_inheritance_via_concrete.swift │ ├── redundant_protocol_refinement.swift │ ├── redundant_requirement_self_conforming_protocol.swift │ ├── requirement_inference.swift │ ├── requirement_inference_funny_order.swift │ ├── requirement_inference_objc.swift │ ├── requirement_inference_preconcurrency.swift │ ├── requirement_machine_diagnostics.swift │ ├── runaway_conformance_access_path.swift │ ├── same_type_constraints.swift │ ├── same_type_constraints_objc.swift │ ├── same_type_minimize_concrete.swift │ ├── same_type_requirements_in_protocol.swift │ ├── shadowed_generic_params.swift │ ├── simplify_concrete_substitutions.swift │ ├── simplify_concrete_substitutions_projection.swift │ ├── simplify_rhs_elimination_order.swift │ ├── slice_test.swift │ ├── specialized_conformance_type_witness.swift │ ├── split_concrete_equivalence_class.swift │ ├── split_concrete_equivalence_class_in_protocol.swift │ ├── superclass_and_concrete_requirement.swift │ ├── superclass_and_layout_requirement.swift │ ├── superclass_constraint.swift │ ├── superclass_constraint_nested_type.swift │ ├── superclass_constraint_self_derived.swift │ ├── superclass_requirement_and_objc_existential.swift │ ├── trivial_reduction.swift │ ├── tuple-conformances-synthesize-crash.swift │ ├── tuple-conformances.swift │ ├── typealias-in-extension-of-external-protocol.swift │ ├── typed_throws.swift │ ├── unavailable_conformances.swift │ ├── unbound.swift │ ├── unify_associated_types.swift │ ├── unify_concrete_types_1.swift │ ├── unify_concrete_types_2.swift │ ├── unify_nested_types_1.swift │ ├── unify_nested_types_2.swift │ ├── unify_nested_types_3.swift │ ├── unify_nested_types_4.swift │ ├── unify_nested_types_5.swift │ ├── unify_protocol_composition.swift │ ├── unify_superclass_types_1.swift │ ├── unify_superclass_types_2.swift │ ├── unify_superclass_types_3.swift │ ├── unify_superclass_types_4.swift │ ├── unify_superclass_types_invalid.swift │ ├── validate_stdlib_generic_signatures.swift │ ├── variadic_generic_requirements.swift │ ├── variadic_generic_types.swift │ ├── variadic_generic_types_availability.swift │ └── where_clause_contextually_generic_decls.swift ├── IDE │ ├── Inputs │ │ ├── AnyObject │ │ │ ├── bar_swift_module.swift │ │ │ ├── baz_clang_module.h │ │ │ ├── foo_swift_module.swift │ │ │ └── module.modulemap │ │ ├── CrossImport │ │ │ ├── A.swiftcrossimport │ │ │ │ └── B.swiftoverlay │ │ │ ├── A.swiftinterface │ │ │ ├── B.swiftinterface │ │ │ ├── C.swiftinterface │ │ │ ├── D.swiftcrossimport │ │ │ │ └── B.swiftoverlay │ │ │ ├── D.swiftinterface │ │ │ ├── DBAdditions.swiftinterface │ │ │ ├── _ABAdditions.swiftcrossimport │ │ │ │ └── D.swiftoverlay │ │ │ ├── _ABAdditions.swiftinterface │ │ │ └── __ABAdditionsDAdditions.swiftinterface │ │ ├── EnumFromOtherFile.swift │ │ ├── ExprType.swift │ │ ├── ExprTypeFiltered.swift │ │ ├── FooOverlay.swift │ │ ├── category-ordering │ │ │ ├── PropertyThenProtocol.h │ │ │ ├── ProtocolThenProperty.h │ │ │ └── module.modulemap │ │ ├── comment_extensions.swift │ │ ├── complete_import_multifile2.swift │ │ ├── complete_import_overloads.swift │ │ ├── complete_testable_helper.swift │ │ ├── complete_user_accessibility_helper.swift │ │ ├── corrupted_module.swiftmodule │ │ ├── custom-modules │ │ │ ├── CompatibilityAlias.h │ │ │ ├── ImportAsMember.apinotes │ │ │ ├── ImportAsMember.h │ │ │ ├── ImportAsMemberAPINotes.h │ │ │ ├── ImportAsMemberB.h │ │ │ ├── ImportAsMemberC.h │ │ │ ├── ImportAsMemberClass.h │ │ │ ├── ImportAsMemberError.h │ │ │ ├── ImportedProtocols.h │ │ │ ├── Newtype.h │ │ │ ├── NewtypeObjC.h │ │ │ ├── OmitNeedlessWords.h │ │ │ └── module.modulemap │ │ ├── foo_swift_module.printed.comments.txt │ │ ├── foo_swift_module.swift │ │ ├── foo_swift_module_overlay.swift │ │ ├── header.h │ │ ├── local_types.swift │ │ ├── mock-sdk │ │ │ ├── Bar.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Bar.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── BoolBridgingTests.framework │ │ │ │ ├── Headers │ │ │ │ │ └── BoolBridgingTests.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Foo.FooSub.printed.txt │ │ │ ├── Foo.annotated.txt │ │ │ ├── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Foo.printed.recursive.txt │ │ │ ├── Foo.printed.txt │ │ │ ├── FooHelper.FooHelperExplicit.printed.txt │ │ │ ├── FooHelper.FooHelperSub.printed.txt │ │ │ ├── FooHelper.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooHelperSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooHelperSub.h │ │ │ │ ├── Headers │ │ │ │ │ ├── FooHelper.h │ │ │ │ │ └── FooHelperExplicit.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── FooHelper.printed.txt │ │ │ ├── OverlayTest.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Overlaid.h │ │ │ │ │ └── OverlayTest.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── OverlayTest.swiftinterface │ │ │ └── SwiftNameTests.framework │ │ │ │ ├── Headers │ │ │ │ └── SwiftNameTests.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── multiple-files-1.swift │ │ ├── multiple-files-2.swift │ │ ├── objc_send_collector_2.swift │ │ ├── precedencegroup_multifile.swift │ │ ├── print_clang_header │ │ │ ├── Foo-vfsoverlay.yaml │ │ │ ├── Foo.modulemap │ │ │ ├── header-to-print-availability.h │ │ │ ├── header-to-print-availability.h.module.printed.txt │ │ │ ├── header-to-print-availability.h.printed.txt │ │ │ ├── header-to-print.h │ │ │ ├── header-to-print.h.command-line-include.printed.txt │ │ │ ├── header-to-print.h.module.printed.txt │ │ │ ├── header-to-print.h.printed.txt │ │ │ ├── module.modulemap │ │ │ └── other-header.h │ │ ├── print_clang_header_swift_name.h │ │ ├── reconstruct_type_helper.h │ │ ├── swift_name.h │ │ └── swift_name_objc.h │ ├── annotation.swift │ ├── annotation_foundation.swift │ ├── clang-importing │ │ ├── Inputs │ │ │ ├── bridge.h │ │ │ ├── somemod1 │ │ │ │ ├── module.modulemap │ │ │ │ └── somemod1.h │ │ │ └── somemod2 │ │ │ │ ├── module.modulemap │ │ │ │ └── somemod2.h │ │ └── complete_with_clang_comments.swift │ ├── coloring.swift │ ├── coloring_52982457.swift │ ├── coloring_class_restriction.swift │ ├── coloring_comments.swift │ ├── coloring_configs.swift │ ├── coloring_invalid.swift │ ├── coloring_keywords.swift │ ├── coloring_playground.swift │ ├── coloring_string_interpolation.swift │ ├── coloring_unclosed_hash_if.swift │ ├── comment_attach.swift │ ├── comment_attach_huge.swift │ ├── comment_brief.swift │ ├── comment_extensions.swift │ ├── comment_inherited_class.swift │ ├── comment_inherited_protocol.swift │ ├── comment_measurement.swift │ ├── comment_merge.swift │ ├── comment_to_xml.swift │ ├── compatibility_alias.swift │ ├── complete_access_control_set.swift │ ├── complete_accessor.swift │ ├── complete_actorisolation.swift │ ├── complete_after_pattern_in_closure.swift │ ├── complete_after_self.swift │ ├── complete_after_sself.swift │ ├── complete_after_super.swift │ ├── complete_ambiguous.swift │ ├── complete_annotation.swift │ ├── complete_annotation_concurrency.swift │ ├── complete_assignment.swift │ ├── complete_associated_types.swift │ ├── complete_async_context.swift │ ├── complete_async_imported.swift │ ├── complete_asyncannotation.swift │ ├── complete_at_eof_1.swift │ ├── complete_at_eof_in_call_1.swift │ ├── complete_at_eof_in_call_no_newline_1.swift │ ├── complete_at_eof_no_newline_1.swift │ ├── complete_at_eof_no_newline_2.swift │ ├── complete_at_start_1.swift │ ├── complete_at_top_level.swift │ ├── complete_at_top_level_library.swift │ ├── complete_attributes.swift │ ├── complete_cache.swift │ ├── complete_cache_notrecommended.swift │ ├── complete_call_arg.swift │ ├── complete_call_as_function.swift │ ├── complete_call_pattern.swift │ ├── complete_call_pattern_after_dot.swift │ ├── complete_cgfloat_double.swift │ ├── complete_concurrency_keyword.swift │ ├── complete_concurrency_specifier.swift │ ├── complete_constrained.swift │ ├── complete_constructor.swift │ ├── complete_controltransfer.swift │ ├── complete_crashes.swift │ ├── complete_cross_import.swift │ ├── complete_cross_import_indirect.swift │ ├── complete_cross_import_multiple.swift │ ├── complete_cross_import_no_underscore.swift │ ├── complete_cross_import_no_underscore_imported.swift │ ├── complete_crossmodule.swift │ ├── complete_decl_attribute.swift │ ├── complete_decl_attribute_feature_requirement.swift │ ├── complete_declname.swift │ ├── complete_default_arguments.swift │ ├── complete_default_arguments_rdar89051832.swift │ ├── complete_diagnostics.swift │ ├── complete_diagnostics_concurrency.swift │ ├── complete_do_with_multiple_catch_in_closure.swift │ ├── complete_dont_filter_overloads_with_cc_token.swift │ ├── complete_dynamic_lookup.swift │ ├── complete_effectful_accessor.swift │ ├── complete_embedded_linux.swift │ ├── complete_embedded_macos.swift │ ├── complete_enum_elements.swift │ ├── complete_enum_unresolved_dot_argument_labels.swift │ ├── complete_escaped_keyword.swift │ ├── complete_exception.swift │ ├── complete_expr_after_paren.swift │ ├── complete_expr_postfix_begin.swift │ ├── complete_expr_tuple.swift │ ├── complete_flair_cache.swift │ ├── complete_from_clang_framework.swift │ ├── complete_from_clang_framework_typechecker.swift │ ├── complete_from_clang_importer_framework.swift │ ├── complete_from_constraint_extensions.swift │ ├── complete_from_foundation_overlay.swift │ ├── complete_from_module_with_type_alias_to_parameterized_protocol.swift │ ├── complete_from_reexport.swift │ ├── complete_from_stdlib.swift │ ├── complete_from_swift_module.swift │ ├── complete_from_swift_module_spi.swift │ ├── complete_from_swiftonly_systemmodule.swift │ ├── complete_func_body_typechecking.swift │ ├── complete_func_no_closing_brace.swift │ ├── complete_func_no_closing_brace_at_eof_1.swift │ ├── complete_func_no_closing_brace_at_eof_2.swift │ ├── complete_func_no_closing_brace_at_eof_3.swift │ ├── complete_func_no_closing_brace_deinit.swift │ ├── complete_func_reference.swift │ ├── complete_function_isolation.swift │ ├── complete_generic_optional.swift │ ├── complete_generic_param.swift │ ├── complete_global_actorisolation.swift │ ├── complete_globalactorunsafe.swift │ ├── complete_globalactorunsafe_strict.swift │ ├── complete_if_switch_expr.swift │ ├── complete_implicit_last_expr.swift │ ├── complete_import.swift │ ├── complete_import_multifile1.swift │ ├── complete_import_overloads.swift │ ├── complete_import_swiftmodule.swift │ ├── complete_in_accessors.swift │ ├── complete_in_closures.swift │ ├── complete_in_enum_decl.swift │ ├── complete_in_ifconfig.swift │ ├── complete_in_result_builder.swift │ ├── complete_init.swift │ ├── complete_init_inherited.swift │ ├── complete_inline_array.swift │ ├── complete_inout.swift │ ├── complete_invalid_op_decl.swift │ ├── complete_invalid_result_builder.swift │ ├── complete_issue-55711.swift │ ├── complete_issue-56012.swift │ ├── complete_issue-56810.swift │ ├── complete_issue-56811.swift │ ├── complete_issue-57061.swift │ ├── complete_issue-57263.swift │ ├── complete_issue-69936.swift │ ├── complete_issue-77305.swift │ ├── complete_keypath_member_lookup.swift │ ├── complete_keywords.swift │ ├── complete_lazy_initialized_var.swift │ ├── complete_literal.swift │ ├── complete_loop.swift │ ├── complete_macro_attribute.swift │ ├── complete_macro_declaration.swift │ ├── complete_macros.swift │ ├── complete_macros_expanded.swift │ ├── complete_member_basetypes.swift │ ├── complete_member_decls_from_parent_decl_context.swift │ ├── complete_member_type.swift │ ├── complete_members_optional.swift │ ├── complete_modulename.swift │ ├── complete_multibracestmt.swift │ ├── complete_multifile.swift │ ├── complete_multiple_files.swift │ ├── complete_multiple_trailingclosure.swift │ ├── complete_multiple_trailingclosure_signatures.swift │ ├── complete_name_lookup.swift │ ├── complete_no_cc_behavior_other_syntactic_element.swift │ ├── complete_non_default_literal.swift │ ├── complete_nonexhaustive.swift │ ├── complete_nonisolated.swift │ ├── complete_not_recommended.swift │ ├── complete_opaque_result.swift │ ├── complete_operator_operand.swift │ ├── complete_operators.swift │ ├── complete_optional_binding.swift │ ├── complete_optional_function.swift │ ├── complete_optionset.swift │ ├── complete_overlaymodule.swift │ ├── complete_overridden_decls.swift │ ├── complete_override.swift │ ├── complete_override_access_control_class.swift │ ├── complete_override_access_control_protocol.swift │ ├── complete_override_access_level.swift │ ├── complete_override_extension.swift │ ├── complete_override_objc.swift │ ├── complete_override_typealias.swift │ ├── complete_param_specifier.swift │ ├── complete_parameter_pack_as_call_argument.swift │ ├── complete_pattern.swift │ ├── complete_pattern_match_in_closure.swift │ ├── complete_pound_decl.swift │ ├── complete_pound_directive.swift │ ├── complete_pound_expr.swift │ ├── complete_pound_keypath.swift │ ├── complete_pound_selector.swift │ ├── complete_pound_statement.swift │ ├── complete_precedencegroup.swift │ ├── complete_prefer_function_call_if_both_reference_and_call_are_possible.swift │ ├── complete_property_delegate.swift │ ├── complete_property_delegate_attribute.swift │ ├── complete_protocol_static_member.swift │ ├── complete_protocol_static_member_with_protocol_contextual_type.swift │ ├── complete_protocol_typealias.swift │ ├── complete_raw_identifiers.swift │ ├── complete_rdar126168123.swift │ ├── complete_rdar127154780.swift │ ├── complete_rdar127844278.swift │ ├── complete_rdar129024996.swift │ ├── complete_rdar131854240.swift │ ├── complete_rdar133460404.swift │ ├── complete_rdar138774888.swift │ ├── complete_rdar146055457.swift │ ├── complete_rdar147789214.swift │ ├── complete_rdar63965160.swift │ ├── complete_rdar67155695.swift │ ├── complete_rdar71005827.swift │ ├── complete_rdar75200217.swift │ ├── complete_rdar80489548.swift │ ├── complete_rdar94369218.swift │ ├── complete_regex.swift │ ├── complete_repeat.swift │ ├── complete_repl_empty_file.swift │ ├── complete_repl_identifier_prefix_1.swift │ ├── complete_repl_in_func_1.swift │ ├── complete_result_builder.swift │ ├── complete_result_builder_func_signature.swift │ ├── complete_result_builder_rewritten_arg_list.swift │ ├── complete_return.swift │ ├── complete_sequence_invalid.swift │ ├── complete_shadowing.swift │ ├── complete_single_expression_return.swift │ ├── complete_skipbody.swift │ ├── complete_some_any.swift │ ├── complete_sself.swift │ ├── complete_stdlib_builtin.swift │ ├── complete_stdlib_optional.swift │ ├── complete_stdlib_optional_objc.swift │ ├── complete_stmt_controlling_expr.swift │ ├── complete_storage_restriction.swift │ ├── complete_string_interpolation.swift │ ├── complete_subscript.swift │ ├── complete_subtype_overload.swift │ ├── complete_super_self.swift │ ├── complete_swift_key_path.swift │ ├── complete_swift_key_path_optional_root.swift │ ├── complete_testable.swift │ ├── complete_then_stmt.swift │ ├── complete_trailing_closure.swift │ ├── complete_trailing_if_expr.swift │ ├── complete_tuple_label_in_keypath.swift │ ├── complete_type.swift │ ├── complete_type_any.swift │ ├── complete_type_attribute.swift │ ├── complete_type_in_func_param.swift │ ├── complete_type_relation_any_some.swift │ ├── complete_type_relation_global_results.swift │ ├── complete_type_subscript.swift │ ├── complete_typerelation.swift │ ├── complete_unapplied_static_ref_to_func_with_error.swift │ ├── complete_unicode.swift │ ├── complete_uninferred_generic.swift │ ├── complete_unowned_parameter.swift │ ├── complete_unqualified_lookup.swift │ ├── complete_unresolved_chains.swift │ ├── complete_unresolved_members.swift │ ├── complete_unwrapping_if_while.swift │ ├── complete_user_accessible.swift │ ├── complete_using.swift │ ├── complete_value_expr.swift │ ├── complete_value_literals.swift │ ├── complete_vararg.swift │ ├── complete_weak.swift │ ├── complete_where_clause.swift │ ├── complete_with_adjacent_string_literal.swift │ ├── complete_with_closure_param.swift │ ├── complete_with_header_import.swift │ ├── complete_with_multiple_imports.swift │ ├── complete_with_trailing_closure.swift │ ├── complete_with_visible_members.swift │ ├── complete_without_constraint_type.swift │ ├── complete_without_typo_correction.swift │ ├── complete_yield.swift │ ├── conforming-methods-after-var-in-closure.swift │ ├── conforming-methods-afterclosure.swift │ ├── conforming-methods-basic.swift │ ├── conforming-methods-generic.swift │ ├── conforming-methods-rdar77259607.swift │ ├── copy_expr.swift │ ├── dump_swift_lookup_tables.swift │ ├── dump_swift_lookup_tables_objc.swift │ ├── emit-module-semantic.swift │ ├── enable_objc_interop.swift │ ├── expected_type_of_call_pattern.swift │ ├── expr_type.swift │ ├── expr_type_filtered.swift │ ├── expr_type_qualified.swift │ ├── importProtocols.swift │ ├── import_as_member.swift │ ├── import_as_member_cf.swift │ ├── import_as_member_objc.swift │ ├── int.complete_type_any.swift.tmp.types.txt │ ├── issue-66926.swift │ ├── issue-79213.swift │ ├── issue-80591.swift │ ├── local_types.swift │ ├── merge_local_types.swift │ ├── module-aliasing-batch-code-complete.swift │ ├── module-aliasing-code-complete.swift │ ├── module-aliasing-repl-code-complete.swift │ ├── module_api_smoketest.swift │ ├── move_expr.swift │ ├── newtype.swift │ ├── newtype_objc.swift │ ├── objc_send_collector_1.swift │ ├── print_ast_interface.swift │ ├── print_ast_named_opaque_return.swift │ ├── print_ast_non_typechecked.swift │ ├── print_ast_overlay.swift │ ├── print_ast_tc_decls.swift │ ├── print_ast_tc_decls_canonical_versions.swift │ ├── print_ast_tc_decls_errors.swift │ ├── print_ast_tc_function_bodies.swift │ ├── print_ast_typechecked.swift │ ├── print_attributed_imports.swift │ ├── print_clang_ObjectiveC.swift │ ├── print_clang_bool_bridging.swift │ ├── print_clang_category_ordering.swift │ ├── print_clang_decls.swift │ ├── print_clang_decls_AppKit.swift │ ├── print_clang_foundation.swift │ ├── print_clang_framework.swift │ ├── print_clang_framework_with_overlay.swift │ ├── print_clang_header.swift │ ├── print_clang_header_availability.swift │ ├── print_clang_header_i386.swift │ ├── print_clang_header_swift_name.swift │ ├── print_clang_objc_async.swift │ ├── print_clang_objc_effectful_properties.swift │ ├── print_clang_swift_name.swift │ ├── print_module_bad_target.swift │ ├── print_module_comments.swift │ ├── print_module_missing.swift │ ├── print_module_without_deinit.swift │ ├── print_objc_concurrency_interface.swift │ ├── print_omit_needless_words.swift │ ├── print_omit_needless_words_appkit.swift │ ├── print_opaque_result_type.swift │ ├── print_property_wrappers.swift │ ├── print_set_accessor.swift │ ├── print_source_file_interface_1.swift │ ├── print_source_file_interface_1.swift.result │ ├── print_source_file_interface_2.swift │ ├── print_source_file_interface_2.swift.result │ ├── print_source_file_interface_preserve.swift │ ├── print_source_file_interface_preserve.swift.result │ ├── print_stdlib.swift │ ├── print_swift_module.swift │ ├── print_swift_module_with_available.swift │ ├── print_synthesized_extensions.swift │ ├── print_synthesized_extensions_generics.swift │ ├── print_synthesized_extensions_nomerge.swift │ ├── print_synthesized_extensions_superclass.swift │ ├── print_type_interface.swift │ ├── print_types.swift │ ├── print_usrs.swift │ ├── print_usrs_invalid.swift │ ├── print_usrs_opaque_types.swift │ ├── range_info_54276140.swift │ ├── range_info_basics.swift │ ├── range_info_branches.swift │ ├── range_info_comments.swift │ ├── range_info_declattr.swift │ ├── range_info_expr.swift │ ├── range_info_implicit.swift │ ├── range_info_string_interpolation.swift │ ├── range_info_throwing.swift │ ├── rdar141440011.swift │ ├── reconstruct_type_from_mangled_name.swift │ ├── reconstruct_type_from_mangled_name_import.swift │ ├── reconstruct_type_from_mangled_name_invalid.swift │ ├── repl_complete_with_error.swift │ ├── sdk_sugar.swift │ ├── structure.swift │ ├── structure_object_literals.swift │ ├── test-input-complete │ │ ├── Inputs │ │ │ ├── err_type_complete.swift │ │ │ ├── for_incomplete1.swift │ │ │ ├── func_complete.swift │ │ │ ├── func_incomplete1.swift │ │ │ ├── func_incomplete10.swift │ │ │ ├── func_incomplete11.swift │ │ │ ├── func_incomplete12.swift │ │ │ ├── func_incomplete2.swift │ │ │ ├── func_incomplete3.swift │ │ │ ├── func_incomplete4.swift │ │ │ ├── func_incomplete5.swift │ │ │ ├── func_incomplete6.swift │ │ │ ├── func_incomplete7.swift │ │ │ ├── func_incomplete8.swift │ │ │ ├── func_incomplete9.swift │ │ │ ├── invalid_interpolation1.swift │ │ │ ├── multi_line_string1.swift │ │ │ ├── multi_line_string2.swift │ │ │ ├── multi_line_string3.swift │ │ │ ├── multi_line_string4.swift │ │ │ ├── multi_line_string5.swift │ │ │ ├── nominal_complete.swift │ │ │ ├── nominal_incomplete.swift │ │ │ ├── nominal_incomplete2.swift │ │ │ ├── nominal_incomplete3.swift │ │ │ ├── switch_incomplete.swift │ │ │ ├── switch_incomplete2.swift │ │ │ ├── switch_incomplete3.swift │ │ │ ├── toplevel_complete.swift │ │ │ ├── toplevel_incomplete.swift │ │ │ ├── toplevel_incomplete2.swift │ │ │ ├── toplevel_incomplete3.swift │ │ │ ├── toplevel_incomplete4.swift │ │ │ ├── toplevel_incomplete5.swift │ │ │ ├── type_incomplete1.swift │ │ │ ├── type_incomplete2.swift │ │ │ ├── type_incomplete3.swift │ │ │ └── type_incomplete4.swift │ │ └── test_input.swift │ ├── typecontext_basic.swift │ └── unterminated_multiline.swift ├── IRGen │ ├── COFF-objc-sections.swift │ ├── CoroutineAccessorsDebugLoc.swift │ ├── ELF-remove-autolink-section.swift │ ├── Inputs │ │ ├── ABIInaccessible.swift │ │ ├── AlwaysInlineIntoWithOpaque.swift │ │ ├── AlwaysInlineIntoWithOpaqueReplacement.swift │ │ ├── AvailabilityDomains.h │ │ ├── CFBridgedType.h │ │ ├── Foundation.swift │ │ ├── FrameworkA.swift │ │ ├── FrameworkB.swift │ │ ├── Frameworks │ │ │ └── LinkFramework.framework │ │ │ │ ├── Headers │ │ │ │ └── LinkFramework.h │ │ │ │ ├── LinkFramework │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── ObjCBaseClasses.h │ │ ├── ObjectiveC.swift │ │ ├── OtherModule.swift │ │ ├── ResilientBase.swift │ │ ├── ResilientBaseClasses.swift │ │ ├── StaticInline.h │ │ ├── abi │ │ │ ├── CGadget.h │ │ │ ├── Gadget.h │ │ │ ├── c_layout.h │ │ │ └── module.modulemap │ │ ├── arg_and_result_peepholes.h │ │ ├── at-main-struct-simple.swift │ │ ├── atomic_bool.h │ │ ├── autolink-coff-c-pragma-transitive.h │ │ ├── autolink-coff-c-pragma.h │ │ ├── autolink-elf-c-pragma-transitive.h │ │ ├── autolink-elf-c-pragma.h │ │ ├── back_deployed.swift │ │ ├── backward_deploy_nominal.json │ │ ├── batchmode_errors.swift │ │ ├── c_functions.h │ │ ├── c_functions_error.h │ │ ├── clang_empty_type.h │ │ ├── clang_string_enum.h │ │ ├── comdat1.swift │ │ ├── comdat2.swift │ │ ├── conformance_multifile_1.swift │ │ ├── context_descriptor_cross_file_reference_2.swift │ │ ├── def_enum.swift │ │ ├── deserialize-clang-importer-witness-tables │ │ │ └── regex.swift │ │ ├── entry-point-section │ │ │ └── main.swift │ │ ├── error_domains.h │ │ ├── fnptr.h │ │ ├── force_public_metadata_accessors.swift │ │ ├── has_symbol │ │ │ ├── has_symbol_helper.swift │ │ │ ├── has_symbol_helper_clang.h │ │ │ ├── has_symbol_helper_objc.h │ │ │ └── module.modulemap │ │ ├── huge_c_type.h │ │ ├── implicit_some_b.swift │ │ ├── keypath_objc_protocol_extension_other.swift │ │ ├── keypath_protocol_extension_other.swift │ │ ├── keypaths_c_types.h │ │ ├── keypaths_external_other.swift │ │ ├── large_argument_result_c.h │ │ ├── large_c.h │ │ ├── large_union.h │ │ ├── lazy_multi_file_helper.swift │ │ ├── legacy_type_info │ │ │ ├── a.yaml │ │ │ ├── jit_metadata_strategy.yaml │ │ │ └── vfsoverlay.yaml │ │ ├── local_extern.h │ │ ├── local_types_helper.swift │ │ ├── main.swift │ │ ├── mangle-opaque-return-types-A.swift │ │ ├── metadata2.swift │ │ ├── mixed_mode │ │ │ ├── ObjCStuff.apinotes │ │ │ ├── ObjCStuff.h │ │ │ ├── UsingObjCStuff.swift │ │ │ └── module.modulemap │ │ ├── module.modulemap │ │ ├── moveonly_split_module_source_input.swift │ │ ├── multithread_keypaths_other.swift │ │ ├── multithread_module │ │ │ └── main.swift │ │ ├── multithread_resilience_other.swift │ │ ├── nested_imported_type_context_descriptor.h │ │ ├── noncopyable_private_other.swift │ │ ├── noreturn.h │ │ ├── objc_bridged_generic_conformance.h │ │ ├── objc_dependent_type_closure_argument.h │ │ ├── objc_enum_multi_file_helper.swift │ │ ├── objc_extension_base.swift │ │ ├── objc_generic_protocol_conformance.h │ │ ├── objc_implementation.h │ │ ├── objc_layout_other.swift │ │ ├── objc_protocol_multi_file_helper.swift │ │ ├── objc_protocol_sendable.h │ │ ├── objc_protocols_Bas.swift │ │ ├── objc_runtime_name_clang_attr.h │ │ ├── opaque_result_type_internal_inlinable.swift │ │ ├── opaque_result_type_linkage_2.swift │ │ ├── opaque_result_type_metadata_external.swift │ │ ├── opaque_result_type_private_2.swift │ │ ├── opaque_result_type_private_typemetadata2.swift │ │ ├── opaque_result_type_private_underlying_2.swift │ │ ├── opaque_result_type_private_underlying_3.swift │ │ ├── opaque_result_with_conditional_availability_types.swift │ │ ├── opaque_return_type_parameter.swift │ │ ├── other_class.swift │ │ ├── package_types │ │ │ ├── resilient_class.swift │ │ │ ├── resilient_enum.swift │ │ │ ├── resilient_protocol.swift │ │ │ └── resilient_struct.swift │ │ ├── pre_specialize_module.swift │ │ ├── pre_specialize_module_B.swift │ │ ├── protocol_accessor_multifile_other.swift │ │ ├── ptrauth-foreign.h │ │ ├── ptrauth-global-2.swift │ │ ├── ptrauth_field_fptr_import.h │ │ ├── raw_layout_cxx.h │ │ ├── raw_layout_multifile_b.swift │ │ ├── relative_protocol_witness_tables2.swift │ │ ├── report_dead_method_call │ │ │ └── main.swift │ │ ├── resilience_bypass │ │ │ ├── first.swift │ │ │ └── second.swift │ │ ├── resilient-class.swift │ │ ├── retroactive_conformance_other.swift │ │ ├── sensitive.h │ │ ├── sensitive_c_functions.c │ │ ├── signature_conformances_other.swift │ │ ├── sil_witness_tables_external_input.swift │ │ ├── simple.swift │ │ ├── simple2.swift │ │ ├── single-module-num-threads-2.swift │ │ ├── synthesized_protocol.h │ │ ├── tail_allocated_c_array.h │ │ ├── tls.h │ │ ├── type_layout_dumper_other.swift │ │ ├── union_type.h │ │ ├── usr │ │ │ └── include │ │ │ │ ├── BridgeTestCoreFoundation.h │ │ │ │ ├── BridgeTestFoundation.h │ │ │ │ ├── BridgeTestObjectiveC.h │ │ │ │ ├── CoreCooling.h │ │ │ │ ├── Foundation.apinotes │ │ │ │ ├── Gizmo.h │ │ │ │ ├── NSOption.h │ │ │ │ ├── ObjCInterop.h │ │ │ │ ├── ObjectiveC.apinotes │ │ │ │ ├── SRoA.h │ │ │ │ └── module.modulemap │ │ ├── vtable_multi_file_helper.swift │ │ ├── vtable_symbol_linkage_base.swift │ │ ├── weak_availability_opaque_result_type_helper.swift │ │ ├── weak_import_availability_helper.swift │ │ ├── weak_import_deployment_target_helper.swift │ │ ├── weak_import_extension_helper.swift │ │ ├── weak_import_native_helper.swift │ │ ├── weak_import_native_hoist_helper.swift │ │ ├── weak_import_opaque_result_type_helper.swift │ │ ├── weaklinked_import_helper.swift │ │ ├── weaklinked_import_helper_clang.h │ │ ├── weaklinked_import_helper_clang.modulemap │ │ └── witness_table_multifile_2.swift │ ├── MachO-objc-sections.swift │ ├── Mirror-LoadableByAddress-failure.swift │ ├── TestABIInaccessible.swift │ ├── UseObjCMethod.swift │ ├── abi_v7k.swift │ ├── abitypes_arm.swift │ ├── abitypes_objc.swift │ ├── abitypes_x86_64.swift │ ├── access_control.sil │ ├── access_markers.sil │ ├── access_markers_pc.sil │ ├── access_type_metadata_by_mangled_name.swift │ ├── access_type_metadata_by_mangled_name_51.swift │ ├── access_type_metadata_by_mangled_name_objc.swift │ ├── actor_class.swift │ ├── actor_class_forbid_objc_assoc_objects.swift │ ├── actor_class_objc.swift │ ├── actor_class_objc_backdeploy.swift │ ├── address_sanitizer_recover.swift │ ├── address_sanitizer_use_odr_indicator.swift │ ├── addressable.swift │ ├── addressable_for_dependencies_metadata.swift │ ├── alignment.sil │ ├── alloc.sil │ ├── alloc_box.swift │ ├── alloc_stack.swift │ ├── alwaysEmitIntoClient.swift │ ├── always_emit_into_client_opaque_result.swift │ ├── annotated_cond_fail.swift │ ├── anonymous_context_descriptors.sil │ ├── anonymous_context_descriptors.swift │ ├── archetype_resilience.sil │ ├── arg_and_result_peepholes.swift │ ├── argument_attrs.sil │ ├── arm_to_thumb_darwin.sil │ ├── array_type_layout.swift │ ├── asan-attributes.swift │ ├── asmname.swift │ ├── assert_conf_default.sil │ ├── associated_type_witness.swift │ ├── associated_types.swift │ ├── assoctypepath.swift │ ├── assume.sil │ ├── async-inheritance.swift │ ├── async.swift │ ├── async │ │ ├── Inputs │ │ │ ├── class-1instance-void_to_void.swift │ │ │ ├── class_open-1instance-void_to_void.swift │ │ │ ├── protocol-1instance-void_to_void.swift │ │ │ ├── resilient_class.swift │ │ │ └── resilient_protocol.swift │ │ ├── async_calls_verifier.sil │ │ ├── async_context_projection_arm64e.swift │ │ ├── builtin_executor.sil │ │ ├── builtins.sil │ │ ├── class_resilience.swift │ │ ├── debug.swift │ │ ├── default_actor.swift │ │ ├── get_async_continuation.sil │ │ ├── hop_to_executor.sil │ │ ├── non_musttail_target.sil │ │ ├── partial_apply.sil │ │ ├── partial_apply_forwarder.sil │ │ ├── protocol_req_descriptor.swift │ │ ├── protocol_resilience.swift │ │ ├── run-call-class-witnessmethod-void-to-void.swift │ │ ├── run-call-classinstance-int64-to-void.sil │ │ ├── run-call-classinstance-void-to-void.sil │ │ ├── run-call-dynamic-void_to_void.swift │ │ ├── run-call-existential-to-void.sil │ │ ├── run-call-generic-to-generic.sil │ │ ├── run-call-generic-to-void.swift │ │ ├── run-call-genericEquatable-x2-to-bool.sil │ │ ├── run-call-int64-and-int64-to-void.sil │ │ ├── run-call-int64-to-void.sil │ │ ├── run-call-nonresilient-classinstance-void-to-void.swift │ │ ├── run-call-protocolextension_instance-void-to-int64.sil │ │ ├── run-call-protocolwitness_instance-void-to-int64.sil │ │ ├── run-call-resilient-classinstance-void-to-void.sil │ │ ├── run-call-resilient-protocolinstance-void-to-void.swift │ │ ├── run-call-struct-instance_generic-mutating-generic_1-to-generic_1.swift │ │ ├── run-call-struct_five_bools-to-void.sil │ │ ├── run-call-structinstance-int64-to-void.sil │ │ ├── run-call-void-throws-to-int-throwing.sil │ │ ├── run-call-void-throws-to-int-throwing_call-async-nothrow_call-sync-throw.sil │ │ ├── run-call-void-throws-to-int-throwing_call-async-throw.sil │ │ ├── run-call-void-throws-to-int-throwing_call-sync-nothrow_call-async-throw.sil │ │ ├── run-call-void-throws-to-int-throwing_call-sync-throw.sil │ │ ├── run-call-void-to-existential.sil │ │ ├── run-call-void-to-int64-and-int64.sil │ │ ├── run-call-void-to-int64.swift │ │ ├── run-call-void-to-struct_large.sil │ │ ├── run-call_generic-protocolwitness_instance-generic-to-int64-and-generic.sil │ │ ├── run-call_generic-protocolwitness_instance-void-to-int64.sil │ │ ├── run-convertfunction-int64-to-void.sil │ │ ├── run-partialapply-capture-class-to-void.sil │ │ ├── run-partialapply-capture-classinstance-to-void.sil │ │ ├── run-partialapply-capture-generic_conformer-and-generic-to-void.sil │ │ ├── run-partialapply-capture-inout-generic-and-in-generic-to-generic.sil │ │ ├── run-partialapply-capture-int64-int64-throws-to-int64.sil │ │ ├── run-partialapply-capture-int64-int64-to-int64.sil │ │ ├── run-partialapply-capture-int64-to-generic.sil │ │ ├── run-partialapply-capture-struct_classinstance_classinstance-and-int64-to-int64.sil │ │ ├── run-partialapply-capture-structgeneric_classinstance_to_struct_and_error.sil │ │ ├── run-partialapply-capture-structgeneric_polymorphic_constrained-to-void.sil │ │ ├── run-partialapply-capture-type_structgeneric_polymorphic_constrained-to-void.sil │ │ ├── run-partialapply-capture-type_thin-and-classinstance-to-void.sil │ │ ├── run-structinstance_generic-void-to-void-constrained.swift │ │ ├── run-switch-executor.swift │ │ ├── run-thintothick-int64-to-void.sil │ │ ├── throwing.swift │ │ ├── unreachable.swift │ │ └── weak_availability.swift │ ├── async_dynamic_replacement.swift │ ├── async_frame_entry_return_metadata.swift │ ├── async_frame_pointer_all.swift │ ├── async_let_back_deploy_workaround.swift │ ├── async_wasm.swift │ ├── atomic_bool.swift │ ├── autolink-coff-c-pragma.swift │ ├── autolink-coff-force-link.swift │ ├── autolink-coff-x86.swift │ ├── autolink-coff.swift │ ├── autolink-force-link.swift │ ├── autolink-psei.swift │ ├── autolink-runtime-compatibility-arm64-maccatalyst.swift │ ├── autolink-runtime-compatibility-arm64-macos.swift │ ├── autolink-runtime-compatibility-arm64e.swift │ ├── autolink-runtime-compatibility.swift │ ├── autolink_elf.swift │ ├── autolink_merge_from_clangimporter.swift │ ├── autorelease.sil │ ├── autorelease_optimized_aarch64.sil │ ├── autorelease_optimized_armv7.sil │ ├── autorelease_optimized_x86_64.sil │ ├── availability.swift │ ├── availability_custom_domains.swift │ ├── availability_custom_domains_clang.swift │ ├── availability_custom_domains_maccatalyst_zippered.swift │ ├── availability_ios.swift │ ├── availability_maccatalyst.swift │ ├── availability_maccatalyst_zippered.swift │ ├── availability_version_check_maccatalyst.sil │ ├── back_deployed_Onone.swift │ ├── back_deployed_Onone_transparent.swift │ ├── backward_deploy_nominal.swift │ ├── backward_deploy_nonisolated_nonsending_function_type.swift │ ├── backward_deploy_span.swift │ ├── batchmode_ast_errors.swift │ ├── big_types.sil │ ├── big_types_corner_cases.sil │ ├── big_types_corner_cases.swift │ ├── big_types_corner_cases_as_library.swift │ ├── big_types_corner_cases_tiny.swift │ ├── big_types_generic.swift │ ├── big_types_tests.sil │ ├── bind_element_archetype.swift │ ├── bitcast.sil │ ├── bitcast_different_size.sil │ ├── bitcast_specialization.swift │ ├── bitwise-copyable-derived-loadRaw.swift │ ├── bitwise-copyable-loadRaw.swift │ ├── bitwise_copyable.swift │ ├── bitwise_copyable_onone.swift │ ├── bitwise_copyable_resilient.swift │ ├── boxed_existential.sil │ ├── bridge_object_arm64.sil │ ├── bridge_object_armv7.sil │ ├── bridge_object_x86_64.sil │ ├── builtin_conflict.sil │ ├── builtin_freeze.swift │ ├── builtin_isConcrete.sil │ ├── builtin_math.swift │ ├── builtin_pack_length.swift │ ├── builtin_vector.sil │ ├── builtin_vector_fixed_array.sil │ ├── builtin_word.sil │ ├── builtins.swift │ ├── builtins_objc.swift │ ├── c_function_pointer.sil │ ├── c_functions.swift │ ├── c_functions_error.swift │ ├── c_globals.swift │ ├── c_layout.sil │ ├── casts.sil │ ├── cdecl_implementation.swift │ ├── cf.sil │ ├── cf_members.sil │ ├── cf_objc_retainAutoreleasedReturnValue.swift │ ├── cf_objc_retainAutoreleasedReturnValue2.swift │ ├── clang_empty_type.swift │ ├── clang_inline.swift │ ├── clang_inline_opt.swift │ ├── clang_inline_reverse.swift │ ├── clang_string_enum.swift │ ├── class.sil │ ├── class_bounded_generics.swift │ ├── class_constraint.sil │ ├── class_field_other_module.swift │ ├── class_forbid_objc_assoc_objects.swift │ ├── class_is_module.swift │ ├── class_isa_pointers.sil │ ├── class_isa_pointers_armv7k_watchos.sil │ ├── class_metadata.swift │ ├── class_resilience.sil │ ├── class_resilience.swift │ ├── class_resilience_dynamic_replacement.swift │ ├── class_resilience_objc.swift │ ├── class_resilience_objc_armv7k.swift │ ├── class_resilience_thunks.swift │ ├── class_stack_alloc.sil │ ├── class_update_callback_with_fixed_layout.sil │ ├── class_update_callback_with_stub.swift │ ├── class_update_callback_without_fixed_layout.sil │ ├── class_update_callback_without_fixed_layout_stable_abi.sil │ ├── class_with_stub_initializers.swift │ ├── closure.swift │ ├── cold_split.swift │ ├── collocate_metadata_functions.swift │ ├── comdat.swift │ ├── concrete_inherits_generic_base.swift │ ├── condfail.sil │ ├── condfail_message.swift │ ├── conditional-dead-strip-exec.swift │ ├── conditional-dead-strip-ir.swift │ ├── conditional-dead-strip-objc-ir.swift │ ├── conditional-dead-strip-reflection.swift │ ├── conditional_conformance_concretized_conformance_requirement.swift │ ├── conditional_conformance_typemetadata.swift │ ├── conditional_conformances.swift │ ├── conditional_conformances_class_with_defaulted_method.swift │ ├── conditional_conformances_future.swift │ ├── conditional_conformances_gettypemetdatabyname.swift │ ├── conditional_pack_requirements.swift │ ├── conformance_access_path.swift │ ├── conformance_multifile.swift │ ├── conformance_path_with_concrete_steps.swift │ ├── conformance_resilience.swift │ ├── constant_struct_with_padding.sil │ ├── context_descriptor_cross_file_reference.swift │ ├── coroutine_accessors.swift │ ├── coroutine_accessors_backdeploy_async_56.swift │ ├── coroutine_accessors_backdeploy_async_57.swift │ ├── coroutine_accessors_popless.swift │ ├── cx16.swift │ ├── dead_method.swift │ ├── debug_fragment_merge.sil │ ├── debug_poison.swift │ ├── debug_scope.sil │ ├── debug_step.sil │ ├── decls.swift │ ├── default_function_ir_attributes.swift │ ├── default_override.sil │ ├── dependent-library.swift │ ├── dependent_generic_base_class_constraint.swift │ ├── dependent_reabstraction.swift │ ├── deserialize-clang-importer-witness-tables.swift │ ├── disable-instantiation-cache-exec.swift │ ├── disable-instantiation-cache.swift │ ├── disable-llvm-optzns.swift │ ├── distributed_actor.swift │ ├── distributed_func_indirect_in_parameter.swift │ ├── dllexport.swift │ ├── dllimport.swift │ ├── dynamic_cast.sil │ ├── dynamic_cast_functions.swift │ ├── dynamic_init.sil │ ├── dynamic_lookup.sil │ ├── dynamic_replaceable.sil │ ├── dynamic_replaceable_coroutine.swift │ ├── dynamic_replaceable_opaque_return.swift │ ├── dynamic_replaceable_opaque_return_type_parameter.swift │ ├── dynamic_self.sil │ ├── dynamic_self_cast.swift │ ├── dynamic_self_metadata.swift │ ├── dynamic_self_metadata_future.swift │ ├── eager-class-initialization-stable-abi.swift │ ├── eager-class-initialization.swift │ ├── emit-singleton-metadata-pointer.swift │ ├── empty-noncopyable-with-deinit.swift │ ├── empty_array.sil │ ├── empty_enum.swift │ ├── empty_objc_ivar.swift │ ├── emulated-tls.swift │ ├── entrypoint-section-run-main_swift.cpp │ ├── entrypoint-section-run.cpp │ ├── enum.sil │ ├── enum_32_bit.sil │ ├── enum_copy_init_with_take_memcpy.swift │ ├── enum_derived.swift │ ├── enum_dynamic_multi_payload.sil │ ├── enum_empty_payloads.sil │ ├── enum_function.sil │ ├── enum_function_payload.swift │ ├── enum_future.sil │ ├── enum_large.swift │ ├── enum_objc.sil │ ├── enum_pack.sil │ ├── enum_resilience.swift │ ├── enum_single_payload_forward_to_payload.swift │ ├── enum_singleton.swift │ ├── enum_spare_bits.sil │ ├── enum_switch_singleton_enum_in_optional.sil │ ├── enum_top_bits_reserved.sil │ ├── enum_value_semantics.sil │ ├── enum_value_semantics_future.sil │ ├── enum_value_semantics_special_cases.sil │ ├── enum_value_semantics_special_cases_objc.sil │ ├── error_self_conformance.sil │ ├── errors.sil │ ├── errors_optimized.sil │ ├── exact_self_class_metadata_peephole.swift │ ├── exactcast.sil │ ├── exactcast2.sil │ ├── exclusivity.sil │ ├── existential-bitwise-borrowability.swift │ ├── existential_metatypes.sil │ ├── existential_shape_metadata.swift │ ├── existential_shape_metadata_noncopyable.swift │ ├── existentials.sil │ ├── existentials_objc.sil │ ├── existentials_opaque_boxed.sil │ ├── expressions.swift │ ├── extended_existential_metadata.swift │ ├── extended_existential_metadata_weak.swift │ ├── extension_conformance_anyobject_conformance.swift │ ├── extension_type_metadata_linking.swift │ ├── extern_c.swift │ ├── extern_c_abitypes.swift │ ├── fixed-noncopyable-with-deinit.swift │ ├── fixed_class_initialization.swift │ ├── fixed_layout_class.swift │ ├── fixed_size_buffer_peepholes.sil │ ├── fixlifetime.sil │ ├── float16_macos.swift │ ├── fnptr.swift │ ├── force_public_metadata_accessors.swift │ ├── foreign_class_extension.swift │ ├── foreign_type_metadata.swift │ ├── foreign_types.sil │ ├── foreign_types_future.sil │ ├── framepointer.sil │ ├── framepointer_arm64.sil │ ├── frozen_protocols.swift │ ├── fulfillment.sil │ ├── function-target-features.swift │ ├── function_param_convention.sil │ ├── function_types.sil │ ├── generic_casts.swift │ ├── generic_class_anyobject.swift │ ├── generic_class_rodata_list.swift │ ├── generic_classes.sil │ ├── generic_classes_objc.sil │ ├── generic_enums.swift │ ├── generic_metadata_fixed_known_vwtable.swift │ ├── generic_metatypes.swift │ ├── generic_metatypes_future.swift │ ├── generic_requirement_objc.sil │ ├── generic_structs.sil │ ├── generic_structs.swift │ ├── generic_structs_future.sil │ ├── generic_ternary.swift │ ├── generic_tuples.swift │ ├── generic_types.swift │ ├── generic_vtable.swift │ ├── generic_wt_linkage.sil │ ├── global_actor_function_types.sil │ ├── global_actor_function_types_backdeploy.sil │ ├── global_resilience.sil │ ├── globals.swift │ ├── has_symbol.swift │ ├── has_symbol_async.swift │ ├── has_symbol_clang.swift │ ├── has_symbol_objc.swift │ ├── hermetic-seal-exec.swift │ ├── huge_c_type.swift │ ├── implicit_some_a.swift │ ├── imported_clang_type_metadata_is_local.swift │ ├── indexing.sil │ ├── indirect_argument.sil │ ├── indirect_enum.sil │ ├── indirect_return.swift │ ├── infinite_archetype.swift │ ├── init_accessor_dynamic_self.swift │ ├── inout_noalias.sil │ ├── inout_noalias.swift │ ├── integer-comparison.swift │ ├── integer_conversion.swift │ ├── integer_literal.sil │ ├── invalid_alignment.swift │ ├── invariant_load.sil │ ├── isolated_any.sil │ ├── isolated_any_metadata.sil │ ├── isolated_conformance.swift │ ├── ivar_destroyer.sil │ ├── jit-debugging.swift │ ├── jit_metadata_strategy.swift │ ├── jit_metadata_table.swift │ ├── keypath.swift │ ├── keypath_accessor.sil │ ├── keypath_objc_protocol_extension.swift │ ├── keypath_protocol_extension.swift │ ├── keypath_subscript.swift │ ├── keypath_witness_overrides.swift │ ├── keypaths.sil │ ├── keypaths_c_types.swift │ ├── keypaths_external.sil │ ├── keypaths_objc.sil │ ├── large_argument_c.sil │ ├── large_argument_result_c.swift │ ├── large_argument_result_c_x86_64.swift │ ├── large_union.swift │ ├── layout_string_union_types.swift │ ├── layout_string_witnesses_block_list.swift │ ├── layout_string_witnesses_noncopyable.swift │ ├── layout_string_witnesses_objc_existentials.swift │ ├── lazy-root-conformance.swift │ ├── lazy_conformances.swift │ ├── lazy_field_metadata.swift │ ├── lazy_globals.swift │ ├── lazy_metadata.swift │ ├── lazy_metadata_no_reflection.swift │ ├── lazy_metadata_with-g.swift │ ├── lazy_multi_file.swift │ ├── lazy_opaque_result_type.swift │ ├── lifetime.sil │ ├── linker_options_objc.swift │ ├── linker_set_low_level.swift │ ├── linker_set_low_level_exec.swift │ ├── lit.local.cfg │ ├── literals.sil │ ├── loadable_by_address.sil │ ├── loadable_by_address.swift │ ├── loadable_by_address_address_assignment.swift │ ├── loadable_by_address_issue72363.swift │ ├── loadable_by_address_issue73018.sil │ ├── loadable_by_address_objc_method.swift │ ├── loadable_by_address_reg2mem.sil │ ├── loadable_by_address_reg2mem_fixed_array.sil │ ├── loadable_by_address_subst_function_type_return.swift │ ├── local_extern.swift │ ├── local_types.swift │ ├── lowered_optional_self_metadata.sil │ ├── lto_autolink.swift │ ├── lto_autolink_windows.swift │ ├── macosx-sdk-version.swift │ ├── macosx-variant-sdk-version.swift │ ├── mangle-anonclosure.swift │ ├── mangle-opaque-return-type.swift │ ├── mangle-typealiases.swift │ ├── mangling_inverse_generics_evolution.swift │ ├── marker_protocol.swift │ ├── marker_protocol_backdeploy.swift │ ├── meta_meta_type.swift │ ├── metadata.swift │ ├── metadata_dominance.swift │ ├── metadata_lookup_generic_objc.sil │ ├── metatype.sil │ ├── metatype_casts.sil │ ├── method_linkage.swift │ ├── minimal_metadata.sil │ ├── mixed_mode_class_with_unimportable_fields.sil │ ├── mixed_mode_class_with_unimportable_fields.swift │ ├── mixed_objc_native_protocol_constraints.swift │ ├── modifyaccessor.swift │ ├── module_abi_name.swift │ ├── module_hash.swift │ ├── move_value.sil │ ├── moveonly_deinit.sil │ ├── moveonly_deinits.swift │ ├── moveonly_enum_deinits.swift │ ├── moveonly_split_module_source_deinit.swift │ ├── moveonly_split_module_source_deinit_library_evolution.swift │ ├── moveonly_value_functions.sil │ ├── moveonly_value_functions.swift │ ├── moveonly_value_functions_onone.swift │ ├── multi_file_resilience.swift │ ├── multi_module_resilience.swift │ ├── multi_payload_shifting.swift │ ├── multithread_keypaths.swift │ ├── multithread_module.swift │ ├── multithread_resilience.swift │ ├── nested_generics.swift │ ├── nested_imported_type_context_descriptor.swift │ ├── nested_private_type_context_descriptor.swift │ ├── nested_types.sil │ ├── newtype.swift │ ├── noinline.swift │ ├── nominal-type-section.swift │ ├── non-copyable-class-mangling.swift │ ├── non_fixed_return.swift │ ├── nonatomic_reference_counting.sil │ ├── noncopyable_field_descriptors.swift │ ├── noncopyable_metadata_requests.swift │ ├── noncopyable_private.swift │ ├── nondominant.sil │ ├── noreturn.swift │ ├── objc.swift │ ├── objc_alloc.sil │ ├── objc_arc_contract.swift │ ├── objc_async_metadata.swift │ ├── objc_attr_NSManaged.sil │ ├── objc_block.sil │ ├── objc_block_consumed.swift │ ├── objc_block_storage.sil │ ├── objc_bridge.swift │ ├── objc_bridged_generic_conformance.swift │ ├── objc_casts.sil │ ├── objc_class_allocator.swift │ ├── objc_class_empty_fields.swift │ ├── objc_class_export.swift │ ├── objc_class_in_storage_decls.swift │ ├── objc_class_property.swift │ ├── objc_class_rodata_const.swift │ ├── objc_dealloc.sil │ ├── objc_dependent_type_closure_argument.swift │ ├── objc_direct.swift │ ├── objc_enum.swift │ ├── objc_enum_multi_file.swift │ ├── objc_errors.sil │ ├── objc_extensions.swift │ ├── objc_extensions_jit.swift │ ├── objc_factory_method.sil │ ├── objc_function_merge.swift │ ├── objc_generic_class_convention.sil │ ├── objc_generic_class_metadata.sil │ ├── objc_generic_class_stub.swift │ ├── objc_generic_protocol_conformance.swift │ ├── objc_globals.swift │ ├── objc_implementation.m │ ├── objc_implementation.swift │ ├── objc_implementation_deployment_target_resilience.swift │ ├── objc_implicit_with.sil │ ├── objc_int_encoding.sil │ ├── objc_layout_multifile.swift │ ├── objc_local.swift │ ├── objc_methods.swift │ ├── objc_ns_enum.swift │ ├── objc_object_getClass.swift │ ├── objc_partial_apply_forwarder.swift │ ├── objc_pointers.swift │ ├── objc_properties.swift │ ├── objc_properties_imported.swift │ ├── objc_properties_ios.swift │ ├── objc_properties_jit.swift │ ├── objc_property_attrs.swift │ ├── objc_protocol_conversion.sil │ ├── objc_protocol_extended_method_types.swift │ ├── objc_protocol_multi_file.swift │ ├── objc_protocol_sendable.swift │ ├── objc_protocol_symbolic_reference.swift │ ├── objc_protocol_vars.sil │ ├── objc_protocols.swift │ ├── objc_protocols_jit.swift │ ├── objc_remapped_inits.swift │ ├── objc_retainAutoreleasedReturnValue.swift │ ├── objc_runtime_name_attr.swift │ ├── objc_runtime_name_clang_attr.swift │ ├── objc_runtime_name_local_class_opaque_type.swift │ ├── objc_runtime_visible.sil │ ├── objc_runtime_visible_conformance.swift │ ├── objc_selector.sil │ ├── objc_shared_imported_decl.sil │ ├── objc_simd.sil │ ├── objc_structs.swift │ ├── objc_subclass.swift │ ├── objc_subscripts.swift │ ├── objc_super.swift │ ├── objc_type_encoding.swift │ ├── objc_typeof.swift │ ├── objc_types_as_member.sil │ ├── object_type.swift │ ├── opaque_result_alwaysInlineIntoClient.swift │ ├── opaque_result_type.swift │ ├── opaque_result_type_access_path.swift │ ├── opaque_result_type_associated_type_conformance_path.swift │ ├── opaque_result_type_availability.swift │ ├── opaque_result_type_debug.swift │ ├── opaque_result_type_global.swift │ ├── opaque_result_type_internal.swift │ ├── opaque_result_type_linkage.swift │ ├── opaque_result_type_metadata_peephole.swift │ ├── opaque_result_type_private.swift │ ├── opaque_result_type_private_typemetadata.swift │ ├── opaque_result_type_private_underlying.swift │ ├── opaque_result_type_substitution.swift │ ├── opaque_result_type_substitution_2.swift │ ├── opaque_result_with_conditional_availability.swift │ ├── opaque_storage_type_info.swift │ ├── opaque_values_irgen.sil │ ├── open_boxed_existential.sil │ ├── optimize_for_size.sil │ ├── optimized_offset_of_empty.swift │ ├── optional_metatype.sil │ ├── optmode.swift │ ├── ordering_aarch64.sil │ ├── ordering_arm.sil │ ├── ordering_x86.sil │ ├── original-defined-attr-linker-directives-fail.swift │ ├── original-defined-attr-linker-hide-ios.swift │ ├── original-defined-attr-linker-hide.swift │ ├── original-defined-attr.swift │ ├── oslog_literals.sil │ ├── osx-targets.swift │ ├── outlined_copy_addr.sil │ ├── outlined_copy_addr.swift │ ├── outlined_copy_addr_data.swift │ ├── pack_archetype_canonicalization.swift │ ├── pack_marker_insertion.swift │ ├── pack_metadata_dealloc.swift │ ├── pack_metadata_marker_inserter.sil │ ├── pack_metadata_marker_inserter_no_ir.sil │ ├── pack_metadata_marker_inserter_onone.swift │ ├── package-cmo-global-accessor.swift │ ├── package-cmo-serialize-witness-thunk.swift │ ├── package_bypass_resilience_class.swift │ ├── package_resilience.swift │ ├── package_resilient_as_public_by_default.swift │ ├── parameterized_existential_with_element_archetype.swift │ ├── parameterized_existential_with_opened_archetype.swift │ ├── partial_apply.sil │ ├── partial_apply_coro.sil │ ├── partial_apply_crash.swift │ ├── partial_apply_forwarder.sil │ ├── partial_apply_generic.swift │ ├── partial_apply_objc.sil │ ├── partial_apply_run_generic_method1.sil │ ├── pic.swift │ ├── playground.swift │ ├── polymorphic_builtins.swift │ ├── pre_specialize.swift │ ├── preserve_exclusivity.swift │ ├── preserve_for_debugger.swift │ ├── prespecialized-metadata │ │ ├── Inputs │ │ │ ├── class-open-0argument.swift │ │ │ ├── consume-logging-metadata-value.swift │ │ │ ├── enum-extra-data-fields.swift │ │ │ ├── enum-public-nonfrozen-1argument.swift │ │ │ ├── extraDataFields.cpp │ │ │ ├── extraDataFields.h │ │ │ ├── isPrespecialized.cpp │ │ │ ├── isPrespecialized.h │ │ │ ├── main.swift │ │ │ ├── protocol-public-empty.swift │ │ │ ├── struct-extra-data-fields.swift │ │ │ ├── struct-nonfrozen-1argument.swift │ │ │ ├── struct-public-frozen-0argument.swift │ │ │ ├── struct-public-frozen-1argument.swift │ │ │ ├── struct-public-nonfrozen-0argument-conformance-empty.swift │ │ │ ├── struct-public-nonfrozen-0argument.swift │ │ │ ├── struct-public-nonfrozen-1argument-1constraint.swift │ │ │ ├── struct-public-nonfrozen-1argument.swift │ │ │ └── struct-public-nonfrozen-2argument.swift │ │ ├── class-class-flags-run.swift │ │ ├── class-fileprivate-2argument-1_distinct_use-1st_argument_generic_class-2nd_argument_distinct_generic_class.swift │ │ ├── class-fileprivate-2argument-1_distinct_use-1st_argument_generic_class-2nd_argument_same_generic_class_different_value.swift │ │ ├── class-fileprivate-2argument-1_distinct_use-1st_argument_generic_class-2nd_argument_same_generic_class_same_value.swift │ │ ├── class-fileprivate-inmodule-1arg-2ancs-1distinct_use-1st_anc_gen-1arg-1st_arg_con_int-2nd_anc_gen-1st-arg_con_double.swift │ │ ├── class-fileprivate-inmodule-1arg-2ancs-1distinct_use-1st_anc_gen-1arg-1st_arg_con_int-2nd_anc_gen-1st-arg_subclass_arg.swift │ │ ├── class-fileprivate-inmodule-1arg-2ancs-1distinct_use-1st_anc_gen-1arg-1st_arg_subclass_arg-2nd_anc_gen-1st-arg_con_int.swift │ │ ├── class-fileprivate-inmodule-1arg-2ancs-1distinct_use-1st_anc_gen-1arg-1st_arg_subcls_arg-2nd_anc_gen-1st-arg_subcls_arg.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_generic-1argument-1st_argument_constant_int.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_generic-1argument-1st_argument_subclass_argument.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_generic-1argument-1st_argument_superclass.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_nongeneric-external-nonresilient.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_nongeneric-external-resilient.swift │ │ ├── class-fileprivate-inmodule-1argument-1ancestor-1distinct_use-1st_ancestor_nongeneric-fileprivate.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use-1st_argument_generic_class-1argument.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_class.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_function.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_generic_class.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_generic_class_specialized_at_generic_class.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_generic_enum.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_generic_struct.swift │ │ ├── class-fileprivate-inmodule-1argument-1distinct_use_tuple.swift │ │ ├── class-fileprivate-inmodule-1argument-2ancestor-1du-1st_ancestor_generic-fileprivate-2nd_ancestor_nongeneric.swift │ │ ├── class-fileprivate-inmodule-1argument-2ancestor-1du-1st_ancestor_nongeneric-fileprivate-2nd_ancestor_generic.swift │ │ ├── class-inmodule-0argument-within-class-1argument-1distinct_use.swift │ │ ├── class-inmodule-1argument-metatype-run.swift │ │ ├── class-inmodule-1argument-run.swift │ │ ├── class-inmodule-2argument-1super-2argument-run.swift │ │ ├── class-with-differently-mangled-method-list.swift │ │ ├── enum-extradata-no_payload_size-no_trailing_flags.swift │ │ ├── enum-extradata-no_payload_size-trailing_flags.swift │ │ ├── enum-extradata-payload_size-no_trailing_flags.swift │ │ ├── enum-extradata-payload_size-trailing_flags.swift │ │ ├── enum-extradata-run.swift │ │ ├── enum-fileprivate-inmodule-1argument-1distinct_use.swift │ │ ├── enum-inmodule-0argument-within-class-1argument-1distinct_use.swift │ │ ├── enum-inmodule-1argument-0distinct_use.swift │ │ ├── enum-inmodule-1argument-1conformance-1distinct_use.swift │ │ ├── enum-inmodule-1argument-1conformance-external_nonresilient-1distinct_use.swift │ │ ├── enum-inmodule-1argument-1conformance-external_resilient-1distinct_use.swift │ │ ├── enum-inmodule-1argument-1conformance-public-1distinct_use.swift │ │ ├── enum-inmodule-1argument-1conformance-stdlib_equatable-1distinct_use.swift │ │ ├── enum-inmodule-1argument-1distinct_generic_use.swift │ │ ├── enum-inmodule-1argument-1distinct_use.swift │ │ ├── enum-inmodule-1argument-within-class-1argument-1distinct_use.swift │ │ ├── enum-inmodule-1argument-within-enum-1argument-1distinct_use.swift │ │ ├── enum-inmodule-1argument-within-struct-1argument-1distinct_use.swift │ │ ├── enum-inmodule-2argument-1distinct_use.swift │ │ ├── enum-inmodule-3argument-1distinct_use.swift │ │ ├── enum-inmodule-4argument-1distinct_use.swift │ │ ├── enum-inmodule-5argument-1distinct_use.swift │ │ ├── enum-inmodule-evolution-1argument-1distinct_use-external_resilient-frozen.swift │ │ ├── enum-inmodule-evolution-1argument-1distinct_use-external_resilient-nonfrozen.swift │ │ ├── enum-inmodule-evolution-1argument-1distinct_use-payload_size.swift │ │ ├── enum-outmodule-1argument-1distinct_use-struct-inmodule.swift │ │ ├── enum-trailing-flags-run.swift │ │ ├── mpenum-ptrauth-vw.swift │ │ ├── struct-extradata-field_offsets-no_trailing_flags.swift │ │ ├── struct-extradata-field_offsets-trailing_flags.swift │ │ ├── struct-extradata-no_field_offsets-no_trailing_flags.swift │ │ ├── struct-extradata-no_field_offsets-trailing_flags.swift │ │ ├── struct-extradata-run.swift │ │ ├── struct-fileprivate-inmodule-1argument-1distinct_use.swift │ │ ├── struct-inmodule-0argument-within-class-1argument-1distinct_use.swift │ │ ├── struct-inmodule-0argument.swift │ │ ├── struct-inmodule-1argument-0distinct_use.swift │ │ ├── struct-inmodule-1argument-1conformance-1distinct_use.swift │ │ ├── struct-inmodule-1argument-1conformance-stdlib_equatable-1distinct_use.swift │ │ ├── struct-inmodule-1argument-1distinct_generic_use.swift │ │ ├── struct-inmodule-1argument-1distinct_use.swift │ │ ├── struct-inmodule-1argument-2conformance-1distinct_use.swift │ │ ├── struct-inmodule-1argument-2distinct_use.swift │ │ ├── struct-inmodule-1argument-3conformance-1distinct_use.swift │ │ ├── struct-inmodule-1argument-3distinct_use.swift │ │ ├── struct-inmodule-1argument-4conformance-1distinct_use.swift │ │ ├── struct-inmodule-1argument-4distinct_use.swift │ │ ├── struct-inmodule-1argument-5conformance-1distinct_use.swift │ │ ├── struct-inmodule-1argument-5distinct_use.swift │ │ ├── struct-inmodule-1argument-clang_node-1distinct_use.swift │ │ ├── struct-inmodule-1argument-within-class-1argument-1distinct_use.swift │ │ ├── struct-inmodule-1argument-within-enum-1argument-1distinct_use.swift │ │ ├── struct-inmodule-1argument-within-struct-1argument-1distinct_use.swift │ │ ├── struct-inmodule-1argument-within-struct-2argument-constrained_extension-equal_arguments-1distinct_use.swift │ │ ├── struct-inmodule-2argument-0distinct_use.swift │ │ ├── struct-inmodule-2argument-1distinct_use.swift │ │ ├── struct-inmodule-2argument-2distinct_use.swift │ │ ├── struct-inmodule-2argument-3distinct_use.swift │ │ ├── struct-inmodule-2argument-4distinct_use.swift │ │ ├── struct-inmodule-2argument-5distinct_use.swift │ │ ├── struct-inmodule-2argument-within-class-1argument-1distinct_use.swift │ │ ├── struct-inmodule-otherfile-1argument-run.swift │ │ ├── struct-multi-conformance.swift │ │ ├── struct-outmodule-1argument-1distinct_use-struct-inmodule.swift │ │ ├── struct-outmodule-1argument-1distinct_use-struct-outmodule-othermodule.swift │ │ ├── struct-outmodule-1argument-1distinct_use-struct-outmodule-samemodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_protocol_inmodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_protocol_outmodule_othermodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_protocol_outmodule_samemodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_struct_inmodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_struct_outmodule_othermodule.swift │ │ ├── struct-outmodule-2argument-1du-1arg_struct_outmodule_samemodule-2arg_struct_outmodule_samemodule.swift │ │ ├── struct-outmodule-frozen-1argument-1distinct_use-struct-inmodule.swift │ │ ├── struct-outmodule-frozen-1argument-1distinct_use-struct-outmodule-frozen-othermodule.swift │ │ ├── struct-outmodule-frozen-1argument-1distinct_use-struct-outmodule-frozen-samemodule.swift │ │ ├── struct-outmodule-frozen-1argument-1distinct_use-struct-outmodule-resilient-othermodule.swift │ │ ├── struct-outmodule-frozen-1argument-1distinct_use-struct-outmodule-resilient-samemodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-inmodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-outmodule-frozen-othermodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-outmodule-frozen-samemodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-outmodule-othermodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-outmodule-resilient-othermodule.swift │ │ ├── struct-outmodule-resilient-1argument-1distinct_use-struct-outmodule-resilient-samemodule.swift │ │ ├── struct-outmodule-run.swift │ │ ├── struct-public-inmodule-1argument-1distinct_use.swift │ │ └── struct-trailing-flags-run.swift │ ├── profiling_marker_thunks.swift │ ├── property_descriptor.sil │ ├── protocol_accessor_multifile.swift │ ├── protocol_conformance_records.swift │ ├── protocol_conformance_records_objc.swift │ ├── protocol_extensions.sil │ ├── protocol_extensions_constrain.swift │ ├── protocol_metadata.swift │ ├── protocol_resilience.sil │ ├── protocol_resilience_descriptors.swift │ ├── protocol_resilience_sendable.swift │ ├── protocol_resilience_thunks.swift │ ├── protocol_synthesized.swift │ ├── protocol_with_superclass.sil │ ├── protocol_with_superclass_where_clause.sil │ ├── ptrauth-blocks.sil │ ├── ptrauth-builtins.sil │ ├── ptrauth-class-methods.sil │ ├── ptrauth-classes.sil │ ├── ptrauth-dynamic_replaceable.sil │ ├── ptrauth-dynamic_replaceable_opaque_return.swift │ ├── ptrauth-foreign.sil │ ├── ptrauth-functions.sil │ ├── ptrauth-global.swift │ ├── ptrauth-objc-partial-apply.sil │ ├── ptrauth-objc.swift │ ├── ptrauth-partial-apply.sil │ ├── ptrauth-protocols.sil │ ├── ptrauth-resilient-classes.swift │ ├── ptrauth-runtime.sil │ ├── ptrauth-value-witnesses.sil │ ├── ptrauth_field_fptr_import.swift │ ├── ptrauth_generalized_accessors.swift │ ├── raw_layout.swift │ ├── raw_layout_multifile.swift │ ├── raw_layout_old.swift │ ├── rdar112792831.swift │ ├── rdar146123129.swift │ ├── rdar15304329.swift │ ├── readonly.sil │ ├── recursion_infinite_optimized.sil │ ├── reference_storage_extra_inhabitants.sil │ ├── referenced_global.swift │ ├── reflection-metadata-for-debugger-only.swift │ ├── reflection_metadata.swift │ ├── reflection_metadata_imported.swift │ ├── reflection_metadata_isolated_any.swift │ ├── reflection_metadata_let_var.swift │ ├── reflection_metadata_typed_throws.swift │ ├── related_entity.sil │ ├── relative_protocol_witness_table.swift │ ├── report_dead_method_call.swift │ ├── retroactive_conformance.swift │ ├── retroactive_conformance_path.swift │ ├── retroactive_conformance_path_2.swift │ ├── retrofitted-noncopyable-types-and-external-conformance-extensions.swift │ ├── round-trip-debug-types-typealias.swift │ ├── run-coroutine_accessors.swift │ ├── run_variadic_generics.sil │ ├── runtime-records-are-used.swift │ ├── runtime_calling_conventions.swift │ ├── same_type_constraints.swift │ ├── sanitize_coverage.swift │ ├── section.swift │ ├── section_asm.swift │ ├── section_bridging_header.swift │ ├── section_errors.swift │ ├── section_non_const.swift │ ├── section_structs.swift │ ├── section_structs_generic.swift │ ├── section_wasm.swift │ ├── select_enum.sil │ ├── select_enum_optimized.swift │ ├── select_enum_single_payload.sil │ ├── sensitive.sil │ ├── sensitive.swift │ ├── serialised-pwt-afp.swift │ ├── signature_conformances_multifile.swift │ ├── signature_conformances_multifile_future.swift │ ├── sil_generic_witness_methods.swift │ ├── sil_generic_witness_methods_objc.swift │ ├── sil_irgen_library.swift │ ├── sil_irgen_standalone.swift │ ├── sil_linkage.sil │ ├── sil_witness_methods.sil │ ├── sil_witness_tables.swift │ ├── sil_witness_tables_external_conformance.swift │ ├── sil_witness_tables_external_witnesstable.swift │ ├── sil_witness_tables_inherited_conformance.swift │ ├── silgen_name_non_const.swift │ ├── simple_partial_apply.sil │ ├── simple_partial_apply_or_not.swift │ ├── single-module-num-threads.swift │ ├── skip-function-bodies.swift │ ├── special_protocols.sil │ ├── stack_protector.swift │ ├── static-libclosure.swift │ ├── static-library.swift │ ├── static-serialization.swift │ ├── static-vtable-stubs.swift │ ├── static_initializer.sil │ ├── stdlib │ │ └── Mutex.swift │ ├── string_global_name.swift │ ├── struct_layout.sil │ ├── struct_resilience.swift │ ├── struct_with_resilient_type.swift │ ├── subclass.swift │ ├── subclass_existentials.sil │ ├── super.sil │ ├── superclass_constraint.swift │ ├── swift3-metadata-coff.swift │ ├── swift_async_extended_frame_info.swift │ ├── swift_async_extended_frame_info_watchos.swift │ ├── swift_native_objc_runtime_base.sil │ ├── symbolic_references.swift │ ├── synthesized_conformance.swift │ ├── synthesized_conformance_future.swift │ ├── tail_alloc.sil │ ├── tail_allocated_c_array.swift │ ├── temporary_allocation │ │ ├── async.swift │ │ ├── codegen.swift │ │ ├── codegen_very_large_allocation.swift │ │ ├── negative_alignment.swift │ │ ├── negative_size.sil │ │ ├── non_power2_alignment.swift │ │ └── size_too_large.swift │ ├── testing-enabled-resilient-super-class-external-module.swift │ ├── testing-enabled-resilient-super-class.swift │ ├── thinlto.swift │ ├── trap-function-clang.swift │ ├── trap-function.swift │ ├── trivial-property-descriptors.swift │ ├── tsan-attributes.swift │ ├── tsan_coroutines.swift │ ├── tsan_instrumentation.sil │ ├── tuple_conformances.swift │ ├── two_tag_enums.swift.gyb │ ├── type_layout.swift │ ├── type_layout_dumper_all.swift │ ├── type_layout_dumper_fragile.swift │ ├── type_layout_dumper_resilient.swift │ ├── type_layout_objc.swift │ ├── type_layout_reference_storage.swift │ ├── type_layout_reference_storage_objc.swift │ ├── typed_boxes.sil │ ├── typed_throws.sil │ ├── typed_throws.swift │ ├── typed_throws_32_bit.swift │ ├── typed_throws_abi.swift │ ├── typed_throws_exec.swift │ ├── typed_throws_generic.swift │ ├── typed_throws_thunks.swift │ ├── typelayout_based_value_operation.sil │ ├── typelayout_based_value_witness.swift │ ├── unavailable_decl_optimization_complete.swift │ ├── unavailable_decl_optimization_complete_class.swift │ ├── unavailable_decl_optimization_complete_conformance.swift │ ├── unavailable_decl_optimization_complete_enum.swift │ ├── unavailable_decl_optimization_complete_nested_type.swift │ ├── unavailable_decl_optimization_complete_objc.swift │ ├── unavailable_decl_optimization_complete_opaque_type.swift │ ├── unavailable_decl_optimization_complete_struct.swift │ ├── unconditional_checked_cast.sil │ ├── undef.sil │ ├── unexploded-calls.swift │ ├── unknown_object.sil │ ├── unmanaged_objc_throw_func.swift │ ├── unowned.sil │ ├── unowned_objc.sil │ ├── unowned_store.sil │ ├── unused.sil │ ├── unusedtype.swift │ ├── used.swift │ ├── variadic_generic_captures.swift │ ├── variadic_generic_conditional_conformances.swift │ ├── variadic_generic_fulfillment.swift │ ├── variadic_generic_fulfillment_tuple.swift │ ├── variadic_generic_fulfillments.sil │ ├── variadic_generic_functions.sil │ ├── variadic_generic_functions.swift │ ├── variadic_generic_opaque.swift │ ├── variadic_generic_outlining.sil │ ├── variadic_generic_tuples.sil │ ├── variadic_generic_types.swift │ ├── variadic_generics.sil │ ├── variadic_vanishing_tuple.swift │ ├── vector_reduction.swift │ ├── virtual-function-elimination-exec.swift │ ├── virtual-function-elimination-generics-exec.swift │ ├── virtual-function-elimination-ir-thunks.swift │ ├── virtual-function-elimination-ir.swift │ ├── virtual-function-elimination-objc-interop-opt-out.swift │ ├── virtual-function-elimination-two-modules.swift │ ├── vtable.sil │ ├── vtable_multi_file.swift │ ├── vtable_non_overridden.sil │ ├── vtable_symbol_linkage.swift │ ├── wasm-absolute-func-ptr.swift │ ├── weak.sil │ ├── weakLinked.sil │ ├── weak_availability_opaque_result_type.swift │ ├── weak_class_protocol.sil │ ├── weak_import_associated_conformance_descriptor.swift │ ├── weak_import_availability.swift │ ├── weak_import_back_deployed_attr.swift │ ├── weak_import_clang.swift │ ├── weak_import_deployment_target.swift │ ├── weak_import_extension.swift │ ├── weak_import_native.sil │ ├── weak_import_native.swift │ ├── weak_import_native_hoist.swift │ ├── weak_import_opaque_result_type.swift │ ├── weak_value_witnesses.sil │ ├── weaklinked_import.swift │ ├── weaklinked_import_clang.swift │ ├── weaklinked_import_inlining.swift │ ├── weaklinked_import_inlining_clang.swift │ ├── weaklinked_import_peer_transitive.swift │ ├── weaklinked_import_peer_transitive_objc.swift │ ├── weaklinked_import_transitive.swift │ ├── windows-lazy-initialize-conformance.swift │ ├── windows-linking.swift │ ├── windows-transitive-static-linking.swift │ ├── witness-method-elimination-exec-relative.swift │ ├── witness-method-elimination-exec.swift │ ├── witness-method-elimination-ir-relative.swift │ ├── witness-method-elimination-ir-thunks.swift │ ├── witness-method-elimination-ir.swift │ ├── witness-method-elimination-two-modules.swift │ ├── witness_method.sil │ ├── witness_method_after_devirt.swift │ ├── witness_method_default.swift │ ├── witness_method_phi.sil │ ├── witness_table_indirect_conformances.swift │ ├── witness_table_multifile.swift │ ├── witness_table_objc_associated_type.swift │ ├── yield_once.sil │ ├── yield_once_big.sil │ ├── yield_once_biggish.sil │ ├── yield_once_enable_emit_type_malloc_coro_frame.sil │ ├── yield_once_indirect.sil │ ├── yield_result.sil │ ├── zero_size_types.swift │ └── zombies.swift ├── ImportResolution │ ├── Inputs │ │ ├── ClangModuleWithOverlay │ │ │ ├── ClangModuleWithOverlay.h │ │ │ └── module.modulemap │ │ ├── DeclsUsedWrongly.swift │ │ ├── TestableVersusIndirect1.swift │ │ ├── TestableVersusIndirect2.swift │ │ ├── TestableVersusIndirectImporter.swift │ │ ├── abcde.swift │ │ ├── aeiou.swift │ │ ├── ambiguous.swift │ │ ├── ambiguous_left.swift │ │ ├── ambiguous_right.swift │ │ ├── asdf.swift │ │ ├── letters.swift │ │ ├── overlay.swift │ │ ├── overload_boolFunctions.swift │ │ ├── overload_intFunctions.swift │ │ ├── overload_vars.swift │ │ └── sdf.swift │ ├── disable-implicit-concurrency-module-import.swift │ ├── import-command-line.swift │ ├── import-implementation-only.swift │ ├── import-multiple-command-line.swift │ ├── import-resolution-2.swift │ ├── import-resolution-3.swift │ ├── import-resolution-overload.swift │ ├── import-resolution-overload_swift4.swift │ ├── import-resolution-overload_swift5.swift │ ├── import-resolution.swift │ ├── import-specific-decl.swift │ ├── import-specific-fixits.swift │ ├── scoped_imports.swift │ └── testable-vs-indirect-import.swift ├── Index │ ├── Inputs │ │ ├── CrossImport │ │ │ ├── A.framework │ │ │ │ └── Modules │ │ │ │ │ ├── A.swiftcrossimport │ │ │ │ │ └── B.swiftoverlay │ │ │ │ │ └── A.swiftmodule │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ ├── B.framework │ │ │ │ └── Modules │ │ │ │ │ └── B.swiftmodule │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ ├── C.framework │ │ │ │ └── Modules │ │ │ │ │ └── C.swiftmodule │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ ├── _ABAdditions.framework │ │ │ │ └── Modules │ │ │ │ │ ├── _ABAdditions.swiftcrossimport │ │ │ │ │ └── C.swiftoverlay │ │ │ │ │ └── _ABAdditions.swiftmodule │ │ │ │ │ └── module-triple-here.swiftinterface │ │ │ └── __ABAdditionsCAdditions.framework │ │ │ │ └── Modules │ │ │ │ └── __ABAdditionsCAdditions.swiftmodule │ │ │ │ └── module-triple-here.swiftinterface │ │ ├── cross_language.m │ │ ├── cross_language_bridge_head.h │ │ ├── implementation-only-imports-helper.swift │ │ ├── imported_swift_module.swift │ │ └── my_system_overlay │ │ │ ├── module.modulemap │ │ │ ├── my_system_overlay.swift │ │ │ └── my_system_overlay_header.h │ ├── Store │ │ ├── Inputs │ │ │ ├── ClangModuleA.h │ │ │ ├── ClangModuleB.h │ │ │ ├── ClangModuleCSub1.h │ │ │ ├── ClangModuleCSub2.h │ │ │ ├── SwiftModuleA.swift │ │ │ ├── SwiftModuleB.swift │ │ │ ├── SwiftModuleC.swift │ │ │ ├── bridge-head.h │ │ │ ├── bridge-include.h │ │ │ ├── cross-file-extension-crash-other.swift │ │ │ └── module.modulemap │ │ ├── cross-file-extension-crash.swift │ │ ├── cross-import-overlay.swift │ │ ├── driver-include-locals.swift │ │ ├── driver-index.swift │ │ ├── driver-multiple-inputs.swift │ │ ├── dynamic-member-lookup-crash-1.swift │ │ ├── dynamic-member-lookup-crash.swift │ │ ├── ignore-system-clang-modules.swift │ │ ├── output-failure.swift │ │ ├── record-comments.swift │ │ ├── record-dependency.swift │ │ ├── record-empty.swift │ │ ├── record-hashing.swift │ │ ├── record-sourcefile.swift │ │ ├── record-systemmodule.swift │ │ ├── record-with-compile-error.swift │ │ ├── unit-custom-output-path-driver.swift │ │ ├── unit-custom-output-path.swift │ │ ├── unit-from-compile.swift │ │ ├── unit-multiple-sourcefiles-remapped.swift │ │ ├── unit-multiple-sourcefiles.swift │ │ ├── unit-one-file-multi-file-invocation.swift │ │ ├── unit-one-sourcefile-remapped.swift │ │ ├── unit-one-sourcefile.swift │ │ ├── unit-pcm-dependency-remapped.swift │ │ ├── unit-pcm-dependency.swift │ │ ├── unit-swiftmodule-dependency.swift │ │ ├── unit-system-source-file.swift │ │ └── unit-with-bridging-header.swift │ ├── async.swift │ ├── circular.swift │ ├── conformances.swift │ ├── cross_language.swift │ ├── enum_case_with_invalid_associated_type.swift │ ├── expressions.swift │ ├── implementation-only-imports.swift │ ├── index_ambiguous_type.swift │ ├── index_callasfunction.swift │ ├── index_collection_init.swift │ ├── index_comments.swift │ ├── index_cross_import.swift │ ├── index_curry_thunk.swift │ ├── index_curry_thunk_objc.swift │ ├── index_embedded.swift │ ├── index_expressible_by_literals.swift │ ├── index_generic_params.swift │ ├── index_global_actors.swift │ ├── index_implicit_conversion.swift │ ├── index_imported_objc.swift │ ├── index_keypath_member_lookup.swift │ ├── index_keypaths.swift │ ├── index_location_directive.swift │ ├── index_macros.swift │ ├── index_memberwise_init.swift │ ├── index_module.swift │ ├── index_module_accessors.swift │ ├── index_module_inheritance_access.swift │ ├── index_module_refs.swift │ ├── index_objc_dynamic_refs.swift │ ├── index_objc_impl.swift │ ├── index_only_sdk_system_modules.swift │ ├── index_private_type_receiver.swift │ ├── index_refs_to_synthesized_decls.swift │ ├── index_self.swift │ ├── index_shadow.swift │ ├── index_static_funcs.swift │ ├── index_swift_only_systemmodule.swift │ ├── index_system_module.swift │ ├── index_system_modules_swiftinterfaces.swift │ ├── invalid_code.swift │ ├── kinds.swift │ ├── kinds_objc.swift │ ├── local.swift │ ├── module-alias-indexing.swift │ ├── multifile.swift │ ├── no_index_blocklisted_system_module_ebm.swift │ ├── objc_conformances.swift │ ├── patterns.swift │ ├── property_wrappers.swift │ ├── rdar120012473.swift │ ├── rdar129065620.swift │ ├── result_builders.swift │ ├── roles-contained.swift │ ├── roles.swift │ └── skip-loaded-internal.swift ├── Inputs │ ├── MockPlatformRemapSDKConfig │ │ └── SDKSettings.json │ ├── ObjCBridging │ │ ├── Appliances.apinotes │ │ ├── Appliances.h │ │ ├── Appliances.m │ │ ├── Appliances.swift │ │ └── module.modulemap │ ├── ObjCOptionalRequirements.h │ ├── SmallStringTestUtilities.swift │ ├── Swiftskell.swift │ ├── clang-importer-sdk │ │ ├── System │ │ │ └── Library │ │ │ │ └── CoreServices │ │ │ │ └── SystemVersion.plist │ │ ├── frameworks │ │ │ └── Foundation.framework │ │ │ │ └── Headers │ │ │ │ └── Foundation.h │ │ ├── platform │ │ │ └── any │ │ │ │ └── usr │ │ │ │ └── include │ │ │ │ ├── bitfields.h │ │ │ │ ├── module.modulemap │ │ │ │ └── unions.h │ │ ├── swift-modules-concurrency-consuming-job-param │ │ │ └── _Concurrency.swift │ │ ├── swift-modules-concurrency-owned-job-param │ │ │ └── _Concurrency.swift │ │ ├── swift-modules-concurrency-typealias-struct-job │ │ │ └── _Concurrency.swift │ │ ├── swift-modules-concurrency-without-job │ │ │ └── _Concurrency.swift │ │ ├── swift-modules │ │ │ ├── AVFoundation.swift │ │ │ ├── AppKit.swift │ │ │ ├── CoreFoundation.swift │ │ │ ├── CoreGraphics.swift │ │ │ ├── Darwin.swift │ │ │ ├── Dispatch.swift │ │ │ ├── Foundation.swift │ │ │ ├── ObjectiveC.swift │ │ │ ├── Security.swift │ │ │ └── simd.swift │ │ └── usr │ │ │ ├── include │ │ │ ├── AVFoundation.h │ │ │ ├── AppKit.apinotes │ │ │ ├── AppKit.h │ │ │ ├── Authorization.h │ │ │ ├── CoreFoundation.h │ │ │ ├── CoreGraphics.apinotes │ │ │ ├── CoreGraphics.h │ │ │ ├── CoreMIDI.h │ │ │ ├── CoreMedia.h │ │ │ ├── CoreServices │ │ │ │ ├── CarbonCore │ │ │ │ │ ├── BackupCore.h │ │ │ │ │ └── Collections.h │ │ │ │ ├── LaunchServices │ │ │ │ │ └── LSInfo.h │ │ │ │ ├── OSServices │ │ │ │ │ ├── CSIdentity.h │ │ │ │ │ └── KeychainCore.h │ │ │ │ └── module.modulemap │ │ │ ├── EffectfulProperties.h │ │ │ ├── Foundation.apinotes │ │ │ ├── Foundation.h │ │ │ ├── IncompleteTypes.h │ │ │ ├── MacTypes.h │ │ │ ├── NotificationCenter.apinotes │ │ │ ├── NotificationCenter.h │ │ │ ├── ObjCConcurrency.h │ │ │ ├── OtherSubscripts.h │ │ │ ├── Properties.h │ │ │ ├── SecItem.h │ │ │ ├── UIKit.h │ │ │ ├── blocks.h │ │ │ ├── bridged_typedef.h │ │ │ ├── c++ │ │ │ │ └── v1 │ │ │ │ │ ├── cstdbool │ │ │ │ │ ├── cstddef │ │ │ │ │ ├── cstdint │ │ │ │ │ ├── cstring │ │ │ │ │ ├── new │ │ │ │ │ └── type_traits │ │ │ ├── cfuncs.h │ │ │ ├── completion_handler_globals.h │ │ │ ├── ctypes.h │ │ │ ├── ctypes │ │ │ │ └── bits.h │ │ │ ├── cvars.h │ │ │ ├── dispatch.h │ │ │ ├── dyld.h │ │ │ ├── enums_using_attributes.apinotes │ │ │ ├── enums_using_attributes.h │ │ │ ├── errors.h │ │ │ ├── header_guard.h │ │ │ ├── imported_macro_error.h │ │ │ ├── macros.h │ │ │ ├── macros_impl.h │ │ │ ├── macros_private_impl.h │ │ │ ├── module.modulemap │ │ │ ├── not_a_header_guard.h │ │ │ ├── nullability.h │ │ │ ├── objc │ │ │ │ ├── NSObject.h │ │ │ │ ├── ObjectiveC.apinotes │ │ │ │ ├── module.modulemap │ │ │ │ └── objc.h │ │ │ ├── objc_ext.h │ │ │ ├── objc_generics.h │ │ │ ├── objc_structs.h │ │ │ ├── simd.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── user_objc.h │ │ │ ├── wchar.h │ │ │ └── winbool.h │ │ │ └── lib │ │ │ └── swift │ │ │ └── apinotes │ │ │ └── cfuncs.apinotes │ ├── comment_to_something_conversion.swift │ ├── conditional_conformance_basic_conformances.swift │ ├── conditional_conformance_basic_conformances_future.swift │ ├── conditional_conformance_recursive.swift │ ├── conditional_conformance_subclass.swift │ ├── conditional_conformance_subclass_future.swift │ ├── conditional_conformance_with_assoc.swift │ ├── conditional_conformance_with_assoc_future.swift │ ├── custom-modules │ │ ├── ErrorEnums.h │ │ ├── ObjCRuntimeVisible.h │ │ ├── availability-domains │ │ │ ├── Oceans.h │ │ │ ├── Rivers.h │ │ │ ├── Seas.h │ │ │ └── module.modulemap │ │ └── module.modulemap │ ├── empty file.swift │ ├── empty.h │ ├── empty.swift │ ├── fixed_layout_class.swift │ ├── forward_extension_reference.swift │ ├── getmtime.py │ ├── global_resilience.swift │ ├── lazy_typecheck.swift │ ├── lazy_typecheck_client.swift │ ├── non_resilient_protocol.swift │ ├── not.py │ ├── objc_direct.h │ ├── polymorphic_builtins.swift │ ├── print-shims-stdlib.swift │ ├── print-shims.swift │ ├── process_fine_grained_swiftdeps.py │ ├── process_fine_grained_swiftdeps_with_fingerprints.py │ ├── resilient_class.swift │ ├── resilient_class_thunks.swift │ ├── resilient_enum.swift │ ├── resilient_global.swift │ ├── resilient_objc_class.swift │ ├── resilient_protocol.swift │ ├── resilient_struct.swift │ ├── symlink.py │ ├── timeout.py │ └── unextended-module-overlay.yaml ├── InterfaceHash │ ├── added_function.swift │ ├── added_localfunc.swift │ ├── added_method-type.swift │ ├── added_private_class_private_property.swift │ ├── added_private_class_property.swift │ ├── added_private_enum_private_property.swift │ ├── added_private_enum_property.swift │ ├── added_private_method.swift │ ├── added_private_method_value_types.swift │ ├── added_private_protocol_method.swift │ ├── added_private_protocol_property.swift │ ├── added_private_struct_private_property.swift │ ├── added_private_struct_property.swift │ ├── changed_private_var_type.swift │ ├── changed_var_name.swift │ ├── changed_var_type.swift │ ├── delayedparsing.swift │ ├── edited_function_body.swift │ ├── edited_method_body.swift │ └── edited_property_getter.swift ├── Interop │ ├── C │ │ ├── bounds-safety │ │ │ ├── Inputs │ │ │ │ ├── bounds-attributed-function.h │ │ │ │ ├── bounds-attributed-global.h │ │ │ │ ├── bounds-attributed-struct.h │ │ │ │ └── module.modulemap │ │ │ ├── import-bounds-attributed-function.swift │ │ │ ├── import-bounds-attributed-global.swift │ │ │ └── import-bounds-attributed-struct.swift │ │ ├── chars │ │ │ ├── Inputs │ │ │ │ ├── import-cchar-types.h │ │ │ │ └── module.modulemap │ │ │ └── import-cchar-types.swift │ │ ├── function │ │ │ ├── Inputs │ │ │ │ ├── emit-called-inline-function.h │ │ │ │ └── module.modulemap │ │ │ └── emit-called-inline-function-irgen.swift │ │ ├── implementation-only-imports │ │ │ ├── Inputs │ │ │ │ ├── helper.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── use-module-a.swift │ │ │ │ ├── use-module-b.swift │ │ │ │ ├── user-a.h │ │ │ │ └── user-b.h │ │ │ ├── check-function-transitive-visibility-inversed.swift │ │ │ ├── check-function-transitive-visibility.swift │ │ │ ├── check-function-visibility-inversed.swift │ │ │ └── check-function-visibility.swift │ │ ├── libc │ │ │ ├── Inputs │ │ │ │ ├── include-signal.h │ │ │ │ └── module.modulemap │ │ │ └── include-signal.swift │ │ ├── macros │ │ │ ├── Inputs │ │ │ │ ├── module.modulemap │ │ │ │ └── redefined-macro.h │ │ │ └── redefined-macro.swift │ │ ├── modules │ │ │ └── print-qualified-clang-types │ │ │ │ ├── Inputs │ │ │ │ ├── HelperModule.swift │ │ │ │ ├── MainModule.swift │ │ │ │ ├── SpiMainModule.swift │ │ │ │ ├── foreign-a.h │ │ │ │ ├── foreign-b.h │ │ │ │ ├── module.modulemap │ │ │ │ └── textual-header.h │ │ │ │ ├── print-qualified-clang-types-spi.swift │ │ │ │ └── print-qualified-clang-types.swift │ │ ├── struct │ │ │ ├── Inputs │ │ │ │ ├── foreign-reference.h │ │ │ │ ├── module.modulemap │ │ │ │ └── struct-decl-context.h │ │ │ ├── foreign-reference-flag-deprecated.swift │ │ │ ├── foreign-reference.swift │ │ │ ├── struct-decl-context-irgen.swift │ │ │ └── struct-decl-context-module-interface.swift │ │ └── swiftify-import │ │ │ ├── Inputs │ │ │ ├── comments.h │ │ │ ├── counted-by-lifetimebound.h │ │ │ ├── counted-by-noescape.h │ │ │ ├── counted-by.h │ │ │ ├── module.modulemap │ │ │ ├── sized-by-lifetimebound.h │ │ │ ├── sized-by-noescape.h │ │ │ └── sized-by.h │ │ │ ├── comments.swift │ │ │ ├── counted-by-lifetimebound.swift │ │ │ ├── counted-by-no-swiftify.swift │ │ │ ├── counted-by-noescape.swift │ │ │ ├── counted-by.swift │ │ │ ├── sized-by-lifetimebound.swift │ │ │ ├── sized-by-noescape.swift │ │ │ └── sized-by.swift │ ├── Cxx │ │ ├── apinotes │ │ │ ├── Inputs │ │ │ │ ├── SomeModule.apinotes │ │ │ │ ├── SomeModule.h │ │ │ │ └── module.modulemap │ │ │ └── apinotes-objcxx-smoke.swift │ │ ├── availability │ │ │ ├── Inputs │ │ │ │ ├── SomeModule.h │ │ │ │ └── module.modulemap │ │ │ └── availability-objcxx-smoke.swift │ │ ├── class │ │ │ ├── Inputs │ │ │ │ ├── class-protocol-name-clash.h │ │ │ │ ├── closure.h │ │ │ │ ├── conforms-to-imported.swift │ │ │ │ ├── conforms-to.h │ │ │ │ ├── constructors-objc.h │ │ │ │ ├── constructors.h │ │ │ │ ├── copy-move-assignment.h │ │ │ │ ├── custom-new-operator.h │ │ │ │ ├── debug-info.h │ │ │ │ ├── destructors-with-temporary-values.h │ │ │ │ ├── destructors.h │ │ │ │ ├── dictionary-of-nsstrings.h │ │ │ │ ├── extensions.h │ │ │ │ ├── forward-declared-cxx-record-used.h │ │ │ │ ├── forward-declared-cxx-record.h │ │ │ │ ├── forward-declared-in-namespace.h │ │ │ │ ├── invalid-nested-struct.h │ │ │ │ ├── linked-records.h │ │ │ │ ├── member-variables.h │ │ │ │ ├── memberwise-initializer.h │ │ │ │ ├── memory-layout.h │ │ │ │ ├── mirror.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── mutability-annotations.h │ │ │ │ ├── mutable-members.h │ │ │ │ ├── nested-records.h │ │ │ │ ├── nodiscard.h │ │ │ │ ├── pimpl.h │ │ │ │ ├── protocol-conformance.h │ │ │ │ ├── returns-large-class.h │ │ │ │ ├── sendable.h │ │ │ │ ├── simple-structs.h │ │ │ │ ├── structured-bindings-get-method.h │ │ │ │ └── type-classification.h │ │ │ ├── access │ │ │ │ ├── Inputs │ │ │ │ │ ├── access-inversion.h │ │ │ │ │ ├── access-specifiers.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ ├── non-public-inheritance.h │ │ │ │ │ ├── non-public-shadow.h │ │ │ │ │ ├── non-public.h │ │ │ │ │ └── using-non-public.h │ │ │ │ ├── access-inversion-executable.swift │ │ │ │ ├── access-inversion-module-interface.swift │ │ │ │ ├── access-inversion-typechecker.swift │ │ │ │ ├── access-specifiers-module-interface.swift │ │ │ │ ├── access-specifiers-typechecker.swift │ │ │ │ ├── non-public-inheritance-executable.swift │ │ │ │ ├── non-public-inheritance-module-interface.swift │ │ │ │ ├── non-public-inheritance-typecheck.swift │ │ │ │ ├── non-public-shadow-executable.swift │ │ │ │ ├── non-public-shadow-module-interface.swift │ │ │ │ ├── non-public-shadow-typecheck.swift │ │ │ │ ├── private-fileid-diagnostics.swift │ │ │ │ ├── private-fileid-irgen.swift │ │ │ │ ├── private-fileid-nested-typecheck.swift │ │ │ │ ├── private-fileid-template-typecheck.swift │ │ │ │ ├── private-fileid-typecheck.swift │ │ │ │ ├── swiftify-private-fileid.swift │ │ │ │ ├── using-non-public-executable.swift │ │ │ │ ├── using-non-public-module-interface.swift │ │ │ │ └── using-non-public-typechecker.swift │ │ │ ├── clang-trivial-abi.swift │ │ │ ├── class-protocol-name-clash.swift │ │ │ ├── closure-thunk-executable-macosx.swift │ │ │ ├── closure-thunk-executable.swift │ │ │ ├── closure-thunk-irgen.swift │ │ │ ├── closure-thunk-macosx-irgen.swift │ │ │ ├── closure-thunk-macosx-sil.swift │ │ │ ├── closure-thunk-macosx.swift │ │ │ ├── closure-thunk-opaque-values.swift │ │ │ ├── closure-thunk.swift │ │ │ ├── conforms-to-errors.swift │ │ │ ├── conforms-to.swift │ │ │ ├── constructor-inherited-from-base-irgen.cpp │ │ │ ├── constructors-copy-irgen-android.swift │ │ │ ├── constructors-copy-irgen-macosx-ptrauth.swift │ │ │ ├── constructors-copy-irgen-macosx.swift │ │ │ ├── constructors-copy-irgen-windows.swift │ │ │ ├── constructors-copy-module-interface.swift │ │ │ ├── constructors-diagnostics.swift │ │ │ ├── constructors-executable.swift │ │ │ ├── constructors-irgen-android.swift │ │ │ ├── constructors-irgen-macosx.swift │ │ │ ├── constructors-irgen-windows.swift │ │ │ ├── constructors-module-interface.swift │ │ │ ├── constructors-objc-irgen.swift │ │ │ ├── constructors-objc-module-interface.swift │ │ │ ├── constructors-objc-silgen.swift │ │ │ ├── constructors-silgen.swift │ │ │ ├── constructors-typechecker.swift │ │ │ ├── copy-move-assignment-executable.swift │ │ │ ├── copy-move-assignment-irgen.swift │ │ │ ├── custom-new-operator-irgen.swift │ │ │ ├── debug-info-irgen.swift │ │ │ ├── delete-operator-destructor-ref-irgen.swift │ │ │ ├── destructors-correct-abi-irgen.swift │ │ │ ├── destructors-non-trivial-implicit-irgen.swift │ │ │ ├── destructors-templated-irgen.swift │ │ │ ├── destructors-with-temporary-values-irgen.swift │ │ │ ├── dictionary-of-nsstrings-module-interface.swift │ │ │ ├── extensions-executable.swift │ │ │ ├── extensions-irgen.swift │ │ │ ├── extensions-typechecker.swift │ │ │ ├── fixit-add-safe-to-import-self-contained.swift │ │ │ ├── fixit-subscript-for-std-vector.swift │ │ │ ├── fixits-for-std-vector.swift │ │ │ ├── for-each-field.swift │ │ │ ├── forward-declared-cxx-record-module-interface.swift │ │ │ ├── forward-declared-in-namespace-typechecker.swift │ │ │ ├── friend-class-member-in-interface.swift │ │ │ ├── friend-diag.swift │ │ │ ├── function-call-irgen.swift │ │ │ ├── function-call-macosx.swift │ │ │ ├── function-call.swift │ │ │ ├── inheritance │ │ │ │ ├── Inputs │ │ │ │ │ ├── circular-inheritance.h │ │ │ │ │ ├── fields.h │ │ │ │ │ ├── functions-objc.h │ │ │ │ │ ├── functions.h │ │ │ │ │ ├── inherited-lookup.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ ├── polymorphism.h │ │ │ │ │ ├── reference-to-derived.h │ │ │ │ │ ├── sub-types.h │ │ │ │ │ ├── subscripts.h │ │ │ │ │ ├── type-aliases.h │ │ │ │ │ ├── using-base-members.h │ │ │ │ │ └── virtual-methods.h │ │ │ │ ├── circular-inheritance-typechecker.swift │ │ │ │ ├── fields-irgen.swift │ │ │ │ ├── fields-module-interface.swift │ │ │ │ ├── fields-silgen.swift │ │ │ │ ├── fields.swift │ │ │ │ ├── functions-irgen.swift │ │ │ │ ├── functions-module-interface.swift │ │ │ │ ├── functions-objc-irgen.swift │ │ │ │ ├── functions-silgen.swift │ │ │ │ ├── functions-typechecker.swift │ │ │ │ ├── functions.swift │ │ │ │ ├── inherited-lookup-executable.swift │ │ │ │ ├── inherited-lookup-memberimportvisibility.swift │ │ │ │ ├── inherited-lookup-typechecker.swift │ │ │ │ ├── reference-to-derived-irgen.swift │ │ │ │ ├── runtime-polymorphism.swift │ │ │ │ ├── sub-types-module-interface.swift │ │ │ │ ├── subscript-irgen.swift │ │ │ │ ├── subscript-silgen.swift │ │ │ │ ├── subscripts.swift │ │ │ │ ├── type-aliases-module-interface.swift │ │ │ │ ├── using-base-members-executable.swift │ │ │ │ ├── using-base-members-module-interface.swift │ │ │ │ ├── using-base-members-typechecker.swift │ │ │ │ ├── virtual-methods-irgen.swift │ │ │ │ ├── virtual-methods-module-interface.swift │ │ │ │ ├── virtual-methods-typechecker.swift │ │ │ │ └── virtual-methods.swift │ │ │ ├── inline-function-codegen │ │ │ │ ├── Inputs │ │ │ │ │ ├── constructor-calls-function-from-nested-calls.h │ │ │ │ │ ├── constructor-calls-function-from-nested-struct.h │ │ │ │ │ ├── constructor-calls-function.h │ │ │ │ │ ├── constructor-calls-method.h │ │ │ │ │ ├── field-init-calls-function.h │ │ │ │ │ ├── method-calls-function.h │ │ │ │ │ ├── method-calls-method-from-nested-struct.h │ │ │ │ │ ├── method-calls-method.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── static-var-init-calls-function.h │ │ │ │ ├── constructor-calls-function-execution.swift │ │ │ │ ├── constructor-calls-function-from-nested-calls-execution.swift │ │ │ │ ├── constructor-calls-function-from-nested-calls-irgen.swift │ │ │ │ ├── constructor-calls-function-from-nested-struct-execution.swift │ │ │ │ ├── constructor-calls-function-from-nested-struct-irgen.swift │ │ │ │ ├── constructor-calls-function-irgen.swift │ │ │ │ ├── constructor-calls-method-execution.swift │ │ │ │ ├── constructor-calls-method-irgen.swift │ │ │ │ ├── field-init-calls-function-execution.swift │ │ │ │ ├── field-init-calls-function-irgen.swift │ │ │ │ ├── method-calls-function-execution.swift │ │ │ │ ├── method-calls-function-irgen.swift │ │ │ │ ├── method-calls-method-execution.swift │ │ │ │ ├── method-calls-method-from-nested-struct-execution.swift │ │ │ │ ├── method-calls-method-from-nested-struct-irgen.swift │ │ │ │ ├── method-calls-method-irgen.swift │ │ │ │ ├── static-var-init-calls-function-execution.swift │ │ │ │ └── static-var-init-calls-function-irgen.swift │ │ │ ├── inline-in-cxx.sil │ │ │ ├── invalid-class-errors.swift │ │ │ ├── invalid-nested-struct-module-interface.swift │ │ │ ├── invalid-unsafe-projection-errors.swift │ │ │ ├── linked-records-module-interface.swift │ │ │ ├── member-variables-module-interface.swift │ │ │ ├── member-variables-typechecker.swift │ │ │ ├── memberwise-initializer-module-interface.swift │ │ │ ├── memberwise-initializer-typechecker.swift │ │ │ ├── memory-layout-execution.swift │ │ │ ├── memory-layout-silgen.swift │ │ │ ├── method │ │ │ │ ├── Inputs │ │ │ │ │ ├── ambiguous_methods.h │ │ │ │ │ ├── inreg-sret.h │ │ │ │ │ ├── methods.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ ├── sret-win-arm64.h │ │ │ │ │ └── unsafe-projections.h │ │ │ │ ├── ambiguous-methods-module-interface.swift │ │ │ │ ├── ambiguous-methods.swift │ │ │ │ ├── inreg-sret.swift │ │ │ │ ├── methods-addressable-silgen.swift │ │ │ │ ├── methods-module-interface.swift │ │ │ │ ├── methods-silgen.swift │ │ │ │ ├── methods-this-and-indirect-return-irgen-itanium.swift │ │ │ │ ├── methods-this-and-indirect-return-irgen-msvc.swift │ │ │ │ ├── methods.swift │ │ │ │ ├── msvc-abi-return-indirect-trivial-record.swift │ │ │ │ ├── sret-win-arm64.swift │ │ │ │ └── unsafe-projections.swift │ │ │ ├── mirror.swift │ │ │ ├── move-only │ │ │ │ ├── Inputs │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── move-only-cxx-value-type.h │ │ │ │ ├── inherited-field-access-irgen.swift │ │ │ │ ├── inherited-field-access-silgen.swift │ │ │ │ ├── move-only-cxx-value-type-generics.swift │ │ │ │ ├── move-only-cxx-value-type-module-interface.swift │ │ │ │ └── move-only-cxx-value-type.swift │ │ │ ├── mutability-annotations-module-interface.swift │ │ │ ├── mutability-annotations-typechecker.swift │ │ │ ├── mutable-members-module-interface.swift │ │ │ ├── mutable-members-typechecker.swift │ │ │ ├── mutable-members-with-mutating-annotation-module-interface.swift │ │ │ ├── nested-records-module-interface.swift │ │ │ ├── nodiscard-typechecker.swift │ │ │ ├── nonescapable-errors.swift │ │ │ ├── nonescapable-lifetimebound.swift │ │ │ ├── pimpl-irgen.swift │ │ │ ├── pimpl-module-interface.swift │ │ │ ├── print-simple-structs.swift │ │ │ ├── protocol-conformance-irgen.swift │ │ │ ├── protocol-conformance-silgen.swift │ │ │ ├── protocol-conformance-typechecker.swift │ │ │ ├── protocol-conformance.swift │ │ │ ├── returns-large-class-irgen.swift │ │ │ ├── returns-large-class.swift │ │ │ ├── returns-unavailable-class.swift │ │ │ ├── safe-interop-mode.swift │ │ │ ├── safe-use-of-returned-reference-with-borrowing.swift │ │ │ ├── sendable-typechecker.swift │ │ │ ├── structured-bindings-get-method.swift │ │ │ ├── throwing-constructor-destructor-cleanup-ref-irgen.swift │ │ │ ├── type-classification-completion.swift │ │ │ ├── type-classification-loadable-silgen.swift │ │ │ ├── type-classification-module-interface.swift │ │ │ ├── type-classification-non-trivial-irgen.swift │ │ │ ├── type-classification-non-trivial-silgen-windows.swift │ │ │ ├── type-classification-non-trivial-silgen.swift │ │ │ ├── type-classification-non-trivial.swift │ │ │ ├── type-classification-typechecker.swift │ │ │ ├── virtual-destructor-vtable-ref-irgen.swift │ │ │ └── zero-sized-field.swift │ │ ├── concepts │ │ │ ├── Inputs │ │ │ │ ├── method-requires.h │ │ │ │ └── module.modulemap │ │ │ └── method-requires.swift │ │ ├── driver │ │ │ ├── dont-enable-interop-compat.swift │ │ │ ├── enable-interop-flag-depr.swift │ │ │ └── invalid-interop-compat-mode.swift │ │ ├── enum │ │ │ ├── Inputs │ │ │ │ ├── CFAvailability.h │ │ │ │ ├── CenumsNSOptions.apinotes │ │ │ │ ├── CenumsNSOptionsExternC.apinotes │ │ │ │ ├── anonymous-with-swift-name.h │ │ │ │ ├── bool-enums.h │ │ │ │ ├── c-enums-NS_OPTIONS.h │ │ │ │ ├── c-enums-NS_OPTIONS_without_extern_C.h │ │ │ │ ├── c-enums-withOptions-omit.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── nested-enums.h │ │ │ │ ├── scoped-enums.h │ │ │ │ └── typed-untyped-enums.h │ │ │ ├── anonymous-with-swift-name-module-interface.swift │ │ │ ├── anonymous-with-swift-name-objc-module-interface.swift │ │ │ ├── anonymous-with-swift-name.swift │ │ │ ├── bool-enums-module-interface.swift │ │ │ ├── c-enums-NS_OPTIONS-NS_REFINED_FOR_SWIFT.swift │ │ │ ├── c-enums-NS_OPTIONS-api-notes-renamed-options.swift │ │ │ ├── c-enums-NS_OPTIONS-consistent-linkage-name.swift │ │ │ ├── c-enums-NS_OPTIONS-swift-named-options.swift │ │ │ ├── c-enums-NS_OPTIONS-transparent-linkage-spec-decl-modulemap-based-extern-c.swift │ │ │ ├── c-enums-NS_OPTIONS-transparent-linkage-spec-decl.swift │ │ │ ├── c-enums-NS_OPTIONS-typecheck-name-differs-between-versions.swift │ │ │ ├── c-enums-NS_OPTIONS.swift │ │ │ ├── c-enums-withOptions-omit.swift │ │ │ ├── hashable-enums-typecheck.swift │ │ │ ├── hashable-enums.swift │ │ │ ├── nested-enums-module-interface.swift │ │ │ ├── nested-enums.swift │ │ │ ├── ns-option-as-field.swift │ │ │ ├── scoped-enums-module-interface.swift │ │ │ ├── scoped-enums-silgen.swift │ │ │ ├── scoped-enums.swift │ │ │ └── typed-untyped-enums.swift │ │ ├── ergonomics │ │ │ ├── Inputs │ │ │ │ ├── implicit-computed-properties.h │ │ │ │ └── module.modulemap │ │ │ ├── explicit-computed-properties-typechecker.swift │ │ │ ├── explicit-computed-properties.swift │ │ │ ├── implicit-computed-properties-module-interface.swift │ │ │ ├── implicit-computed-properties.swift │ │ │ └── swift-bridging-annotations.swift │ │ ├── exceptions │ │ │ ├── exceptions-disabled-exception-irgen.swift │ │ │ ├── objc-trap-on-exception-irgen-itanium.swift │ │ │ ├── trap-on-exception-execution.swift │ │ │ ├── trap-on-exception-irgen-itanium.swift │ │ │ └── trap-on-exception-irgen-msvc.swift │ │ ├── extern-c │ │ │ ├── Inputs │ │ │ │ ├── extern-c.h │ │ │ │ ├── inline-func.h │ │ │ │ └── module.modulemap │ │ │ ├── extern-c-objcxx-category.swift │ │ │ └── inline-func.swift │ │ ├── extern-var │ │ │ ├── Inputs │ │ │ │ ├── extern-var.cpp │ │ │ │ ├── extern-var.h │ │ │ │ └── module.modulemap │ │ │ ├── extern-var-irgen.swift │ │ │ ├── extern-var-silgen.swift │ │ │ └── extern-var.swift │ │ ├── foreign-reference │ │ │ ├── Inputs │ │ │ │ ├── cxx-functions-and-methods-returning-frt.h │ │ │ │ ├── derived-field-getter-returns-owned-frt.h │ │ │ │ ├── inheritance.h │ │ │ │ ├── member-inheritance.h │ │ │ │ ├── member-layout.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── move-only.h │ │ │ │ ├── nullable.h │ │ │ │ ├── pod.h │ │ │ │ ├── printed.h │ │ │ │ ├── reference-counted-objc-property.h │ │ │ │ ├── reference-counted.h │ │ │ │ ├── singleton.h │ │ │ │ ├── visibility.h │ │ │ │ └── witness-table.h │ │ │ ├── array-of-classes.swift │ │ │ ├── base-class-layout-irgen.swift │ │ │ ├── cxx-frt-ctor-callable.swift │ │ │ ├── derived-field-getter-retainable-frt-irgen.swift │ │ │ ├── derived-field-getter-retainable-frt-silgen.swift │ │ │ ├── derived-field-getter-returns-owned-frt.swift │ │ │ ├── extensions.swift │ │ │ ├── frt-retained-unretained-attributes-error.swift │ │ │ ├── frt-retained-unretained-attributes-warn-caching.swift │ │ │ ├── frt-retained-unretained-attributes.swift │ │ │ ├── function-inheritance-irgen.swift │ │ │ ├── inheritance-diagnostics.swift │ │ │ ├── inheritance-irgen.swift │ │ │ ├── inheritance-module-interface.swift │ │ │ ├── inheritance-silgen.swift │ │ │ ├── inheritance-typechecker.swift │ │ │ ├── inheritance.swift │ │ │ ├── invalid-retain-operation-errors.swift │ │ │ ├── layout-in-opaque-layout-struct.swift │ │ │ ├── member-inheritance-module-interface.swift │ │ │ ├── member-inheritance-typechecker.swift │ │ │ ├── member-inheritance.swift │ │ │ ├── move-only-irgen.swift │ │ │ ├── move-only-module-interface.swift │ │ │ ├── move-only-silgen.swift │ │ │ ├── move-only.swift │ │ │ ├── multiple-protocol-conformances.swift │ │ │ ├── not-any-object.swift │ │ │ ├── nullable-module-interface.swift │ │ │ ├── nullable.swift │ │ │ ├── pod-irgen.swift │ │ │ ├── pod-module-interface-macos.swift │ │ │ ├── pod-module-interface.swift │ │ │ ├── pod-silgen.swift │ │ │ ├── pod.swift │ │ │ ├── print-reference.swift │ │ │ ├── reference-counted-irgen.swift │ │ │ ├── reference-counted-objc-property.swift │ │ │ ├── reference-counted-silgen.swift │ │ │ ├── reference-counted.swift │ │ │ ├── singleton-irgen.swift │ │ │ ├── singleton-module-interface.swift │ │ │ ├── singleton-silgen.swift │ │ │ ├── singleton.swift │ │ │ ├── submodule-lookup-retain-release.swift │ │ │ ├── unimportable-member-layout-irgen.swift │ │ │ ├── unmanaged.swift │ │ │ ├── value-type-errors.swift │ │ │ ├── witness-table-typechecker.swift │ │ │ └── witness-table.swift │ │ ├── function │ │ │ ├── Inputs │ │ │ │ ├── custom-string-builtins.h │ │ │ │ ├── default-arguments.cpp │ │ │ │ ├── default-arguments.h │ │ │ │ └── module.modulemap │ │ │ ├── builtin-nullability-return-type-typechecker.swift │ │ │ ├── default-arguments-irgen.swift │ │ │ ├── default-arguments-module-interface.swift │ │ │ ├── default-arguments-multifile.swift │ │ │ ├── default-arguments-typechecker.swift │ │ │ ├── default-arguments.swift │ │ │ └── lit.local.cfg │ │ ├── implementation-only-imports │ │ │ ├── Inputs │ │ │ │ ├── decl-a.h │ │ │ │ ├── decl-b.h │ │ │ │ ├── helper.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── use-cxx-stdlib-impl-only.swift │ │ │ │ ├── use-module-a-impl-only.swift │ │ │ │ ├── use-module-a.swift │ │ │ │ ├── use-module-b.swift │ │ │ │ ├── user-a.h │ │ │ │ ├── user-b.h │ │ │ │ └── user-c.h │ │ │ ├── check-constructor-visibility-inversed.swift │ │ │ ├── check-constructor-visibility.swift │ │ │ ├── check-decls-are-identical.swift │ │ │ ├── check-function-transitive-visibility-inversed.swift │ │ │ ├── check-function-transitive-visibility.swift │ │ │ ├── check-function-visibility-inversed.swift │ │ │ ├── check-function-visibility.swift │ │ │ ├── check-operator-visibility-inversed.swift │ │ │ ├── check-operator-visibility.swift │ │ │ ├── import-implementation-only-cxx-interop-module-without-interop.swift │ │ │ ├── import-implementation-only-cxxstdlib-interop-module-without-interop.swift │ │ │ └── skip-forward-declarations.swift │ │ ├── libc │ │ │ └── include-libc.swift │ │ ├── library-evolution │ │ │ ├── Inputs │ │ │ │ ├── module.modulemap │ │ │ │ └── my_c_header.h │ │ │ ├── allow-c-in-cxx-mode-in-evolving-libraries.swift │ │ │ ├── allow-c-in-cxx-mode-in-interfaces.swift │ │ │ ├── allow-cxx-api-in-evolving-libraries.swift │ │ │ ├── allow-objc-in-cxx-mode-in-evolving-libraries.swift │ │ │ ├── prohibit-cxx-api-in-evolving-libraries.swift │ │ │ └── prohibit-cxx-calls-in-evolving-inlinable-bodies.swift │ │ ├── modules │ │ │ ├── Inputs │ │ │ │ ├── ambiguous_a.h │ │ │ │ ├── ambiguous_b.h │ │ │ │ ├── another-deep-submodule.h │ │ │ │ ├── bridge-header.h │ │ │ │ ├── deep-submodule.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── namespace-extension-lib.swift │ │ │ │ └── namespace.h │ │ │ ├── deep-submodule.swift │ │ │ ├── emit-module-interface.swift │ │ │ ├── no-cxx-overlay-for-non-interop-interface.swift │ │ │ ├── preferred-overload.swift │ │ │ ├── prevent-module-namespace-shadowed-by-namespace.swift │ │ │ ├── prevent-module-shadowed-by-namespace.swift │ │ │ ├── prohibit-import-into-non-interop-compilation.swift │ │ │ └── use-namespace-extension-lib.swift │ │ ├── namespace │ │ │ ├── Inputs │ │ │ │ ├── bridging-header.h │ │ │ │ ├── classes-second-header.h │ │ │ │ ├── classes.h │ │ │ │ ├── enums.h │ │ │ │ ├── extensions.h │ │ │ │ ├── free-functions-second-header.h │ │ │ │ ├── free-functions.h │ │ │ │ ├── members-direct.h │ │ │ │ ├── members-transitive.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── submodule-a.h │ │ │ │ ├── submodule-b.h │ │ │ │ ├── templates-second-header.h │ │ │ │ ├── templates-with-forward-decl.h │ │ │ │ ├── templates.h │ │ │ │ └── using-from-namespace.h │ │ │ ├── bridging-header-module-interface.swift │ │ │ ├── class-inline-namespace-irgen.swift │ │ │ ├── classes-irgen.swift │ │ │ ├── classes-module-interface.swift │ │ │ ├── classes-second-header-module-interface.swift │ │ │ ├── classes-second-header.swift │ │ │ ├── classes.swift │ │ │ ├── cross-module-redecls-module-interface.swift │ │ │ ├── extensions.swift │ │ │ ├── free-functions-irgen.swift │ │ │ ├── free-functions-module-interface.swift │ │ │ ├── free-functions-second-header-module-interface.swift │ │ │ ├── free-functions-second-header.swift │ │ │ ├── free-functions.swift │ │ │ ├── function-overload-in-namespace-extension-irgen.swift │ │ │ ├── inline-namespace-ambiguity-error.swift │ │ │ ├── inline-namespace-function-call-broken.swift │ │ │ ├── member-import-visibility.swift │ │ │ ├── namespace-completion.swift │ │ │ ├── submodules-module-interface.swift │ │ │ ├── templates-irgen.swift │ │ │ ├── templates-module-interface.swift │ │ │ ├── templates-second-header-module-interface.swift │ │ │ ├── templates-second-header.swift │ │ │ ├── templates-with-forward-decl-module-interface.swift │ │ │ ├── templates.swift │ │ │ ├── top-level-inline-namespace-lookup.swift │ │ │ └── using-from-namespace.swift │ │ ├── objc-correctness │ │ │ ├── Inputs │ │ │ │ ├── CFOptions.h │ │ │ │ ├── NSOptionsMangling.apinotes │ │ │ │ ├── NSOptionsMangling.h │ │ │ │ ├── NSStreamDelegate.h │ │ │ │ ├── NSTextCheckingResult.h │ │ │ │ ├── POSIX.h │ │ │ │ ├── SwiftTextCheckingResult.swift │ │ │ │ ├── cxx-class-with-arc-fields-ctor.h │ │ │ │ ├── cxx-frt.h │ │ │ │ ├── id.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── nsnotification-bridging.h │ │ │ │ ├── objc-class-with-non-trivial-cxx-record.mm │ │ │ │ ├── os-object.h │ │ │ │ └── protocol-naming-conflict.h │ │ │ ├── appkit-uikit.swift │ │ │ ├── at-objc-api-using-non-trivial-cxx.swift │ │ │ ├── call-to-generated-init-with-nsstring.swift │ │ │ ├── coregraphics.swift │ │ │ ├── foundation-string-extensions.swift │ │ │ ├── id-irgen.swift │ │ │ ├── init-String-with-NSString-utf8String.swift │ │ │ ├── memchr.swift │ │ │ ├── ns-enum-with-unavailable-typedef.swift │ │ │ ├── ns-options-mangling.swift │ │ │ ├── nsnotification-bridging-ide-test.swift │ │ │ ├── nsnotification-typechecker.swift │ │ │ ├── nsstreamdelegate.swift │ │ │ ├── objc-returning-cxx-frt-diagnostics.swift │ │ │ ├── objc-returning-cxx-frt.swift │ │ │ ├── objcxx-arc-field-in-struct-type-layout-execution.swift │ │ │ ├── os-logger.swift │ │ │ ├── os-object.swift │ │ │ ├── posix.swift │ │ │ ├── protocol-naming-conflict.swift │ │ │ ├── pthread_mutexattr_t.swift │ │ │ └── sret.swift │ │ ├── operators │ │ │ ├── Inputs │ │ │ │ ├── member-inline.h │ │ │ │ ├── member-out-of-line.cpp │ │ │ │ ├── member-out-of-line.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── non-member-inline.h │ │ │ │ ├── non-member-out-of-line.cpp │ │ │ │ └── non-member-out-of-line.h │ │ │ ├── member-inline-irgen.swift │ │ │ ├── member-inline-module-interface.swift │ │ │ ├── member-inline-silgen.swift │ │ │ ├── member-inline-typechecker.swift │ │ │ ├── member-inline.swift │ │ │ ├── member-out-of-line-irgen.swift │ │ │ ├── member-out-of-line-silgen.swift │ │ │ ├── member-out-of-line.swift │ │ │ ├── move-only │ │ │ │ ├── Inputs │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── move-only-cxx-value-operators.h │ │ │ │ ├── move-only-synthesized-properties.swift │ │ │ │ └── move-only-synthesized-property-typecheck.swift │ │ │ ├── non-member-inline-module-interface.swift │ │ │ ├── non-member-inline-typechecker.swift │ │ │ ├── non-member-inline.swift │ │ │ ├── non-member-out-of-line-irgen.swift │ │ │ ├── non-member-out-of-line-silgen.swift │ │ │ └── non-member-out-of-line.swift │ │ ├── reference │ │ │ ├── Inputs │ │ │ │ ├── closures.h │ │ │ │ ├── const-ref-parameter.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── print-special-members.h │ │ │ │ ├── reference-silgen-cxx-objc-ctors+init.h │ │ │ │ ├── reference.cpp │ │ │ │ └── reference.h │ │ │ ├── closures-module-interface.swift │ │ │ ├── closures.swift │ │ │ ├── const-ref-parameter.swift │ │ │ ├── reference-cannot-import-diagnostic.swift │ │ │ ├── reference-irgen.swift │ │ │ ├── reference-module-interface.swift │ │ │ ├── reference-silgen-cxx-objc-ctors+init.swift │ │ │ ├── reference-silgen.swift │ │ │ ├── reference.swift │ │ │ └── rvalue-reference.swift │ │ ├── static │ │ │ ├── Inputs │ │ │ │ ├── constexpr-static-member-var-errors.h │ │ │ │ ├── inline-static-member-var.cpp │ │ │ │ ├── inline-static-member-var.h │ │ │ │ ├── invalid-static-member-var.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── static-local-var.cpp │ │ │ │ ├── static-local-var.h │ │ │ │ ├── static-member-func.cpp │ │ │ │ ├── static-member-func.h │ │ │ │ ├── static-member-var.cpp │ │ │ │ ├── static-member-var.h │ │ │ │ ├── static-var.cpp │ │ │ │ └── static-var.h │ │ │ ├── constexpr-invalid-static-member-var.swift │ │ │ ├── constexpr-static-member-var-errors.swift │ │ │ ├── constexpr-static-member-var.swift │ │ │ ├── inline-static-member-var-irgen.swift │ │ │ ├── inline-static-member-var-silgen.swift │ │ │ ├── inline-static-member-var.swift │ │ │ ├── static-local-var.swift │ │ │ ├── static-member-func-irgen.swift │ │ │ ├── static-member-func-silgen.swift │ │ │ ├── static-member-func.swift │ │ │ ├── static-member-var-irgen.swift │ │ │ ├── static-member-var-module-interface.swift │ │ │ ├── static-member-var-silgen.swift │ │ │ ├── static-member-var.swift │ │ │ ├── static-var-irgen.swift │ │ │ ├── static-var-silgen.swift │ │ │ └── static-var.swift │ │ ├── stdlib │ │ │ ├── Inputs │ │ │ │ ├── check-libcxx-version.cpp │ │ │ │ ├── custom-smart-ptr.h │ │ │ │ ├── fake-toolchain │ │ │ │ │ ├── bin │ │ │ │ │ │ └── clang │ │ │ │ │ └── include │ │ │ │ │ │ └── c++ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── fake-toolchain.h │ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── module.modulemap │ │ │ │ ├── msvc-std-vector-it.h │ │ │ │ ├── no-cxx-stdlib.h │ │ │ │ ├── std-function.h │ │ │ │ ├── std-map.h │ │ │ │ ├── std-numeric.h │ │ │ │ ├── std-optional.h │ │ │ │ ├── std-pair.h │ │ │ │ ├── std-set.h │ │ │ │ ├── std-span.h │ │ │ │ ├── std-string-and-vector.h │ │ │ │ ├── std-string-view.h │ │ │ │ ├── std-string.h │ │ │ │ ├── std-unique-ptr.h │ │ │ │ └── std-vector.h │ │ │ ├── android-and-std-module.swift │ │ │ ├── avoid-import-cxx-math.swift │ │ │ ├── avoid-redundant-copies.swift │ │ │ ├── fake-toolchain-module-interface.swift │ │ │ ├── foundation-and-std-module.swift │ │ │ ├── import-cxx-math-ambiguities.swift │ │ │ ├── import-foundation-with-indexing.swift │ │ │ ├── import-string-view-from-std.swift │ │ │ ├── libcxx-module-interface.swift │ │ │ ├── libstdcxx-module-interface.swift │ │ │ ├── msvc-abi-use-vector-iterator.swift │ │ │ ├── msvcprt-module-interface.swift │ │ │ ├── no-cxx-stdlib.swift │ │ │ ├── overlay-backdeployment-ios-simulator.swift │ │ │ ├── overlay-backdeployment-ios.swift │ │ │ ├── overlay-backdeployment.swift │ │ │ ├── overlay │ │ │ │ ├── Inputs │ │ │ │ │ ├── convertible-to-bool.h │ │ │ │ │ ├── custom-collection.h │ │ │ │ │ ├── custom-iterator.h │ │ │ │ │ ├── custom-sequence.h │ │ │ │ │ └── module.modulemap │ │ │ │ ├── convertible-to-bool-module-interface.swift │ │ │ │ ├── convertible-to-bool-typechecker.swift │ │ │ │ ├── convertible-to-bool.swift │ │ │ │ ├── custom-collection-module-interface.swift │ │ │ │ ├── custom-collection.swift │ │ │ │ ├── custom-contiguous-iterator-module-interface.swift │ │ │ │ ├── custom-convertible-to-collection.swift │ │ │ │ ├── custom-iterator-conformance-operator-synthesis-conformance.swift │ │ │ │ ├── custom-iterator-module-interface.swift │ │ │ │ ├── custom-sequence-module-interface.swift │ │ │ │ ├── custom-sequence-typechecker.swift │ │ │ │ └── custom-sequence.swift │ │ │ ├── print-foundation-module-interface.swift │ │ │ ├── print-stdlib-types.swift │ │ │ ├── std-span-interface.swift │ │ │ ├── std-span-transformed-execution.swift │ │ │ ├── unsupported-stdlib.swift │ │ │ ├── use-cxxstdlib-types-in-module-interface.swift │ │ │ ├── use-libcxx-dependency-linux.swift │ │ │ ├── use-libcxx-linux.swift │ │ │ ├── use-std-chrono-libcxx.swift │ │ │ ├── use-std-chrono.swift │ │ │ ├── use-std-function.swift │ │ │ ├── use-std-map.swift │ │ │ ├── use-std-numeric-typechecker.swift │ │ │ ├── use-std-optional.swift │ │ │ ├── use-std-pair-typechecker.swift │ │ │ ├── use-std-pair.swift │ │ │ ├── use-std-set.swift │ │ │ ├── use-std-span-typechecker.swift │ │ │ ├── use-std-span.swift │ │ │ ├── use-std-string-typechecker.swift │ │ │ ├── use-std-string-view-libcxx.swift │ │ │ ├── use-std-string-view.swift │ │ │ ├── use-std-string-with-opts.swift │ │ │ ├── use-std-string.swift │ │ │ ├── use-std-unique-ptr.swift │ │ │ ├── use-std-vector.swift │ │ │ └── use-swift-concurrency.swift │ │ ├── swiftify-import │ │ │ ├── bounds-attrs-in-template.swift │ │ │ ├── counted-by-in-namespace.swift │ │ │ ├── counted-by-method.swift │ │ │ └── span-in-ctor.swift │ │ ├── templates │ │ │ ├── Inputs │ │ │ │ ├── SwiftClassInstantiationModule.swift │ │ │ │ ├── SwiftClassTemplateInNamespaceModule.swift │ │ │ │ ├── SwiftClassTemplateNestedTypeModule.swift │ │ │ │ ├── canonical-types.h │ │ │ │ ├── class-template-eager-instantiation-problems.h │ │ │ │ ├── class-template-for-swift-module.h │ │ │ │ ├── class-template-in-namespace-for-swift-module.h │ │ │ │ ├── class-template-in-namespace.h │ │ │ │ ├── class-template-instantiation-errors.h │ │ │ │ ├── class-template-instantiation-existing-specialization.h │ │ │ │ ├── class-template-instantiation.h │ │ │ │ ├── class-template-nested-type-for-swift-module.h │ │ │ │ ├── class-template-non-type-parameter.h │ │ │ │ ├── class-template-template-parameter.h │ │ │ │ ├── class-template-variadic.h │ │ │ │ ├── class-template-with-enum-parameter.h │ │ │ │ ├── class-template-with-function-parameter.h │ │ │ │ ├── class-template-with-primitive-argument.h │ │ │ │ ├── class-template-with-simd-parameter.h │ │ │ │ ├── class-template-with-static-out-of-line-member.h │ │ │ │ ├── class-template-with-typedef.h │ │ │ │ ├── defaulted-template-type-parameter.h │ │ │ │ ├── define-referenced-inline.h │ │ │ │ ├── dependent-types.h │ │ │ │ ├── enable-if.h │ │ │ │ ├── explicit-class-specialization.h │ │ │ │ ├── fully-pre-defined-class-template.h │ │ │ │ ├── function-templates.h │ │ │ │ ├── large-class-templates.h │ │ │ │ ├── linkage-of-swift-symbols-for-imported-types.h │ │ │ │ ├── mangling.h │ │ │ │ ├── many-specializations.h │ │ │ │ ├── member-templates.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── not-pre-defined-class-template.h │ │ │ │ ├── partially-pre-defined-class-template.h │ │ │ │ ├── template-type-parameter-not-in-signature.h │ │ │ │ ├── unevaluated-context.h │ │ │ │ └── using-directive.h │ │ │ ├── canonical-types-module-interface.swift │ │ │ ├── canonical-types.swift │ │ │ ├── class-template-eager-instatiation-problems.swift │ │ │ ├── class-template-in-namespace-module-interface.swift │ │ │ ├── class-template-in-namespace-typechecker.swift │ │ │ ├── class-template-instantiation-demangling.swift │ │ │ ├── class-template-instantiation-existing-specialization.swift │ │ │ ├── class-template-instantiation-typechecker-calls-method-with-error.swift │ │ │ ├── class-template-instantiation-typechecker-constructor-calls-method-with-error.swift │ │ │ ├── class-template-instantiation-typechecker.swift │ │ │ ├── class-template-instantiation.swift │ │ │ ├── class-template-non-type-parameter-irgen.swift │ │ │ ├── class-template-non-type-parameter-module-interface.swift │ │ │ ├── class-template-non-type-parameter.swift │ │ │ ├── class-template-template-parameter.swift │ │ │ ├── class-template-uninstantiatable-members-irgen.swift │ │ │ ├── class-template-uninstantiatable-members.swift │ │ │ ├── class-template-variadic.swift │ │ │ ├── class-template-variardic-parameter-module-interface.swift │ │ │ ├── class-template-with-enum-parameter-module-interface.swift │ │ │ ├── class-template-with-function-parameter-module-interface.swift │ │ │ ├── class-template-with-primitive-argument-module-interface.swift │ │ │ ├── class-template-with-primitive-argument.swift │ │ │ ├── class-template-with-simd-parameter-module-interface.swift │ │ │ ├── class-template-with-static-out-of-line-member.swift │ │ │ ├── class-template-with-typedef-module-interface.swift │ │ │ ├── defaulted-template-type-parameter-module-interface.swift │ │ │ ├── defaulted-template-type-parameter.swift │ │ │ ├── define-referenced-inline.swift │ │ │ ├── dependent-types-module-interface.swift │ │ │ ├── dependent-types-silgen.swift │ │ │ ├── dependent-types.swift │ │ │ ├── enable-if-module-interface.swift │ │ │ ├── enable-if-typechecker.swift │ │ │ ├── explicit-class-specialization-module-interface.swift │ │ │ ├── explicit-class-specialization.swift │ │ │ ├── fully-pre-defined-class-template.swift │ │ │ ├── function-template-closures.swift │ │ │ ├── function-template-irgen.swift │ │ │ ├── function-template-module-interface.swift │ │ │ ├── function-template-objc-typechecker.swift │ │ │ ├── function-template-silgen.swift │ │ │ ├── function-template-typechecker-errors.swift │ │ │ ├── function-template.swift │ │ │ ├── instantiation-in-multiple-modules │ │ │ │ ├── Inputs │ │ │ │ │ ├── a.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── wrapper.h │ │ │ │ ├── instantiation-in-multiple-modules-irgen.swift │ │ │ │ └── instantiation-in-multiple-modules.swift │ │ │ ├── large-class-templates-module-interface.swift │ │ │ ├── linkage-of-swift-symbols-for-imported-types-irgen.swift │ │ │ ├── mangling-irgen.swift │ │ │ ├── mangling-silgen.swift │ │ │ ├── many-specializations.swift │ │ │ ├── member-templates-module-interface.swift │ │ │ ├── member-templates-silgen.swift │ │ │ ├── member-templates.swift │ │ │ ├── not-pre-defined-class-template-module-interface.swift │ │ │ ├── not-pre-defined-class-template.swift │ │ │ ├── partially-pre-defined-class-template-irgen.swift │ │ │ ├── partially-pre-defined-class-template-silgen.swift │ │ │ ├── partially-pre-defined-class-template.swift │ │ │ ├── swift-class-instantiation-in-namespace-module-interface.swift │ │ │ ├── swift-class-instantiation-module-interface.swift │ │ │ ├── swift-class-instantiation-nested-type-module-interface.swift │ │ │ ├── swift-class-template-specialization-module-xref.cpp │ │ │ ├── template-instantiation-irgen.swift │ │ │ ├── template-type-parameter-not-in-signature-module-interface.swift │ │ │ ├── template-type-parameter-not-in-signature.swift │ │ │ ├── unevaluated-context.swift │ │ │ ├── using-directive-module-interface.swift │ │ │ └── using-directive.swift │ │ ├── union │ │ │ ├── Inputs │ │ │ │ ├── anonymous-union-partly-invalid.h │ │ │ │ └── module.modulemap │ │ │ ├── anonymous-union-partly-invalid-module-interface.swift │ │ │ └── anonymous-union-partly-invalid.swift │ │ └── value-witness-table │ │ │ ├── Inputs │ │ │ ├── class-template-metadata.h │ │ │ ├── copy-constructors.h │ │ │ ├── custom-destructors.h │ │ │ ├── module.modulemap │ │ │ ├── witness-layout-opts.h │ │ │ └── witness-lifetime-operations.h │ │ │ ├── class-template-metadata.swift │ │ │ ├── copy-constructors-execution.swift │ │ │ ├── copy-constructors-irgen.swift │ │ │ ├── custom-destructors-non-virtual-irgen.swift │ │ │ ├── custom-destructors-non-virtual.swift │ │ │ ├── custom-destructors-typechecker-trivial-windows-abi.swift │ │ │ ├── custom-destructors-typechecker.swift │ │ │ ├── custom-destructors-virtual-irgen.swift │ │ │ ├── custom-destructors-virtual.swift │ │ │ ├── witness-layout-opts-irgen.swift │ │ │ └── witness-lifetime-operations-irgen.swift │ ├── CxxToSwiftToCxx │ │ ├── allow-shared-frt-back-to-cxx.swift │ │ ├── bridge-cxx-enum-back-to-cxx-execution.cpp │ │ ├── bridge-cxx-struct-back-to-cxx-execution.cpp │ │ ├── bridge-cxx-struct-back-to-cxx.swift │ │ ├── bridge-cxx-struct-back-to-objcxx.swift │ │ ├── consuming-cxx-struct-parameter-back-to-cxx-execution.cpp │ │ ├── consuming-not-supported-on-foreign-references.swift │ │ ├── link-cxx-type-metadata-accessor.swift │ │ ├── lit.local.cfg │ │ ├── nested-cxx-class-back-to-swift.swift │ │ ├── references-correctly-mangled-execution.cpp │ │ ├── simd-bridge-cxx-struct-back-to-cxx.swift │ │ └── span │ │ │ └── span-execution.cpp │ ├── CxxToSwiftToObjC │ │ ├── Inputs │ │ │ ├── cxxmodule.h │ │ │ └── module.modulemap │ │ └── bridge-cxx-types-to-objc.swift │ ├── CxxToSwiftToObjcxx │ │ ├── Inputs │ │ │ ├── bridge-cxx-types-to-objcxx.h │ │ │ └── module.modulemap │ │ ├── bridge-cxx-types-to-objcxx.swift │ │ └── lit.local.cfg │ ├── ObjC │ │ ├── lit.local.cfg │ │ └── swiftify-import │ │ │ ├── Inputs │ │ │ ├── module.modulemap │ │ │ └── objc-no-swiftify.h │ │ │ ├── counted-by-in-class.swift │ │ │ └── objc-no-swiftify.swift │ ├── ObjCToSwiftToObjCxx │ │ ├── bridge-objc-types-back-to-objcxx-execution.mm │ │ ├── bridge-objc-types-back-to-objcxx.swift │ │ └── lit.local.cfg │ ├── SwiftToC │ │ ├── functions │ │ │ ├── swift-function-argument-keyword-in-c.swift │ │ │ ├── swift-primitive-functions-c-bridging-long-lp64.swift │ │ │ ├── swift-primitive-functions-c-bridging.swift │ │ │ ├── swift-primitive-functions-execution-long-lp64.c │ │ │ └── swift-primitive-functions-execution.c │ │ ├── lit.local.cfg │ │ └── structs │ │ │ ├── large-structs-pass-return-indirect-in-c-execution.c │ │ │ ├── large-structs-pass-return-indirect-in-c.swift │ │ │ ├── small-structs-64-bit-pass-return-direct-in-c.swift │ │ │ ├── small-structs-pass-return-direct-in-c-execution.c │ │ │ └── small-structs-pass-return-direct-in-c.swift │ ├── SwiftToCxx │ │ ├── class │ │ │ ├── class-api-prohibited.cpp │ │ │ ├── nested-classes-in-cxx-execution.cpp │ │ │ ├── nested-classes-in-cxx.swift │ │ │ ├── swift-actor-execution.cpp │ │ │ ├── swift-actor-in-cxx.swift │ │ │ ├── swift-class-availability-in-cxx.swift │ │ │ ├── swift-class-execution.cpp │ │ │ ├── swift-class-in-cxx.swift │ │ │ ├── swift-class-inheritance-execution.cpp │ │ │ ├── swift-class-inheritance-in-cxx.swift │ │ │ ├── swift-class-ordering.swift │ │ │ ├── swift-class-static-variables-execution.cpp │ │ │ ├── swift-class-static-variables.swift │ │ │ ├── swift-class-virtual-method-dispatch-arm64e.swift │ │ │ ├── swift-class-virtual-method-dispatch-execution.cpp │ │ │ ├── swift-class-virtual-method-dispatch.swift │ │ │ ├── swift-resilient-class-virtual-method-dispatch-execution.cpp │ │ │ ├── swift-resilient-class-virtual-method-dispatch.swift │ │ │ ├── swift-subclass-of-resilient-class-virtual-method-dispatch-execution.cpp │ │ │ └── swift-subclass-of-resilient-class-virtual-method-dispatch.swift │ │ ├── core │ │ │ ├── embedded-swift.swift │ │ │ ├── gen-header-for-module.swift │ │ │ ├── swift-impl-defs-in-cxx-64-bit.swift │ │ │ ├── swift-impl-defs-in-cxx-darwin64bit.swift │ │ │ ├── swift-impl-defs-in-cxx.swift │ │ │ ├── unsigned-return-type-no-zext-msvc.cpp │ │ │ ├── unsigned-return-type-no-zext.cpp │ │ │ └── validate-swift-impl-defs-in-cxx.cpp │ │ ├── cross-module-refs │ │ │ ├── Inputs │ │ │ │ ├── enums.swift │ │ │ │ └── structs.swift │ │ │ ├── do-not-expose-imported-api-by-default.swift │ │ │ ├── imported-enum-refs-in-cxx.swift │ │ │ ├── imported-struct-refs-in-cxx.swift │ │ │ └── not-referenced-cross-module-import.swift │ │ ├── enums │ │ │ ├── enum-associated-value-class-type-cxx.cpp │ │ │ ├── enum-associated-value-class-type-cxx.swift │ │ │ ├── enum-element-method-name-clash.swift │ │ │ ├── enum-member-param-no-shadow-case.swift │ │ │ ├── large-enums-pass-return-in-cxx-execution.cpp │ │ │ ├── large-enums-pass-return-in-cxx.swift │ │ │ ├── resilient-enum-in-cxx-execution.cpp │ │ │ ├── resilient-enum-in-cxx.swift │ │ │ ├── small-enums-generated-stub-64bit.swift │ │ │ ├── small-enums-pass-return-in-cxx-execution.cpp │ │ │ ├── small-enums-pass-return-in-cxx.swift │ │ │ ├── swift-enum-implementation-execution.cpp │ │ │ ├── swift-enum-implementation.swift │ │ │ └── zero-sized-enum-in-cxx.swift │ │ ├── expose-attr │ │ │ ├── expose-rename-to-unavailable-decl.swift │ │ │ └── expose-swift-decls-to-cxx.swift │ │ ├── extension │ │ │ └── struct-extension-in-cxx.swift │ │ ├── functions │ │ │ ├── PrintAsCxx │ │ │ │ └── function_with_array.swift │ │ │ ├── cdecl-execution.cpp │ │ │ ├── cdecl.swift │ │ │ ├── function-availability.swift │ │ │ ├── swift-expected-execution.cpp │ │ │ ├── swift-function-argument-keyword-in-cxx.swift │ │ │ ├── swift-function-overloads.swift │ │ │ ├── swift-function-unsupported-cxx-type.swift │ │ │ ├── swift-functions-errors-execution.cpp │ │ │ ├── swift-functions-errors.swift │ │ │ ├── swift-functions-execution.cpp │ │ │ ├── swift-functions.swift │ │ │ ├── swift-no-expose-unsupported-alwaysEmitInClient-func.swift │ │ │ ├── swift-no-expose-unsupported-async-func.swift │ │ │ ├── swift-operators.swift │ │ │ ├── swift-primitive-functions-cxx-bridging.swift │ │ │ ├── swift-primitive-functions-execution.cpp │ │ │ ├── swift-primitive-inout-functions-cxx-bridging.swift │ │ │ ├── swift-primitive-inout-functions-execution.cpp │ │ │ ├── swift-simd-vector-functions-cxx-bridging.swift │ │ │ ├── swift-transparent-functions-cxx-bridging.swift │ │ │ └── swift-transparent-functions-execution.cpp │ │ ├── generics │ │ │ ├── generic-enum-execution.cpp │ │ │ ├── generic-enum-in-cxx.swift │ │ │ ├── generic-function-cxx-type-invalid.cpp │ │ │ ├── generic-function-execution.cpp │ │ │ ├── generic-function-in-cxx.swift │ │ │ ├── generic-struct-as-generic-func-arg-in-cpp.swift │ │ │ ├── generic-struct-execution-known-layout-direct.cpp │ │ │ ├── generic-struct-execution-known-layout-indirect.cpp │ │ │ ├── generic-struct-execution.cpp │ │ │ ├── generic-struct-in-cxx.swift │ │ │ ├── generic-struct-known-layout-direct-in-cxx.swift │ │ │ ├── generic-struct-known-layout-indirect-in-cxx.swift │ │ │ ├── generic-type-cxx-type-invalid.cpp │ │ │ ├── generic-type-traits-fwd.swift │ │ │ ├── resilient-generic-function-execution.cpp │ │ │ ├── resilient-generic-struct-execution-known-layout-direct.cpp │ │ │ ├── resilient-generic-struct-execution-known-layout-indirect.cpp │ │ │ └── resilient-generic-struct-execution.cpp │ │ ├── initializers │ │ │ ├── init-in-cxx-execution.cpp │ │ │ ├── init-in-cxx.swift │ │ │ └── swift-init-availability-in-cxx.swift │ │ ├── lit.local.cfg │ │ ├── macros │ │ │ └── macro-name-collision.swift │ │ ├── methods │ │ │ ├── method-in-cxx-execution.cpp │ │ │ ├── method-in-cxx.swift │ │ │ ├── mutating-method-in-cxx-execution.cpp │ │ │ ├── mutating-method-in-cxx.swift │ │ │ └── swift-method-availability-in-cxx.swift │ │ ├── module │ │ │ └── module-to-namespace.swift │ │ ├── ownership │ │ │ ├── consuming-parameter-in-cxx-execution.cpp │ │ │ ├── consuming-parameter-in-cxx.swift │ │ │ └── resilient-consuming-parameter-in-cxx-execution.cpp │ │ ├── properties │ │ │ ├── bool-is-has-in-cxx.swift │ │ │ ├── getter-in-cxx-execution.cpp │ │ │ ├── getter-in-cxx.swift │ │ │ ├── name-collision.swift │ │ │ ├── setter-in-cxx-execution.cpp │ │ │ ├── setter-in-cxx.swift │ │ │ └── swift-property-availability-in-cxx.swift │ │ ├── stdlib │ │ │ ├── array │ │ │ │ ├── array-execution-cxx17.cpp │ │ │ │ └── array-execution.cpp │ │ │ ├── combination-of-stdlib-generics-in-cxx.swift │ │ │ ├── core-foundation-types-in-cxx.swift │ │ │ ├── foundation-type-not-exposed-by-default-to-cxx.swift │ │ │ ├── optional │ │ │ │ ├── optional-execution.cpp │ │ │ │ └── optional-in-cxx.swift │ │ │ ├── stdlib-dep-inline-in-cxx.swift │ │ │ ├── stdlib-in-cxx-no-diagnostics-generated-header.cpp │ │ │ ├── string │ │ │ │ ├── string-conversions.cpp │ │ │ │ ├── string-in-cxx-execution.cpp │ │ │ │ └── string-to-nsstring.mm │ │ │ ├── swift-stdlib-imported-into-framework-module.swift │ │ │ ├── swift-stdlib-in-cxx.swift │ │ │ └── swift-synchronization-in-cxx.swift │ │ ├── structs │ │ │ ├── large-structs-pass-return-indirect-in-cxx-execution.cpp │ │ │ ├── large-structs-pass-return-indirect-in-cxx.swift │ │ │ ├── nested-structs-in-cxx-execution.cpp │ │ │ ├── nested-structs-in-cxx.swift │ │ │ ├── resilient-struct-in-cxx-execution.cpp │ │ │ ├── resilient-struct-in-cxx.swift │ │ │ ├── small-structs-pass-return-direct-in-cxx-execution.cpp │ │ │ ├── small-structs-pass-return-direct-in-cxx.swift │ │ │ ├── struct-move-semantics-in-cxx.cpp │ │ │ ├── struct-with-opaque-layout-resilient-member-in-cxx-execution.cpp │ │ │ ├── struct-with-opaque-layout-resilient-member-in-cxx.swift │ │ │ ├── struct-with-refcounted-member-execution.cpp │ │ │ ├── struct-with-refcounted-member.swift │ │ │ ├── swift-struct-availability-in-cxx.swift │ │ │ ├── swift-struct-circular-dependent-defs.swift │ │ │ ├── swift-struct-in-cxx.swift │ │ │ └── zero-sized-struct-in-cxx.swift │ │ └── unsupported │ │ │ ├── unexposed-non-public-api-in-cxx.swift │ │ │ ├── unsupported-decls-in-cxx.swift │ │ │ ├── unsupported-enums-in-cxx.swift │ │ │ ├── unsupported-funcs-in-cxx.swift │ │ │ ├── unsupported-generics-in-cxx.swift │ │ │ ├── unsupported-objc-decls-in-cxx.swift │ │ │ └── unsupported-types-in-cxx.swift │ ├── SwiftToCxxToSwift │ │ ├── hide-swift-module-namespace-in-swift.swift │ │ ├── import-swift-class-back-to-swift-execution.swift │ │ └── import-swift-class-back-to-swift.swift │ ├── SwiftToObjCxx │ │ └── optional-objc-class-in-obj-cxx.swift │ ├── WebAssembly │ │ ├── expose-swift-decls-to-wasm.swift │ │ ├── extern-wasm-cdecls.swift │ │ └── extern-wasm-decls-to-swift.swift │ └── lit.local.cfg ├── Interpreter │ ├── ClosureLeak.swift │ ├── ForeignMetadata.swift │ ├── FunctionConversion.swift │ ├── Inputs │ │ ├── CTypes │ │ │ ├── CTypes.h │ │ │ └── module.modulemap │ │ ├── ExplicitSubmodulesOnly.framework │ │ │ ├── Headers │ │ │ │ ├── A.h │ │ │ │ └── B.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── FakeUnavailableObjCFramework.framework │ │ │ ├── Headers │ │ │ │ └── FakeUnavailableObjCFramework.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── FakeUnavailableObjCFramework.m │ │ ├── FakeUnavailableSwiftDylib.swift │ │ ├── ForeignTypeMetadata1.swift │ │ ├── ForeignTypeMetadata2.swift │ │ ├── ImportAsMember │ │ │ ├── IAMVec.c │ │ │ ├── IAMVec.h │ │ │ └── module.modulemap │ │ ├── ObjCClasses │ │ │ ├── ObjCClasses.h │ │ │ ├── ObjCClasses.m │ │ │ └── module.modulemap │ │ ├── ObjCException.h │ │ ├── ObjCException.m │ │ ├── VerySmallObjCFramework.framework │ │ │ ├── Headers │ │ │ │ └── VerySmallObjCFramework.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── VerySmallObjCFramework.m │ │ ├── availability_host_os.h │ │ ├── availability_zippered.swift │ │ ├── bitwise_copyable_other.swift │ │ ├── dynamic_replacement_ReplacementA.swift │ │ ├── dynamic_replacement_chaining_A.swift │ │ ├── dynamic_replacement_chaining_B.swift │ │ ├── dynamic_replacement_dlclose.swift │ │ ├── dynamic_replacement_dlclose2.swift │ │ ├── dynamic_replacement_libA.swift │ │ ├── dynamic_replacement_module.swift │ │ ├── dynamic_replacement_property_observer_orig.swift │ │ ├── dynamic_replacement_property_observer_repl.swift │ │ ├── dynamic_replacement_protocol_self_orig.swift │ │ ├── dynamic_replacement_without_previous_calls1.swift │ │ ├── dynamic_replacement_without_previous_calls2.swift │ │ ├── enum-nonexhaustivity.h │ │ ├── implementation.swift │ │ ├── layout_string_witnesses_types.swift │ │ ├── layout_string_witnesses_types_resilient.swift │ │ ├── legacy_type_info │ │ │ └── jit_metadata_strategy.yaml │ │ ├── lto │ │ │ └── module1.swift │ │ ├── moveonly_resilient_type.swift │ │ ├── moveonly_split_module_source_input.swift │ │ ├── newtype.m │ │ ├── objc_direct.m │ │ ├── objc_implementation.h │ │ ├── objc_implementation.modulemap │ │ ├── objc_runtime_visible.h │ │ ├── objc_runtime_visible.m │ │ ├── opaque_result_type_runtime_call_other.swift │ │ ├── public_var_private_setter.swift │ │ ├── rdar80847020.h │ │ ├── rdar80847020.m │ │ ├── resilient_async.swift │ │ ├── resilient_async2.swift │ │ ├── resilient_generic_struct_v1.swift │ │ ├── resilient_generic_struct_v2.swift │ │ ├── resilient_multipayload_enum.swift │ │ ├── resilient_objc_class.swift │ │ ├── retain_release_wrappers.c │ │ ├── struct_extra_inhabitants_ExtraInhabitantResilientTypes.swift │ │ ├── testability_helper.swift │ │ ├── testable_key_path_2.swift │ │ ├── typed_throws_abi_impl.swift │ │ ├── unions-and-bitfields.h │ │ ├── usr │ │ │ └── include │ │ │ │ ├── module.modulemap │ │ │ │ └── newtype.h │ │ ├── variadic_generic_library.swift │ │ ├── variadic_generic_opaque_type_other.swift │ │ ├── vtables_multifile_2.swift │ │ └── vtables_multifile_testable_helper.swift │ ├── NewtypeLeak.swift │ ├── RosettaCode.swift │ ├── SDK │ │ ├── AnyObject_native_interop.swift │ │ ├── Cocoa_enums.swift │ │ ├── Cocoa_transitive.swift │ │ ├── CoreFoundation_casting.swift │ │ ├── CoreImage_without_Foundation.swift │ │ ├── Foundation_CFString.swift │ │ ├── Foundation_NSExpression.swift │ │ ├── Foundation_NSLocalizedString.swift │ │ ├── Foundation_NSLog.swift │ │ ├── Foundation_NSPredicate.swift │ │ ├── Foundation_NSRect.swift │ │ ├── Foundation_NSString.swift │ │ ├── Foundation_bridge.swift │ │ ├── Foundation_printing.swift │ │ ├── Foundation_test.swift │ │ ├── GLKit.swift │ │ ├── GLKit_jit.swift │ │ ├── GLKit_parse.swift │ │ ├── Inputs │ │ │ ├── BlockGlobals │ │ │ │ ├── BlockGlobals.h │ │ │ │ └── BlockGlobals.m │ │ │ ├── Foundation_bridge.h │ │ │ ├── ObjCWeak │ │ │ │ ├── ObjCWeak.h │ │ │ │ ├── ObjCWeak.m │ │ │ │ └── module.modulemap │ │ │ ├── OldABI │ │ │ │ ├── OldABI.h │ │ │ │ ├── OldABI.mm │ │ │ │ └── module.modulemap │ │ │ ├── check_class_for_archiving.h │ │ │ ├── class_getImageName-helper.swift │ │ │ ├── convenience_init_peer_delegation.h │ │ │ ├── convenience_init_peer_delegation.m │ │ │ ├── custom-modules │ │ │ │ ├── DispatchObjects.h │ │ │ │ └── module.modulemap │ │ │ ├── errors.h │ │ │ ├── mixed_mode │ │ │ │ ├── ObjCStuff.apinotes │ │ │ │ ├── ObjCStuff.h │ │ │ │ ├── UsingObjCStuff.swift │ │ │ │ └── module.modulemap │ │ │ ├── multi-file-imported-enum │ │ │ │ └── main.swift │ │ │ ├── objc_block_consumed.h │ │ │ ├── objc_bridge_cast_newtype.h │ │ │ ├── objc_implicit_inner_pointer │ │ │ │ ├── objc_implicit_inner_pointer.h │ │ │ │ └── objc_implicit_inner_pointer.m │ │ │ ├── object_literals-Resources │ │ │ │ └── testData.plist │ │ │ └── test.arc │ │ ├── KVO.swift │ │ ├── NSApplicationMain.swift │ │ ├── NSDecimal.swift │ │ ├── OS_objects.swift │ │ ├── Reflection_KVO.swift │ │ ├── SwiftNativeNSXXXCoding.swift │ │ ├── UIApplicationMain.swift │ │ ├── archive_attributes.swift │ │ ├── archive_attributes_stable_abi.swift │ │ ├── archive_compatibility.swift │ │ ├── archiving_generic_swift_class.swift │ │ ├── autolinking.swift │ │ ├── autorelease.swift │ │ ├── block_calls.swift │ │ ├── block_globals.swift │ │ ├── c_function_pointer_compile.swift │ │ ├── c_pointers.swift │ │ ├── cf.swift │ │ ├── cf_extensions.swift │ │ ├── cf_type_bridging.swift │ │ ├── cf_without_foundation.swift │ │ ├── check_class_for_archiving.swift │ │ ├── check_class_for_archiving_log.swift │ │ ├── class_as_object.swift │ │ ├── class_getImageName.swift │ │ ├── convenience_init_peer_delegation.swift │ │ ├── dictionary_pattern_matching.swift │ │ ├── dynamic_subclass.swift │ │ ├── equatable_hashable.swift │ │ ├── errors.swift │ │ ├── glob.swift │ │ ├── header_static.swift │ │ ├── interpret_with_options.swift │ │ ├── libc.swift │ │ ├── mapkit_header_static.swift │ │ ├── misc_osx.swift │ │ ├── mixed_mode_class_with_missing_properties.swift │ │ ├── multi-file-imported-enum.swift │ │ ├── objc_array_of_classes.swift │ │ ├── objc_block_consumed.swift │ │ ├── objc_block_generic.swift │ │ ├── objc_bridge.swift │ │ ├── objc_bridge_cast.swift │ │ ├── objc_bridge_cast_newtype.swift │ │ ├── objc_cast.swift │ │ ├── objc_currying.swift │ │ ├── objc_dealloc.swift │ │ ├── objc_dynamic_lookup.swift │ │ ├── objc_dynamic_subclass_protocol_lookup.swift │ │ ├── objc_extensions.swift │ │ ├── objc_factory_method.swift │ │ ├── objc_failable_initializers.swift │ │ ├── objc_fast_enumeration.swift │ │ ├── objc_getClass.swift │ │ ├── objc_implicit_inner_pointer.swift │ │ ├── objc_inner_pointer.swift │ │ ├── objc_keypath.swift │ │ ├── objc_mangling.swift │ │ ├── objc_nil.swift │ │ ├── objc_ns_enum.swift │ │ ├── objc_nsstring_bridge.swift │ │ ├── objc_old_swift.swift │ │ ├── objc_protocol_lookup.swift │ │ ├── objc_protocol_lookup_jit.swift │ │ ├── objc_subclass.swift │ │ ├── objc_swift_getObjectType.swift │ │ ├── objc_switch.swift │ │ ├── objc_unowned.swift │ │ ├── objc_witness_to_swift_protocol.swift │ │ ├── object_literals.swift │ │ ├── protocol_lookup_foreign.swift │ │ ├── submodules_smoke_test.swift │ │ ├── weak_objc_actor_interop.swift │ │ └── weak_objc_interop.swift │ ├── actor_class_forbid_objc_assoc_objects.swift │ ├── actor_subclass_metatypes.swift │ ├── algorithms.swift │ ├── apply_partial_apply_consuming_elim.swift │ ├── archetype_casts.swift │ ├── array_of_optional.swift │ ├── arrays.swift │ ├── async.swift │ ├── async_dynamic.swift │ ├── async_dynamic_replacement.swift │ ├── async_fib.swift │ ├── async_resilience.swift │ ├── async_witness_matching.swift │ ├── availability_host_os.swift │ ├── availability_maccatalyst_zippered.swift │ ├── availability_weak_linking.swift │ ├── binary_operator_perf.swift │ ├── bitvector.swift │ ├── bitwise_copyable.swift │ ├── bool_as_generic.swift │ ├── break_continue.swift │ ├── bridged_casts_folding.swift │ ├── builtin.swift │ ├── builtin_bridge_object.swift │ ├── c_bitfields.swift │ ├── c_unions.swift │ ├── capture_inout.swift │ ├── capture_top_level.swift │ ├── capture_unowned.swift │ ├── casts.swift │ ├── cdecl_implementation_run.swift │ ├── cdecl_official_run.swift │ ├── checked_cast_test.swift │ ├── class_forbid_objc_assoc_objects.swift │ ├── class_in_constrained_extension.swift │ ├── class_resilience.swift │ ├── classes.swift │ ├── closure_zero_size_allocation.swift │ ├── closures.swift │ ├── collection_casts.swift │ ├── complex.swift │ ├── conditional_conformances.swift │ ├── conditional_conformances_modules.swift │ ├── conditional_conformances_runtime.swift │ ├── conditional_conformances_smoke.swift │ ├── constructor.swift │ ├── consume_operator_kills_copyable_values.swift.gyb │ ├── convenience_init_peer_delegation.swift │ ├── convenience_init_swift5.swift │ ├── conversions.swift │ ├── coroutine_accessors_default_implementations.swift │ ├── coroutine_accessors_old_abi_nounwind.swift │ ├── currying_generics.swift │ ├── currying_protocols.swift │ ├── defer.swift │ ├── deinit_recursive_no_overflow.swift │ ├── dependent_reabstraction.swift │ ├── destructors.swift │ ├── dictOfAny.swift │ ├── dynamicReplacement_property_observer.swift │ ├── dynamic_cast_dict_conditional_type_metadata.swift │ ├── dynamic_cast_dict_unconditional_type_metadata.swift │ ├── dynamic_cast_optionals_to_nsobject.swift │ ├── dynamic_cast_set_conditional_type_metadata.swift │ ├── dynamic_cast_set_unconditional_type_metadata.swift │ ├── dynamic_isolation_checks_for_closures.swift │ ├── dynamic_lookup.swift │ ├── dynamic_replacement.swift │ ├── dynamic_replacement_chaining.swift │ ├── dynamic_replacement_implicit_dynamic_nonobjc.swift │ ├── dynamic_replacement_multifile │ │ ├── Inputs │ │ │ ├── dynamic_replacement_multi_file_A.swift │ │ │ └── dynamic_replacement_multi_file_B.swift │ │ └── main.swift │ ├── dynamic_replacement_opaque_result2.swift │ ├── dynamic_replacement_protocol_self.swift │ ├── dynamic_replacement_weak_linked.swift │ ├── dynamic_replacement_without_previous_calls.swift │ ├── dynamic_self.swift │ ├── element_archetype_captures.swift │ ├── enforce_exclusive_access.swift │ ├── enum-nonexhaustivity.swift │ ├── enum.swift │ ├── enum_Error.swift │ ├── enum_bridged.swift │ ├── enum_equatable_hashable_correctness.swift │ ├── enum_equatable_hashable_correctness_future.swift │ ├── enum_resilience.swift │ ├── enum_runtime_alignment.swift │ ├── enum_unavailable_cases.swift │ ├── error_self_conformance.swift │ ├── errors.swift │ ├── errors_imported.swift │ ├── escapable_generics_casting.swift │ ├── existential_member_accesses_self_assoctype.swift │ ├── existential_transform.swift │ ├── extended_existential.swift │ ├── extended_grapheme_cluster_literal.swift │ ├── external_key_path_ref.swift │ ├── failable_initializers.swift │ ├── failable_initializers_root_class.swift │ ├── field_offset_generic.swift │ ├── fixed-noncopyable-with-deinit-capture.swift │ ├── fractal.swift │ ├── function_metatypes.swift │ ├── functions.swift │ ├── generalized_accessors.swift │ ├── generic_casts.swift │ ├── generic_casts_objc.swift │ ├── generic_class.swift │ ├── generic_class_empty_field.swift │ ├── generic_implicit_closure.swift │ ├── generic_objc_subclass.swift │ ├── generic_ref_counts.swift │ ├── generic_struct.swift │ ├── generic_subscript.swift │ ├── generic_subscript_static.swift │ ├── generic_tuple.swift │ ├── generics.swift │ ├── global_resilience.swift │ ├── has_symbol.swift │ ├── hello_func.swift │ ├── hello_toplevel.swift │ ├── implicit-module-build-overload-availability-inlinable-function.swift │ ├── import_as_member.swift │ ├── import_parameter_pack_library.swift │ ├── imported_objc_generics.swift │ ├── imported_objc_generics_extension.swift │ ├── indirect_enum.swift │ ├── init_accessors.swift │ ├── initializers.swift │ ├── inlinable_init_accessors.swift │ ├── interpolation.swift │ ├── interpret_load_framework.swift │ ├── issue-53000.swift │ ├── issue-53332.swift │ ├── jit_metadata_strategy.swift │ ├── keypath.swift │ ├── layout_reabstraction.swift │ ├── layout_string_witnesses_dynamic.swift │ ├── layout_string_witnesses_objc.swift │ ├── layout_string_witnesses_static.swift │ ├── lazy │ │ ├── deferred_syntax_errors.swift │ │ ├── deferred_type_errors.swift │ │ ├── globals.swift │ │ └── linkage_promotion.swift │ ├── lazy_properties.swift │ ├── lifetime_nonmutating_address_only.swift │ ├── llvm_link_time_opt.swift │ ├── lto_static_lib.swift │ ├── mandatory_inlining.swift │ ├── mandelbrot.swift │ ├── metadata_cycles.swift │ ├── metadata_cycles_threaded.swift │ ├── metatype.swift │ ├── move_expr_moveonly_partial_consumption.swift │ ├── move_expr_moveonly_partial_consumption_addr.swift │ ├── moveonly.swift │ ├── moveonly_address_maximize.swift │ ├── moveonly_bufferview.swift │ ├── moveonly_computed_property_in_class.swift │ ├── moveonly_consuming_param.swift │ ├── moveonly_deinit_autoclosure.swift │ ├── moveonly_deinit_separate_library.swift │ ├── moveonly_discard.swift │ ├── moveonly_escaping_capture.swift │ ├── moveonly_escaping_capture_lifetimes.swift │ ├── moveonly_escaping_definite_initialization.swift │ ├── moveonly_existentials.swift │ ├── moveonly_field_in_class_reflection.swift │ ├── moveonly_fixedsizequeue.swift │ ├── moveonly_foundation.swift │ ├── moveonly_generics.swift │ ├── moveonly_generics_associatedtype.swift │ ├── moveonly_generics_casting.swift │ ├── moveonly_generics_casting_assoctypes.swift │ ├── moveonly_generics_opaque.swift │ ├── moveonly_linkedlist.swift │ ├── moveonly_linkedlist_2_simple.swift │ ├── moveonly_loop.swift │ ├── moveonly_maximize.swift │ ├── moveonly_partial_consume_value.swift │ ├── moveonly_read_modify_coroutines.swift │ ├── moveonly_reflection.swift │ ├── moveonly_reinit_noncontiguous.swift │ ├── moveonly_resilient_capture_during_deinit.swift │ ├── moveonly_resilient_deinit_on_throw.swift │ ├── moveonly_resilient_deinit_on_throw_same_module.swift │ ├── moveonly_split_module_source_deinit.swift │ ├── moveonly_swiftskell.swift │ ├── multi_payload_extra_inhabitant.swift │ ├── multi_payload_shifting.swift │ ├── multiple_varargs.swift │ ├── named_opaque_result_types.swift │ ├── nested_generics.swift │ ├── noimplicitcopy.swift │ ├── noimplicitcopy_parameters.swift │ ├── objc_bool.swift │ ├── objc_class_properties.swift │ ├── objc_class_properties_runtime.swift │ ├── objc_class_resilience.swift │ ├── objc_class_resilience_stubs.swift │ ├── objc_direct.swift │ ├── objc_extensions.swift │ ├── objc_extensions_jit.swift │ ├── objc_failable_composed_with_throwing_initializers.swift │ ├── objc_failable_initializers.swift │ ├── objc_implementation.swift │ ├── objc_implementation_objc_client.m │ ├── objc_implementation_resilience.swift │ ├── objc_implementation_resilience_objc_client.m │ ├── objc_implementation_resilience_swift_client.swift │ ├── objc_implementation_swift_client.swift │ ├── objc_metatypes.swift │ ├── objc_method_with_sendable_generic_requirement.swift │ ├── objc_protocol_symbolic_reference.swift │ ├── objc_protocols.swift │ ├── objc_runtime_visible.swift │ ├── objc_throw_in_noescape_block.swift │ ├── objc_throwing_initializers.swift │ ├── objc_types_as_members.swift │ ├── object.swift │ ├── opaque_result_type_runtime_call.swift │ ├── opaque_return_type_protocol_ext.swift │ ├── opt_unowned.swift │ ├── opt_unowned_objc.swift │ ├── optional.swift │ ├── optional_lvalues.swift │ ├── package_resilience_super_class.swift │ ├── parameterized_existentials.swift │ ├── patternmatch_on_enum_protocol_leak.swift │ ├── polymorphic_builtins.swift │ ├── preconcurrency_conformances.swift │ ├── preconcurrency_conformances_with_disabled_checks.swift │ ├── preconcurrency_conformances_with_legacy_isSameExecutor.swift │ ├── process_arguments.swift │ ├── properties.swift │ ├── property_wrappers.swift │ ├── protocol_composition_with_markers.swift │ ├── protocol_extensions.swift │ ├── protocol_initializers.swift │ ├── protocol_initializers_class.swift │ ├── protocol_lookup.swift │ ├── protocol_lookup_jit.swift │ ├── protocol_resilience.swift │ ├── protocols.swift │ ├── ptrauth-function-pointers.swift │ ├── ptrauth-kvo.swift │ ├── raw_layout.swift │ ├── raw_layout_deinit.swift │ ├── rdar108705703.swift │ ├── rdar119541554.swift │ ├── rdar128667580.swift │ ├── rdar149782365.swift │ ├── rdar15674812.swift │ ├── rdar80847020.swift │ ├── rdar97914498.swift │ ├── refcount_overflow.swift │ ├── reference_bindings.swift │ ├── resilient_metadata_cycles.swift │ ├── resilient_multipayload_enum.swift │ ├── return_from_main.swift │ ├── runtime_name_local_class_opaque_type.swift │ ├── selector_arguments.swift │ ├── sendable_erasure_to_any_in_preconcurrency.swift │ ├── shebang-direct.swift │ ├── shebang-env.swift │ ├── simd.swift │ ├── simple.swift │ ├── slices.swift │ ├── spi_witness_availability.swift │ ├── statements.swift │ ├── static_keypaths.swift │ ├── static_objc_var.swift │ ├── string_literal.swift │ ├── strong_retain_unowned_mispairing.swift │ ├── struct_equatable_hashable_correctness.swift │ ├── struct_extra_inhabitants.swift │ ├── struct_resilience.swift │ ├── structs.swift │ ├── subclass_existentials.swift │ ├── subclass_existentials_objc.swift │ ├── submodules_smoke_test.swift │ ├── subscripting.swift │ ├── super_constructor.swift │ ├── switch.swift │ ├── switch_default.swift │ ├── switch_objc.swift │ ├── switch_resilience.swift │ ├── switch_where_clause.swift │ ├── synthesized_extension_conformances.swift │ ├── ternary_expr.swift │ ├── testability.swift │ ├── testable_key_path.swift │ ├── throwing_initializers.swift │ ├── tuple_casts.swift │ ├── tuples.swift │ ├── typed_throws_abi.swift │ ├── typeof.swift │ ├── unavailable_decl_optimization_stub.swift │ ├── unicode_scalar_literal.swift │ ├── unions-and-bitfields.swift │ ├── unresolvable_dynamic_metadata_cycles.swift │ ├── unused-type.swift │ ├── use_public_var_private_setter.swift │ ├── value_generics.swift │ ├── varargs.swift │ ├── variadic_generic_captures.swift │ ├── variadic_generic_captures_2.swift │ ├── variadic_generic_conditional_conformances.swift │ ├── variadic_generic_conformances.swift │ ├── variadic_generic_func_types.swift │ ├── variadic_generic_opaque_type.swift │ ├── variadic_generic_tuples.swift │ ├── variadic_generic_type_witnesses.swift │ ├── variadic_generic_types.swift │ ├── vtables_multifile.swift │ ├── vtables_multifile_testable.swift │ ├── weak.swift │ ├── weak_objc.swift │ ├── where_clause_contextually_generic_decl.swift │ ├── wildcard_dispatch_on_catch.swift │ ├── withoutActuallyEscaping.swift │ ├── withoutActuallyEscapingBlocks.swift │ └── writeback.swift ├── LLVMPasses │ ├── allocation-deletion.ll │ ├── basic.ll │ ├── contract.ll │ ├── crash.ll │ ├── disable_llvm_optzns.ll │ ├── llvm-aa.ll │ ├── loopinfo.swift │ ├── merge_func.ll │ ├── merge_func_coff.ll │ ├── merge_func_preserves_vfe.ll │ ├── merge_func_ptrauth.ll │ ├── merge_func_ptrauth.swift │ ├── merge_func_return_type_cast.ll │ ├── missing_runtime_declarations.ll │ └── release_motion_landingpad.ll ├── LinkerSections │ ├── Inputs │ │ ├── FunctionSections.swift │ │ └── FunctionSectionsUse.swift │ ├── function_sections-lld.swift │ ├── function_sections.swift │ └── function_sections_ir_check.swift ├── Macros │ ├── DebugDescription │ │ ├── dollar_handling.swift │ │ ├── error_complex_implementation.swift │ │ ├── error_computed_properties.swift │ │ ├── error_custom_interpolation.swift │ │ ├── error_generic_definition.swift │ │ ├── error_interpolation_expression.swift │ │ ├── error_protocol.swift │ │ ├── explicit_self_property.swift │ │ ├── extension.swift │ │ ├── implicit_self_property.swift │ │ ├── linkage.swift │ │ ├── long_string.swift │ │ ├── property_chain.swift │ │ ├── static_string.swift │ │ └── supported_description.swift │ ├── Inputs │ │ ├── AnonTypes1.swift │ │ ├── AnonTypes2.swift │ │ ├── ColorLib.swift │ │ ├── ConformanceMacroLib.swiftinterface │ │ ├── evil_macro_definitions.swift │ │ ├── freestanding_macro_library.swift │ │ ├── freestanding_macro_library_2.swift │ │ ├── macro_expand_conformances_other.swift │ │ ├── macro_expand_other.swift │ │ ├── macro_library.swift │ │ ├── objc_cxx_macro_definitions.swift │ │ ├── syntax_macro_definitions.swift │ │ ├── top_level_freestanding_other.swift │ │ ├── variadic_macros.swift │ │ ├── with_macro_default_arg_interface.swift │ │ ├── with_macro_default_arg_module.swift │ │ └── with_macro_default_arg_same_module.swift │ ├── SwiftifyImport │ │ ├── CountedBy │ │ │ ├── Anonymous.swift │ │ │ ├── ConstantCount.swift │ │ │ ├── CountExpr.swift │ │ │ ├── MultipleParams.swift │ │ │ ├── Mutable.swift │ │ │ ├── MutableSpan.swift │ │ │ ├── NamedParams.swift │ │ │ ├── Nullable.swift │ │ │ ├── PointerReturn.swift │ │ │ ├── QualifiedTypes.swift │ │ │ ├── Return.swift │ │ │ ├── SharedCount.swift │ │ │ ├── SimpleCount.swift │ │ │ ├── SimpleSpan.swift │ │ │ ├── SimpleSpanWithReturn.swift │ │ │ ├── SpanAndUnsafeBuffer.swift │ │ │ ├── Unwrapped.swift │ │ │ └── Whitespace.swift │ │ ├── CxxSpan │ │ │ ├── Inputs │ │ │ │ ├── module.modulemap │ │ │ │ └── std-span.h │ │ │ ├── LifetimeboundSpan.swift │ │ │ └── NoEscapeSpan.swift │ │ ├── MacroErrors │ │ │ ├── ArrayType.swift │ │ │ ├── DynamicCountExpr.swift │ │ │ ├── DynamicEnum.swift │ │ │ ├── DynamicPointerIndex.swift │ │ │ ├── InvalidCount.swift │ │ │ ├── NullableSpan.swift │ │ │ ├── Pointee.swift │ │ │ ├── PointerIndexOutOfBounds.swift │ │ │ ├── SamePointer.swift │ │ │ ├── UnexpectedCountExpr.swift │ │ │ ├── UnexpectedCountType.swift │ │ │ └── UnexpectedPointerType.swift │ │ └── SizedBy │ │ │ ├── MultipleParams.swift │ │ │ ├── Mutable.swift │ │ │ ├── MutableRawSpan.swift │ │ │ ├── Nullable.swift │ │ │ ├── Opaque.swift │ │ │ ├── PointerReturn.swift │ │ │ ├── Return.swift │ │ │ ├── SharedCount.swift │ │ │ ├── SimpleRawSpan.swift │ │ │ ├── SimpleRawSpanWithReturn.swift │ │ │ ├── SimpleSize.swift │ │ │ ├── SizeExpr.swift │ │ │ ├── TypedPointer.swift │ │ │ └── Unwrapped.swift │ ├── accessor_has_storage_cycle.swift │ ├── accessor_macros.swift │ ├── attached_macros_diags.swift │ ├── bind_extensions_request_cycle.swift │ ├── composed_macro.swift │ ├── default_main_actor_nonisolated.swift │ ├── delayed_parsing.swift │ ├── expand_on_imported.swift │ ├── expand_on_imported_objc.swift │ ├── expand_peers_hang.swift │ ├── extension_macro_plugin.swift │ ├── external-macro-without-decl.swift │ ├── fine_grained_dependencies.swift │ ├── freestanding_multifile.swift │ ├── if_expr.swift │ ├── imported_conformance_macro.swift │ ├── imported_type_error.swift │ ├── init_accessor.swift │ ├── issue-80835.swift │ ├── lazy_parsing.swift │ ├── lit.local.cfg │ ├── macro_and_typealias.swift │ ├── macro_attribute_expansiondecl.swift │ ├── macro_availability_macos.swift │ ├── macro_availability_macosx.swift │ ├── macro_codeitems_disabled.swift │ ├── macro_default_argument_access_level.swift │ ├── macro_default_argument_diagnostics.swift │ ├── macro_default_argument_library.swift │ ├── macro_default_argument_serialized.swift │ ├── macro_default_argument_source_location.swift │ ├── macro_default_argument_swiftinterface.swift │ ├── macro_expand.swift │ ├── macro_expand_attributes.swift │ ├── macro_expand_body.swift │ ├── macro_expand_closure.swift │ ├── macro_expand_codeitems.swift │ ├── macro_expand_conformances.swift │ ├── macro_expand_conformances_multi.swift │ ├── macro_expand_conformances_xref.swift │ ├── macro_expand_extensions.swift │ ├── macro_expand_member_with_conformances.swift │ ├── macro_expand_other.swift │ ├── macro_expand_peers.swift │ ├── macro_expand_primary.swift │ ├── macro_expand_synthesized_members.swift │ ├── macro_expand_throwing.swift │ ├── macro_expand_toplevel.swift │ ├── macro_expand_variadic.swift │ ├── macro_explicit_generic_args.swift │ ├── macro_fixits.swift │ ├── macro_generated_header_cxx.swift │ ├── macro_generated_header_objc.swift │ ├── macro_invalid.swift │ ├── macro_keywordname.swift │ ├── macro_misc_diags.swift │ ├── macro_misc_diags_swift5.swift │ ├── macro_misc_diags_swift7.swift │ ├── macro_mixedpluginpath.swift │ ├── macro_plugin_basic.swift │ ├── macro_plugin_broken.swift │ ├── macro_plugin_broken_shlib.swift │ ├── macro_plugin_disable_sandbox.swift │ ├── macro_plugin_error.swift │ ├── macro_plugin_searchorder.swift │ ├── macro_plugin_server.swift │ ├── macro_plugin_server_mod.swift │ ├── macro_self.swift │ ├── macro_shadowing.swift │ ├── macro_swiftdeps.swift │ ├── macro_unique_name_embedded.swift │ ├── macro_vfs.swift │ ├── macros_diagnostics.swift │ ├── macros_library_mode_diagnostics.swift │ ├── magic_literal_expansion.swift │ ├── option_set.swift │ ├── parsing.swift │ ├── print_clang_expand_on_imported.swift │ ├── print_clang_expand_on_imported_objc.swift │ ├── rdar154771596.swift │ ├── serialize_plugin_search_paths.swift │ ├── skip_non_exportable_decls.swift │ └── top_level_freestanding.swift ├── Migrator │ ├── Inputs │ │ ├── API-function-hoist.json │ │ ├── API.json │ │ ├── CallExpr.json │ │ ├── Cities.swift │ │ ├── DoubleEditAPI.json │ │ ├── MyAppKit.swift │ │ ├── MySwift.swift │ │ ├── SpecialCaseAPI.json │ │ ├── api-diff-data-dir │ │ │ ├── ios3.json │ │ │ ├── ios4.json │ │ │ ├── macos3.json │ │ │ ├── macos4.json │ │ │ ├── overlay3.json │ │ │ ├── overlay4.json │ │ │ ├── tvos3.json │ │ │ ├── tvos4.json │ │ │ ├── watchos3.json │ │ │ └── watchos4.json │ │ ├── conservative_objc_inference.swift │ │ ├── never_compiles_safely_exits_breaking_code.swift │ │ ├── no_duplicate_aarch64_use_tbi_ofm.json │ │ ├── objc_inference.swift │ │ ├── objc_inference_cross_file_A.swift │ │ ├── objc_inference_cross_file_B.swift │ │ ├── override.json │ │ ├── qualified.json │ │ ├── rename_cross_file_2.swift │ │ ├── string-representable.json │ │ └── substring_to_string_conversion.swift │ ├── always_remove_old_remap_file.swift │ ├── api-diff-data-dir.swift │ ├── api-special-cases.swift │ ├── api-special-cases.swift.expected │ ├── avoid_insert_existing_functions.swift │ ├── avoid_insert_existing_functions.swift.expected │ ├── call_expr_result.swift │ ├── call_expr_result.swift.expected │ ├── double_fixit_ok.swift │ ├── double_fixit_ok.swift.expected │ ├── fixit-NSObject-hashValue.swift │ ├── fixit-NSObject-hashValue.swift.expected │ ├── fixit_flatMap.swift │ ├── fixit_flatMap.swift.expected │ ├── function-hoist.swift │ ├── function-hoist.swift.expected │ ├── insert_replace_fixit.swift │ ├── insert_replace_fixit.swift.expected │ ├── invalid_sourceloc.swift │ ├── member.swift │ ├── member.swift.expected │ ├── missing_script.swift │ ├── mock-sdk │ │ ├── Bar.framework │ │ │ ├── Headers │ │ │ │ └── Bar.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── TestMyTime.framework │ │ │ ├── Headers │ │ │ ├── MyTime.h │ │ │ ├── TestMyTime.apinotes │ │ │ └── TestMyTime.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── never_compiles_safely_exits.swift │ ├── no_ast_passes_after_swift4.swift │ ├── no_ast_passes_after_swift4.swift.expected │ ├── no_double_edit_ast_pass.swift │ ├── no_double_edit_ast_pass.swift.expected │ ├── no_duplicate_aarch64_use_tbi.swift │ ├── no_extraneous_argument_labels.swift │ ├── no_extraneous_argument_labels.swift.expected │ ├── no_var_to_let.swift │ ├── null_migration.swift │ ├── optional_try_migration.swift │ ├── optional_try_migration.swift.expected │ ├── override_migration.swift │ ├── post_fixit_pass.swift │ ├── post_fixit_pass.swift.expected │ ├── pre_fixit_pass.swift │ ├── pre_fixit_pass.swift.expected │ ├── pre_fixit_pass_still_failed.swift │ ├── property.swift │ ├── property.swift.expected │ ├── qualified-replacement.swift │ ├── qualified-replacement.swift.expected │ ├── rdar31892850.swift │ ├── remove_override.swift │ ├── remove_override.swift.expected │ ├── rename-func-decl.swift │ ├── rename-func-decl.swift.expected │ ├── rename-init.swift │ ├── rename-init.swift.expected │ ├── rename.swift │ ├── rename.swift.expected │ ├── rename_cross_file.swift │ ├── rename_cross_file.swift.expected │ ├── stdlib_rename.swift │ ├── stdlib_rename.swift.expected │ ├── string-representable.swift │ ├── string-representable.swift.expected │ ├── substring_to_string_conversion.swift │ ├── substring_to_string_conversion.swift.expected │ ├── swift_version_change.swift │ ├── wrap_optional.swift │ └── wrap_optional.swift.expected ├── Misc │ ├── Inputs │ │ ├── dumped_api.swift │ │ ├── empty.swiftinterface │ │ ├── serialized-diagnostics-batch-mode-helper.swift │ │ ├── serialized-diagnostics-batch-mode-other.swift │ │ └── serialized-diagnostics-batch-mode-suppression-helper.swift │ ├── dump_api.swift │ ├── effectful_properties_keypath.swift │ ├── expression_too_complex_2.swift │ ├── expression_too_complex_3.swift │ ├── fatal_error.swift │ ├── floatTruncation.swift │ ├── maccatalyst_load_commands.swift │ ├── misc_diagnostics.swift │ ├── opt-debug-forbid-typecheck-prefix.swift │ ├── parse_test.swift │ ├── prioritize_solver_memory_threshold.swift │ ├── serialized-diagnostics-batch-mode-nonprimary-errors-only.swift │ ├── serialized-diagnostics-batch-mode-primary-errors.swift │ ├── serialized-diagnostics-batch-mode.swift │ ├── serialized-diagnostics-file.swift │ ├── serialized-diagnostics-interpret-mode.swift │ ├── serialized-diagnostics-prettyprint.swift │ ├── serialized-diagnostics.swift │ ├── stats_dir.swift │ ├── stats_dir_failure_count.swift │ ├── stats_dir_instructions.swift │ ├── stats_dir_long_path_name.swift │ ├── stats_dir_module_interface.swift │ ├── stats_dir_plausible_maxrss.swift │ ├── stats_dir_profiler.swift │ ├── stats_dir_tracer.swift │ ├── stats_dir_verify_module_interface.swift │ ├── stats_max_determinism.swift │ ├── target-cpu.swift │ ├── tbi.sil │ ├── verify-swift-feature-testing.test-sh │ └── you-should-be-using-LLVM_DEBUG.test-sh ├── ModuleInterface │ ├── BackDeployedAttrBad.swiftinterface │ ├── BackDeployedAttrGood.swiftinterface │ ├── BadStdlib.swiftinterface │ ├── Conformances.swiftinterface │ ├── ConstKeyword.swift │ ├── DefaultArgs.swiftinterface │ ├── DerivedWitnesses.swiftinterface │ ├── ExplicitInterfaceBuild.swiftinterface │ ├── ExplicitInterfaceObjC.swiftinterface │ ├── IndexWhileBuilding.swiftinterface │ ├── Inputs │ │ ├── BadStdlib.sdk │ │ │ └── usr │ │ │ │ ├── include │ │ │ │ ├── ClangMod.h │ │ │ │ └── module.modulemap │ │ │ │ └── lib │ │ │ │ └── swift │ │ │ │ └── Swift.swiftmodule │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ ├── BrokenFramework.framework │ │ │ └── Modules │ │ │ │ └── BrokenFramework.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ ├── arm64e-apple-macos.swiftinterface │ │ │ │ ├── x86_64-apple-macos.swiftinterface │ │ │ │ └── x86_64.swiftinterface │ │ ├── ConformancesUser.swift │ │ ├── CoreVegetable.swift │ │ ├── NoncopyableGenerics_Misc.swift │ │ ├── OldActor.swiftinterface │ │ ├── PtrAuthFramework.framework │ │ │ └── Modules │ │ │ │ └── PtrAuthFramework.swiftmodule │ │ │ │ ├── arm64e-apple-ios.swiftinterface │ │ │ │ ├── arm64e-apple-macos.swiftinterface │ │ │ │ └── arm64e.swiftinterface │ │ ├── SR77756 │ │ │ ├── dynamic.swiftinterface │ │ │ └── static.swiftinterface │ │ ├── ShadowyHorror.swift │ │ ├── TestModule.swift │ │ ├── alternative-interfaces │ │ │ └── BrokenFramework.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ ├── arm64e-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ ├── assoc_type_inference_tvos │ │ │ ├── assoc.h │ │ │ └── module.modulemap │ │ ├── enums-layout-helper.swift │ │ ├── existential-any-ignore-missing-in-interface.swiftinterface │ │ ├── exported-module-name-after │ │ │ ├── CoreKit.h │ │ │ ├── ExportAsCoreKit.h │ │ │ └── module.modulemap │ │ ├── exported-module-name-before │ │ │ ├── CoreKit.h │ │ │ ├── ExportAsCoreKit.h │ │ │ └── module.modulemap │ │ ├── extension-available.swift │ │ ├── implicit-options-inheritance │ │ │ ├── CIMod.h │ │ │ ├── SIMod.swiftinterface │ │ │ ├── module.modulemap │ │ │ └── test-dummy.modulemap │ │ ├── imports-clang-modules │ │ │ ├── A.h │ │ │ ├── B1.h │ │ │ ├── B2.h │ │ │ ├── B3.h │ │ │ ├── C.h │ │ │ ├── D.h │ │ │ ├── NotSoSecret.h │ │ │ ├── NotSoSecret2.h │ │ │ ├── Secret_BAD.h │ │ │ └── module.modulemap │ │ ├── imports-other.swift │ │ ├── imports-submodule-order │ │ │ └── module.modulemap │ │ ├── inherited-objc-initializers │ │ │ ├── InheritedObjCInits.h │ │ │ └── module.modulemap │ │ ├── lifetime_dependence.swift │ │ ├── lifetime_underscored_dependence.swift │ │ ├── macro-only-module │ │ │ ├── ImportsMacroSpecificClangModule.swiftinterface │ │ │ ├── OnlyWithMacro.h │ │ │ ├── SubImportsMacroSpecificClangModule.swiftinterface │ │ │ └── module.modulemap │ │ ├── make-unreadable.py │ │ ├── moveonly_api.swift │ │ ├── objc_implementation │ │ │ ├── module.modulemap │ │ │ └── objc_implementation.h │ │ ├── opaque-result-types-client.swift │ │ ├── opaque-type-abi-name │ │ │ ├── Bottom.swiftinterface │ │ │ └── Top.swiftinterface │ │ ├── other.swift │ │ ├── preconcurrency.swift │ │ ├── relative_path │ │ │ ├── A.swiftmodule │ │ │ │ └── arm64-apple-macos.swiftinterface │ │ │ └── B.swiftmodule │ │ │ │ └── arm64-apple-macos.swiftinterface │ │ ├── resource_dir │ │ │ └── apinotes │ │ │ │ └── ClangModule.apinotes │ │ ├── result_builders_client.swift │ │ ├── stdlib_rebuild │ │ │ └── usr │ │ │ │ ├── include │ │ │ │ ├── ClangModuleHeader.h │ │ │ │ └── module.modulemap │ │ │ │ └── lib │ │ │ │ └── swift │ │ │ │ ├── OtherModule.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ ├── Swift.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ ├── SwiftOnoneSupport.swiftmodule │ │ │ │ └── arm64-apple-macos.swiftinterface │ │ │ │ ├── _Concurrency.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ └── _StringProcessing.swiftmodule │ │ │ │ └── arm64-apple-macos.swiftinterface │ │ ├── submodule-type │ │ │ ├── HasSubmodule.h │ │ │ ├── Submodule.h │ │ │ └── module.modulemap │ │ └── suppress-warnings │ │ │ └── SuppressWarnings.swiftinterface │ ├── ModuleCache │ │ ├── Inputs │ │ │ ├── check-is-forwarding-module.py │ │ │ ├── check-is-new.py │ │ │ ├── check-is-old.py │ │ │ ├── force-module-loading-mode │ │ │ │ └── Lib.swiftinterface │ │ │ ├── make-old.py │ │ │ ├── mock-sdk │ │ │ │ ├── ExportedLib.swiftinterface │ │ │ │ ├── SdkLib.swiftinterface │ │ │ │ └── usr │ │ │ │ │ └── include │ │ │ │ │ ├── SomeCModule.h │ │ │ │ │ └── module.modulemap │ │ │ ├── prebuilt-module-cache │ │ │ │ ├── Lib.swiftinterface │ │ │ │ └── LibExporter.swiftinterface │ │ │ ├── sdk-build-ver.1.plist │ │ │ └── sdk-build-ver.2.plist │ │ ├── ObjCAttrWithoutFoundation.swiftinterface │ │ ├── RebuildRemarks │ │ │ ├── malformed-compiled-module.swift │ │ │ ├── missing-dependency.swift │ │ │ ├── out-of-date-cached-module.swift │ │ │ ├── out-of-date-compiled-module.swift │ │ │ ├── out-of-date-forwarding-module.swift │ │ │ └── rebuild-transitive-import.swift │ │ ├── SDKDependencies-disable-validation.swift │ │ ├── SDKDependencies.swift │ │ ├── SerializedSIL.swiftinterface │ │ ├── SystemDependencies.swiftinterface │ │ ├── WrongName.swiftinterface │ │ ├── force-module-load-mode-bad-config.swift │ │ ├── force-module-loading-mode-archs.swift │ │ ├── force-module-loading-mode-framework.swift │ │ ├── force-module-loading-mode.swift │ │ ├── forwarding-module-dependencies.swift │ │ ├── module-cache-bad-version.swift │ │ ├── module-cache-deployment-target-irrelevant.swift │ │ ├── module-cache-diagnostics.swift │ │ ├── module-cache-effective-version-irrelevant.swift │ │ ├── module-cache-errors-in-importing-file.swift │ │ ├── module-cache-init.swift │ │ ├── module-cache-intermediate-mtime-change-rebuilds-only-intermediate.swift │ │ ├── module-cache-intermediate-size-change-rebuilds-only-intermediate.swift │ │ ├── module-cache-leaf-mtime-change-rebuilds-all.swift │ │ ├── module-cache-leaf-size-change-rebuilds-all.swift │ │ ├── module-cache-no-rebuild.swift │ │ ├── module-cache-options.swift │ │ ├── module-cache-sdk-build-version.swift │ │ ├── prebuilt-module-cache-archs.swift │ │ ├── prebuilt-module-cache-fallback.swift │ │ ├── prebuilt-module-cache-forwarding.swift │ │ ├── prebuilt-module-cache-nonexistent-module-cache-path.swift │ │ ├── prebuilt-module-cache-recursive.swift │ │ ├── prebuilt-module-cache-root.swift │ │ ├── prebuilt-module-cache-unusable.swift │ │ ├── prebuilt-module-cache.swift │ │ ├── prefer-local-module-to-sdk-framework.swift │ │ ├── prefer-local-module-to-sdk.swift │ │ └── swiftdoc-next-to-swiftinterface.swift │ ├── NoWrongSDKWarning.swiftinterface │ ├── ObjC.swiftinterface │ ├── Observable.swift │ ├── ParseStdlib.swiftinterface │ ├── SilencePreconcurrency.swiftinterface │ ├── SmokeTest.swiftinterface │ ├── access-filter.swift │ ├── access-level-import-swiftinterfaces.swift │ ├── actor_availability.swift │ ├── actor_init.swift │ ├── actor_isolation.swift │ ├── actor_objc.swift │ ├── actor_old_compat.swift │ ├── actor_protocol.swift │ ├── addressable_attrs.swift │ ├── allowable-client.swift │ ├── alwaysEmitConformanceMetadata_attr.swift │ ├── ambiguous-aliases-workaround-swiftinterface-objc.swift │ ├── ambiguous-aliases-workaround-swiftinterface.swift │ ├── ambiguous-aliases-workaround.swift │ ├── arm64e-fallback.swift │ ├── assoc_type_inference_tvos.swift │ ├── associated_type_availability.swift │ ├── async_sequence_conformance.swift │ ├── async_sequence_rethrows.swift │ ├── attrs.swift │ ├── attrs_objc.swift │ ├── availability-canonical-version.swift │ ├── availability-diagnostics.swiftinterface │ ├── availability-expansion.swift │ ├── availability-library-level-api-5_8.swiftinterface │ ├── availability-library-level-api-5_9.swiftinterface │ ├── availability-macos.swift │ ├── availability_custom_domains.swift │ ├── available-attr-no-collapse.swift │ ├── back-deployed-attr.swift │ ├── bitwise_copyable.swift │ ├── bitwise_copyable_stdlib.swift │ ├── block_list_textual_interface.swift │ ├── blocklist_action.swift │ ├── build-alternative-interface-explicit.swift │ ├── build-alternative-interface-framework.swift │ ├── build-alternative-interface.swift │ ├── can-import.swift │ ├── canonicalized-os-version.swift │ ├── clang-args-transitive-availability.swift │ ├── clang-session-transitive.swift │ ├── closure.swift │ ├── concurrency.swift │ ├── conditional_pack_requirements.swift │ ├── conformance_suppression.swift │ ├── conformances.swift │ ├── consuming.swift │ ├── convenience-init.swift │ ├── copyable.swift │ ├── coroutine_accessors.swift │ ├── dataflow-errors.swift │ ├── default-args.swift │ ├── default-prebuilt-module-location-maccatalyst.swift │ ├── default-prebuilt-module-location-sdk-versioned.swift │ ├── default-prebuilt-module-location.swift │ ├── derived_conformances_nonisolated.swift │ ├── disable-availability-checking.swift │ ├── disable-building-interface.swift │ ├── discard_interface.swift │ ├── distributed-actor.swift │ ├── distributed_actors_module.swift │ ├── downgrade-module-verification-error-explicit.swift │ ├── downgrade-module-verification-error.swift │ ├── effectful_properties.swift │ ├── emit-abi-descriptor.swift │ ├── emit-forward-modules.swift │ ├── empty-extension.swift │ ├── enable_builtin_module.swift │ ├── enums-layout.swift │ ├── escapable.swiftinterface │ ├── escape-Type-and-Protocol.swift │ ├── escaping_functions.swift │ ├── exclusivity.swift │ ├── execution_behavior_attrs.swift │ ├── existential-any.swift │ ├── experimental-features.swift │ ├── export-as-in-swiftinterfaces.swift │ ├── exported-import.swift │ ├── exported-module-name.swift │ ├── extension-transitive-availability.swift │ ├── extern_attr.swift │ ├── feature-LexicalLifetimes.swift │ ├── features.swift │ ├── fixed-layout-property-initializers.swift │ ├── force-load-autolink.swift │ ├── full-convention.swift │ ├── global-actor.swift │ ├── has_storage_attr_bad.swiftinterface │ ├── iboutlet-private-set.swift │ ├── if-configs.swift │ ├── ignorable-compiler-flags.swift │ ├── ignore-adjacent-host-module.swift │ ├── ignore-adjacent-swiftmodules.swift │ ├── implicit-import.swift │ ├── imports-submodule-order.swift │ ├── imports-swift7.swift │ ├── imports.swift │ ├── indirect-conformance-implementation-only.swift │ ├── infer-arch-from-file.swift │ ├── inheritActorContext_attr.swift │ ├── inherited-defaults-checks.swiftinterface │ ├── inherited-defaults-execution.swift │ ├── inherited-generic-parameters.swift │ ├── inherited-objc-superclass-initializers.swift │ ├── inherits-superclass-initializers-client.swift │ ├── inherits-superclass-initializers.swift │ ├── init_accessors.swift │ ├── inlinable-function.swift │ ├── invalid-opaque-result-types.swift │ ├── invertible_protocols.swift │ ├── isolated-deinit-compatibility.swift │ ├── isolated_any_suppression.swift │ ├── isolated_conformance.swift │ ├── layout_pre_specialization.swift │ ├── lazy-typecheck-errors.swift │ ├── lazy-typecheck-objc.swift │ ├── lazy-typecheck.swift │ ├── lazy-vars.swift │ ├── lifetime_dependence_test.swift │ ├── lifetime_underscored_dependence_test.swift │ ├── linking-to-module.swift │ ├── lit.local.cfg │ ├── load_package_interface.swift │ ├── loading-order.swift │ ├── loading-remarks.swift │ ├── macros.swift │ ├── member-typealias.swift │ ├── modifiers.swift │ ├── module-alias-renaming-swiftinterface.swift │ ├── module_abi_name.swift │ ├── module_shadowing.swift │ ├── moveonly_interface.swift │ ├── moveonly_user.swift │ ├── multiline-availability-message.swift │ ├── multiple-targets-same-interface.swift │ ├── no-implicit-extra-clang-opts.swift │ ├── no-package-dependencies-on-non-package-interface-implicit.swift │ ├── no-package-dependencies-on-non-package-interface.swift │ ├── non-public-designated-inits-client.swift │ ├── non-public-designated-inits.swift │ ├── noncopyable_generics.swift │ ├── noncopyable_generics_feature_flag.swift │ ├── noncopyable_generics_interface_extensions.swift │ ├── nonescapable_types.swift │ ├── nonexhaustive_attr.swift │ ├── nonexhaustive_enums.swift │ ├── nsmanaged-attr.swift │ ├── obfuscator.swift │ ├── objc_implementation.swift │ ├── opaque-result-types.swift │ ├── optimization-level.swift │ ├── option-filtering.swift │ ├── option-preservation.swift │ ├── originally-defined-attr-opaque-result.swift │ ├── originally-defined-attr-synthesized-extension.swift │ ├── originally-defined-attr.swift │ ├── ossa-modules │ │ ├── Inputs │ │ │ ├── sdk-test-stdlib-no-ossa-referent-no-rebuild-remark.swift │ │ │ └── sdk-test-stdlib-no-ossa-referent-with-rebuild-remark.swift │ │ └── sdk-test-stdlib-ossa.swift │ ├── pack_expansion_type.swift │ ├── package_interface.swift │ ├── package_interface_conditional_gen.swift │ ├── package_interface_disable_package_name.swift │ ├── parameterized-protocol-opaque-result-types.swift │ ├── parameterized-protocol-synthesized-extension.swift │ ├── parameterized-protocols.swift │ ├── preconcurrency_conformances.swift │ ├── prefer-swiftinterface-by-default.swift │ ├── preserve-no-verify-flag.swift │ ├── preserve-type-repr.swift │ ├── print-from-partial-modules.swift │ ├── private-stored-member-type-layout.swift │ ├── private-stored-members.swift │ ├── project-name.swift │ ├── property_wrapper_availability.swift │ ├── property_wrappers.swift │ ├── protocol-with-self-constraint.swift │ ├── protocol_extension_type_witness.swift │ ├── public-autolink-library.swift │ ├── redundant-experimental-features.swiftinterface │ ├── redundant-upcoming-features.swiftinterface │ ├── relative-interface-path.swift │ ├── relative-resource-path.swift │ ├── relative-sdk-path.swift │ ├── repeated-explicit-interface-build-nop.swiftinterface │ ├── require_explicit_availability.swift │ ├── requires-stored-property-inits-attr.swift │ ├── resolve-imports.swift │ ├── result_builders.swift │ ├── retroactive-conformances.swift │ ├── sendable_availability.swift │ ├── show-in-interface.swift │ ├── sil-opt-availability.swift │ ├── skip-override-keyword.swift │ ├── skip-override-spi.swift │ ├── skip-redundant-conformances.swift │ ├── smoke-test.swift │ ├── specialize-attr.swift │ ├── specialized-extension.swift │ ├── spi-available-interface.swift │ ├── spi-available.swift │ ├── static-initialize-objc-metadata-attr.swift │ ├── stdlib.swift │ ├── stdlib_rebuild.swift │ ├── stored-properties-client.swift │ ├── stored-properties.swift │ ├── stub-init.swift │ ├── submodule-type.swift │ ├── suppress-warnings.swift │ ├── swift-export-as.swift │ ├── swift-interface-compile.swift │ ├── swift_build_sdk_interfaces │ │ ├── Inputs │ │ │ ├── broken-stdlib-sdk │ │ │ │ └── usr │ │ │ │ │ └── lib │ │ │ │ │ └── swift │ │ │ │ │ ├── Bad.swiftinterface │ │ │ │ │ ├── Good.swiftinterface │ │ │ │ │ └── Swift.swiftinterface │ │ │ ├── maccatalyst-sdk │ │ │ │ ├── System │ │ │ │ │ ├── Library │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ │ ├── FMWK.framework │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ └── FMWK.swiftmodule │ │ │ │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ │ │ │ └── Zippered.framework │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── Zippered.swiftmodule │ │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ │ └── iOSSupport │ │ │ │ │ │ ├── System │ │ │ │ │ │ └── Library │ │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ │ └── FMWK.framework │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── FMWK.swiftmodule │ │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ └── usr │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── swift │ │ │ │ │ │ └── Foo.swiftmodule │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── usr │ │ │ │ │ └── lib │ │ │ │ │ └── swift │ │ │ │ │ └── Foo.swiftmodule │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ ├── mock-sdk │ │ │ │ ├── System │ │ │ │ │ ├── Library │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ ├── BinaryOnly_BAD.framework │ │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ │ └── BinaryOnly_BAD.swiftmodule │ │ │ │ │ │ │ │ │ └── xyz.swiftmodule │ │ │ │ │ │ │ ├── FlatInterface_BAD.framework │ │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ │ └── FlatInterface_BAD.swiftinterface │ │ │ │ │ │ │ ├── FlatModule_BAD.framework │ │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ │ └── FlatModule_BAD.swiftmodule │ │ │ │ │ │ │ ├── HasNested_BAD.framework │ │ │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ │ │ │ └── Nested.framework │ │ │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ │ └── Nested.swiftmodule │ │ │ │ │ │ │ │ │ └── xyz.swiftinterface │ │ │ │ │ │ │ └── Simple.framework │ │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ └── Simple.swiftmodule │ │ │ │ │ │ │ │ └── xyz.swiftinterface │ │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ │ │ └── PrivateSimple.framework │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── PrivateSimple.swiftmodule │ │ │ │ │ │ │ └── xyz.swiftinterface │ │ │ │ │ └── iOSSupport │ │ │ │ │ │ ├── System │ │ │ │ │ │ └── Library │ │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ │ └── Simple.framework │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── Simple.swiftmodule │ │ │ │ │ │ │ └── xyzzy.swiftinterface │ │ │ │ │ │ └── usr │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── swift │ │ │ │ │ │ └── Caramel.swiftmodule │ │ │ │ │ │ └── xyz.swiftinterface │ │ │ │ └── usr │ │ │ │ │ └── lib │ │ │ │ │ └── swift │ │ │ │ │ ├── Flat.swiftinterface │ │ │ │ │ └── Normal.swiftmodule │ │ │ │ │ └── xyz.swiftinterface │ │ │ ├── system-dependencies-sdk │ │ │ │ └── usr │ │ │ │ │ ├── include │ │ │ │ │ ├── Platform.h │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── lib │ │ │ │ │ └── swift │ │ │ │ │ └── Swifty.swiftmodule │ │ │ │ │ └── dummy-file-so-git-includes-this-otherwise-empty-directory │ │ │ ├── xfail-logs-framework │ │ │ │ └── BadFMWK.framework │ │ │ │ │ └── Modules │ │ │ │ │ └── BadFMWK.swiftmodule │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ └── xfails-sdk │ │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── swift │ │ │ │ ├── Bad.swiftinterface │ │ │ │ ├── Good.swiftinterface │ │ │ │ └── Swift.swiftinterface │ │ ├── check-only-mode.swift │ │ ├── compiler-crash-windows.test-sh │ │ ├── compiler-crash.test-sh │ │ ├── compiler-uses-prebuilt-envvar.swift │ │ ├── compiler-uses-prebuilt.swift │ │ ├── early-exits.test-sh │ │ ├── find-modules.test-sh │ │ ├── ignore-non-stdlib-failures.test-sh │ │ ├── maccatalyst.test-sh │ │ ├── machine-parseable-monotonic-version.py │ │ ├── track-system-dependencies.swift │ │ ├── xfail-logs.test-sh │ │ └── xfails.test-sh │ ├── swiftinterface-compiler-version-option.swift │ ├── synthesized-conformances.swift │ ├── target-variant.swift │ ├── task_local_attr.swiftinterface │ ├── top-level-Type-and-Protocol.swift │ ├── type-shadowing.swift │ ├── typed_throws.swift │ ├── unbuildable.swift │ ├── unsupported-configurations.swift │ ├── user-module-version.swift │ ├── using.swift │ ├── value_generics.swift │ ├── verify-module-interfaces-no-lazy-typecheck.swift │ ├── verify-module-interfaces.swift │ ├── verify-opaque-type-abi-name.swift │ ├── weaklinked-import.swift │ └── where-clause.swift ├── NameLookup │ ├── InheritedConformance.swift │ ├── Inputs │ │ ├── HasObservable.swift │ │ ├── HasPrivateAccess1.swift │ │ ├── HasPrivateAccess2.swift │ │ ├── HasResult.swift │ │ ├── MemberImportVisibility │ │ │ ├── Bridging.h │ │ │ ├── Categories_A.h │ │ │ ├── Categories_A.swift │ │ │ ├── Categories_B.h │ │ │ ├── Categories_B.swift │ │ │ ├── Categories_C.h │ │ │ ├── Categories_C.swift │ │ │ ├── Categories_D.h │ │ │ ├── Categories_E.swift │ │ │ ├── ObjCOverloads │ │ │ │ ├── Branch.h │ │ │ │ ├── Fruit.h │ │ │ │ ├── Leaf.h │ │ │ │ ├── Root.h │ │ │ │ └── module.modulemap │ │ │ ├── Submodule.h │ │ │ ├── Underlying.h │ │ │ ├── members_A.swift │ │ │ ├── members_B.swift │ │ │ ├── members_C.swift │ │ │ └── module.modulemap │ │ ├── MemberTypesInClasses.swift │ │ ├── NIOFoundationCompat.swift │ │ ├── NamedLazyMembers │ │ │ ├── NamedLazyMembers.apinotes │ │ │ ├── NamedLazyMembers.h │ │ │ ├── NamedLazyMembers.swift │ │ │ ├── NamedLazyMembersExt.swift │ │ │ └── module.modulemap │ │ ├── ReexportsObservation.swift │ │ ├── accessibility_other.swift │ │ ├── ambiguous_left.swift │ │ ├── ambiguous_right.swift │ │ ├── custom_attrs_A.swift │ │ ├── custom_attrs_B.swift │ │ ├── has_accessibility.swift │ │ ├── imported_module.swift │ │ ├── lazy_function_body_expansion_helper.swift │ │ ├── multi-file-2.swift │ │ ├── multi-file-3.swift │ │ ├── multi-file-with-main │ │ │ └── main.swift │ │ ├── objc_multi_file_2.swift │ │ ├── private_import │ │ │ ├── Ghost.swift │ │ │ ├── Host.swift │ │ │ ├── Most.swift │ │ │ └── Toast.swift │ │ ├── property_wrappers_A.swift │ │ ├── property_wrappers_B.swift │ │ ├── protocol-inheritance.swift │ │ ├── tilde_tilde_high_precedence.swift │ │ └── tilde_tilde_low_precedence.swift │ ├── SwiftLexicalLookupValidation │ │ └── testGenericWhereClause.swift │ ├── accessibility.swift │ ├── custom-attr-on-extension.swift │ ├── custom_attrs_ambiguous.swift │ ├── debug-client-discriminator.swift │ ├── disabled_opaque_decl.swift │ ├── edge-cases.swift │ ├── lazy_function_body_expansion.swift │ ├── library.swift │ ├── member_import_visibility.swift │ ├── member_import_visibility_compiler_protocols.swift │ ├── member_import_visibility_migrate.swift │ ├── member_import_visibility_multifile.swift │ ├── member_import_visibility_multifile_access_level.swift │ ├── member_import_visibility_objc.swift │ ├── member_import_visibility_objc_overrides.swift │ ├── member_import_visibility_public_module_name.swift │ ├── member_import_visibility_underlying_clang.swift │ ├── member_type_shadowing.swift │ ├── module_selector.swift │ ├── multi-file-with-main.swift │ ├── multi-file.swift │ ├── name_lookup.swift │ ├── name_lookup2.swift │ ├── name_lookup_min_max_conditional_conformance.swift │ ├── named_lazy_member_loading_anyobject.swift │ ├── named_lazy_member_loading_import_as_member.swift │ ├── nio_shadowing.swift │ ├── nonempty-brace-in-brace.swift │ ├── objc_multi_file.swift │ ├── observable_shadowing.swift │ ├── private_import.swift │ ├── property_wrappers_ambig.swift │ ├── protocol-inheritance.swift │ ├── protocol_extension_where_clause.swift │ ├── scope_map-astscopelookup.swift │ ├── scope_map_lookup.swift │ ├── scope_map_lookup_extension_extension.swift │ ├── scope_map_rdar147751795.swift │ ├── scope_map_top_level.swift │ ├── stdlib-case-sensitive.swift │ ├── stdlib.swift │ ├── stdlib_shadowing.swift │ └── subscript-generic-conjuction-astscope.swift ├── PCMacro │ ├── Inputs │ │ ├── PCMacroRuntime.swift │ │ ├── PlaygroundModuleAndFileIDs.swift │ │ └── SilentPlaygroundsRuntime.swift │ ├── defer.swift │ ├── didset.swift │ ├── else.swift │ ├── elseif.swift │ ├── for.swift │ ├── func_decls.swift │ ├── func_throw_notype.swift │ ├── getset.swift │ ├── if.swift │ ├── init.swift │ ├── module_file_id.swift │ ├── mutation.swift │ ├── nested_function.swift │ ├── operators.swift │ ├── pc_and_log.swift │ ├── plus_equals.swift │ └── switch.swift ├── Parse │ ├── ConditionalCompilation │ │ ├── Inputs │ │ │ ├── can-import-submodule-missing-requirement │ │ │ │ ├── module.modulemap │ │ │ │ └── module.private.modulemap │ │ │ ├── can-import-submodule │ │ │ │ ├── module.modulemap │ │ │ │ └── module.private.modulemap │ │ │ ├── can_import_nonprimary_file.swift │ │ │ ├── rdar19548610a.swift │ │ │ └── rdar19548610b.swift │ │ ├── aarch64AndroidTarget.swift │ │ ├── arm64AppleTVOSTarget.swift │ │ ├── arm64IOSTarget.swift │ │ ├── armAndroidTarget.swift │ │ ├── armIOSTarget.swift │ │ ├── armWatchOSTarget.swift │ │ ├── avrTarget.swift │ │ ├── basicDeclarations.swift │ │ ├── basicIdentity.swift │ │ ├── basicParseErrors.swift │ │ ├── can_import.swift │ │ ├── can_import_idempotent.swift │ │ ├── can_import_in_inactive.swift │ │ ├── can_import_options.swift │ │ ├── can_import_sdk.swift │ │ ├── can_import_submodule.swift │ │ ├── can_import_submodule_missing_requirement.swift │ │ ├── can_import_submodule_private.swift │ │ ├── can_import_version.swift │ │ ├── can_import_version_bad_binary_module.swift │ │ ├── can_import_version_missing_user_module_version.swift │ │ ├── compiler.swift │ │ ├── compiler_version.swift │ │ ├── compoundName_swift4.swift │ │ ├── decl_in_true_inactive.swift │ │ ├── decl_parse_errors-2.swift │ │ ├── decl_parse_errors.swift │ │ ├── endif-on-end-of-file.swift │ │ ├── i386AppleTVOSTarget.swift │ │ ├── i386IOSTarget.swift │ │ ├── i386WatchOSTarget.swift │ │ ├── identifierName.swift │ │ ├── invalid-runtime-name.swift │ │ ├── language_version.swift │ │ ├── language_version_explicit.swift │ │ ├── macabiTargetEnv.swift │ │ ├── module_top_level.swift │ │ ├── no_configuration_error1.swift │ │ ├── no_configuration_error2.swift │ │ ├── noneOSTarget.swift │ │ ├── pound-if-inside-function-2.swift │ │ ├── pound-if-inside-function-3.swift │ │ ├── pound-if-inside-function-4.swift │ │ ├── pound-if-inside-function-5.swift │ │ ├── pound-if-inside-function.swift │ │ ├── pound-if-inside-statement-2.swift │ │ ├── pound-if-inside-statement.swift │ │ ├── pound-if-top-level-2.swift │ │ ├── pound-if-top-level-3.swift │ │ ├── pound-if-top-level-4.swift │ │ ├── pound-if-top-level-clean.swift │ │ ├── pound-if-top-level-nested.swift │ │ ├── pound-if-top-level.swift │ │ ├── powerpc64LinuxTarget.swift │ │ ├── powerpc64leLinuxTarget.swift │ │ ├── rdar19548610.swift │ │ ├── s390xLinuxTarget.swift │ │ ├── sequence.swift │ │ ├── sequence_version.swift │ │ ├── simulatorTargetEnv.swift │ │ ├── stmt_in_type.swift │ │ ├── switch_case.swift │ │ ├── switch_case_executable.swift │ │ ├── topLevelDeclarations.swift │ │ ├── toplevel_parseaslibrary.swift │ │ ├── trailingClosureOnTargetConfig.swift │ │ ├── wasm32Target.swift │ │ ├── wasm32ThreadsTarget.swift │ │ ├── x64AppleTVOSTarget.swift │ │ ├── x64CygwinTarget.swift │ │ ├── x64FreeBSDTarget.swift │ │ ├── x64IOSTarget.swift │ │ ├── x64LinuxTarget.swift │ │ ├── x64OSXTarget.swift │ │ ├── x64WindowsTarget.swift │ │ └── x86_64PS4Target.swift │ ├── EOF │ │ ├── block-comment-missing-newline.swift │ │ ├── block-comment-nested.swift │ │ ├── block-comment.swift │ │ ├── interpolated-string-literal.swift │ │ ├── unfinished-for-at-eof.swift │ │ └── unterminated-string-literal-missing-newline.swift │ ├── Inputs │ │ ├── imported_enums.swift │ │ └── warning_nonprimary_file.swift │ ├── actor.swift │ ├── alwaysEmitConformanceMetadata_attr.swift │ ├── async-syntax.swift │ ├── async.swift │ ├── attribute_spacing.swift │ ├── availability_query.swift │ ├── availability_query_custom_domains.swift │ ├── availability_query_unavailability.swift │ ├── borrow_expr.swift │ ├── brace_recovery_eof.swift │ ├── builtin_bridge_object.swift │ ├── builtin_word.swift │ ├── c_function_pointers.swift │ ├── closure-debugger.swift │ ├── comment_operator.swift │ ├── conflict_markers.swift │ ├── confusables.swift │ ├── consecutive_statements.swift │ ├── const.swift │ ├── const_no_feature.swift │ ├── constinitialized.swift │ ├── constinitialized_no_feature.swift │ ├── copy_expr.swift │ ├── coroutine_accessors.swift │ ├── coroutine_accessors_ambiguity.swift │ ├── debugger.swift │ ├── delayed_extension.swift │ ├── deprecated_where.swift │ ├── diagnose_availability.swift │ ├── diagnose_availability_windows.swift │ ├── diagnose_dynamicReplacement.swift │ ├── diagnose_initializer_as_typed_pattern.swift │ ├── diagnostic_missing_func_keyword.swift │ ├── diagnostic_points_to_first_bad_token.swift │ ├── discard.swift │ ├── dollar_identifier.swift │ ├── effectful_properties.swift │ ├── enum.swift │ ├── enum_element_pattern_swift4.swift │ ├── enum_floating_point_raw_value.swift │ ├── errors.swift │ ├── escaped_identifiers.swift │ ├── execution_behavior_attrs.swift │ ├── extractConstantsFromMembers_attr.swift │ ├── features.swift │ ├── fixed_infinite_loops.swift │ ├── foreach.swift │ ├── foreach_async.swift │ ├── form_feed_char.swift │ ├── function_call.swift │ ├── function_skipping_source_location.swift │ ├── generic_disambiguation.swift │ ├── guard-top-level.swift │ ├── guard.swift │ ├── has_symbol.swift │ ├── hashbang_library.swift │ ├── hashbang_main.swift │ ├── identifiers.swift │ ├── if-else-invalid.swift │ ├── ifconfig_expr.swift │ ├── implicit_getter_incomplete.swift │ ├── implicit_uninhabited_conversion.swift │ ├── init_deinit.swift │ ├── integer_types.swift │ ├── invalid-utf8.swift │ ├── invalid.swift │ ├── invalid_string_interpolation_protocol.swift │ ├── invalid_ternary_expr.swift │ ├── inverse_escapable_feature.swift │ ├── inverses.swift │ ├── isolated_any.swift │ ├── isolated_any_forbidden.swift │ ├── issue-74561.swift │ ├── lifetime_attr.swift │ ├── line-directive-crlf.swift.gyb │ ├── line-directive-executable.swift │ ├── line-directive.swift │ ├── macro_decl.swift │ ├── macro_expr.swift │ ├── matching_patterns.swift │ ├── matching_patterns_reference_bindings.swift │ ├── metatype_object_conversion.swift │ ├── move_expr.swift │ ├── move_expr_legacy.swift │ ├── move_func_decl.swift │ ├── multiline_errors.swift │ ├── multiline_normalize_newline.swift │ ├── multiline_pound_diagnostic_arg_rdar_41154797.swift │ ├── multiline_string.swift │ ├── noimplicitcopy_attr.swift │ ├── nonbreaking_space.swift │ ├── number_identifier_errors.swift │ ├── objc_enum.swift │ ├── object_literals.swift │ ├── omit_return.swift │ ├── omit_return_fail.swift │ ├── omit_return_ifdecl.swift │ ├── omit_return_objc.swift │ ├── operator_decl.swift │ ├── operator_decl_designated_types.swift │ ├── operators.swift │ ├── optional.swift │ ├── optional_chain_lvalues.swift │ ├── optional_lvalues.swift │ ├── original_defined_in_attr.swift │ ├── ownership_modifiers.swift │ ├── ownership_modifiers_no_errors.swift │ ├── parameter_specifier_before_param_name.swift │ ├── pattern_borrow_bindings.swift │ ├── pattern_without_variables.swift │ ├── pattern_without_variables_reference_bindings.swift │ ├── pattern_without_variables_script.swift │ ├── playground_lvalues.swift │ ├── pointer_conversion.swift.gyb │ ├── pointer_conversion_objc.swift.gyb │ ├── pound_assert.swift │ ├── raw_string.swift │ ├── raw_string_errors.swift │ ├── rdar129195380.swift │ ├── recovery.swift │ ├── recovery_library.swift │ ├── result-builder.swift │ ├── self_rebinding.swift │ ├── semicolon.swift │ ├── sending.swift │ ├── strange-characters.swift │ ├── strange_interpolation.swift │ ├── string_literal_eof1.swift │ ├── string_literal_eof2.swift │ ├── string_literal_eof3.swift │ ├── string_literal_eof4.swift │ ├── string_literal_eof5.swift │ ├── string_literal_eof6.swift │ ├── string_literal_eof7.swift │ ├── structure_no_overflow.swift │ ├── structure_overflow.swift │ ├── structure_overflow_paren_exprs.swift │ ├── subscripting.swift │ ├── super.swift │ ├── swift3_warnings_swift4_errors_version_4.swift │ ├── switch.swift │ ├── switch_incomplete.swift │ ├── ternary_expr.swift │ ├── toplevel_library.swift │ ├── toplevel_library_invalid.swift │ ├── trailing-comma-experimental.swift │ ├── trailing-comma.swift │ ├── trailing-semi.swift │ ├── trailing_closures.swift │ ├── try.swift │ ├── try_swift5.swift │ ├── type_expr.swift │ ├── type_parameter_packs.swift │ ├── type_parameter_packs_executable.swift │ ├── typealias.swift │ ├── typed_throws.swift │ ├── unclosed-string-interpolation.swift │ ├── unknown_platform.swift │ ├── upcoming_feature.swift │ ├── using.swift │ ├── utf16_bom.swift │ ├── utf8_bom.swift │ ├── validate_new_parser_diagnostics.swift │ ├── warning_primary_file.swift │ └── weakLinked.swift ├── PlaygroundTransform │ ├── Inputs │ │ ├── PlaygroundModuleAndFileIDs.swift │ │ ├── PlaygroundsRuntime.swift │ │ └── SilentPCMacroRuntime.swift │ ├── array.swift │ ├── array_did_set.swift │ ├── array_in_struct.swift │ ├── async_let.swift │ ├── bare_value.swift │ ├── closure_parameters.swift │ ├── control-flow.swift │ ├── declarations.swift │ ├── declarations_error.swift │ ├── defer.swift │ ├── disable_transform_only.swift │ ├── do-catch.swift │ ├── do.swift │ ├── empty-tuple.swift │ ├── existential.swift │ ├── extended_callbacks.swift │ ├── for_crash.swift │ ├── function_parameters.swift │ ├── generic_func_in_local_scope.swift │ ├── generics.swift │ ├── high_performance.swift │ ├── implicit_return_func_binaryoperation_args.swift │ ├── implicit_return_func_is.swift │ ├── implicit_return_func_stringliteral.swift │ ├── implicit_return_init_nil.swift │ ├── implicit_return_never.swift │ ├── implicit_return_subscript_chain.swift │ ├── implicit_return_var_intliteral.swift │ ├── import_error.swift │ ├── init.swift │ ├── iuo.swift │ ├── lit.local.cfg │ ├── module_file_id.swift │ ├── mutation.swift │ ├── nested_accessors.swift │ ├── nested_function.swift │ ├── nested_init.swift │ ├── noncopyable_assignment.swift │ ├── noncopyable_declaration.swift │ ├── noncopyable_functions.swift │ ├── placeholder.swift │ ├── playground_options.swift │ ├── plus_equals.swift │ ├── print.swift │ └── skip_bodies_without_types.swift ├── PrintAsCxx │ └── empty.swift ├── PrintAsObjC │ ├── Inputs │ │ ├── CoreGraphics-Bridging-Header.h │ │ ├── CrossCompiler.framework │ │ │ ├── Headers │ │ │ │ ├── cross-compiler.h │ │ │ │ └── old-compiler.h │ │ │ ├── Modules │ │ │ │ ├── CrossCompiler.swiftmodule │ │ │ │ │ └── .keep │ │ │ │ └── module.modulemap │ │ │ └── cross-compiler │ │ ├── Mixed.framework │ │ │ ├── Headers │ │ │ │ └── Mixed.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── MostlyPrivate1.framework │ │ │ ├── Headers │ │ │ │ └── MostlyPrivate1.h │ │ │ ├── Modules │ │ │ │ ├── module.modulemap │ │ │ │ └── module.private.modulemap │ │ │ └── PrivateHeaders │ │ │ │ └── MostlyPrivate1_Private.h │ │ ├── MostlyPrivate2.framework │ │ │ ├── Headers │ │ │ │ └── MostlyPrivate2.h │ │ │ ├── Modules │ │ │ │ ├── module.modulemap │ │ │ │ └── module.private.modulemap │ │ │ └── PrivateHeaders │ │ │ │ └── MostlyPrivate2_Private.h │ │ ├── arc-conventions.m │ │ ├── bridging-header.h │ │ ├── bridging_header-Bridging-Header.h │ │ ├── circularity.h │ │ ├── clang-headers │ │ │ └── swift │ │ │ │ └── objc-prologue.h │ │ ├── comments-expected-output.h │ │ ├── custom-modules │ │ │ ├── Base.ExplicitSub.ExSub.h │ │ │ ├── Base.ExplicitSub.ImSub.h │ │ │ ├── Base.ExplicitSub.h │ │ │ ├── Base.ImplicitSub.ExSub.h │ │ │ ├── Base.ImplicitSub.ImSub.h │ │ │ ├── Base.ImplicitSub.h │ │ │ ├── CompatibilityAlias.h │ │ │ ├── MiserablePileOfSecrets.h │ │ │ ├── SingleGenericClass.h │ │ │ ├── VersionedFMWK.apinotes │ │ │ ├── VersionedFMWK.h │ │ │ ├── bridging_header │ │ │ │ └── bridging_header.h │ │ │ ├── header_subdirectory │ │ │ │ ├── header-regular.h │ │ │ │ └── header-symlink.h │ │ │ ├── header_symlink_targets │ │ │ │ └── foo.h │ │ │ ├── module.modulemap │ │ │ ├── objc_implementation │ │ │ │ └── objc_implementation.h │ │ │ └── override.h │ │ ├── depends-on-swift-framework-helper.swift │ │ ├── enums.h │ │ ├── error-delegate.h │ │ ├── imported-block-typedefs.h │ │ ├── imported-generic-typealias.h │ │ ├── newtype.h │ │ ├── propertyWithOddGetterSetterNames.h │ │ ├── reintroduced-new.swift │ │ └── swift_name.h │ ├── accessibility.swift │ ├── any_as_id.swift │ ├── arc-conventions.swift │ ├── async.swift │ ├── availability-real-sdk.swift │ ├── availability.swift │ ├── availability_canonical_versions.swift │ ├── blocks.swift │ ├── bridged-known-types-cf-cgfloat.swift │ ├── bridged-known-types.swift │ ├── bridging_header.swift │ ├── cdecl-enum-reference.swift │ ├── cdecl-enums.swift │ ├── cdecl-imports.swift │ ├── cdecl-includes-with-objc.swift │ ├── cdecl-includes.swift │ ├── cdecl-official-for-objc-clients.swift │ ├── cdecl-official-visibility.swift │ ├── cdecl-official.swift │ ├── cdecl-with-objc.swift │ ├── cdecl.swift │ ├── circularity-errors.swift │ ├── circularity.swift │ ├── classes.swift │ ├── comments.swift │ ├── compatibility-symbols.swift │ ├── cross-compiler.swift │ ├── depends-on-swift-framework.swift │ ├── dispatch.swift │ ├── dynamicself.swift │ ├── emit-clang-header-nonmodular-includes-mock-sdk.swift │ ├── emit-clang-header-nonmodular-includes-modulemap-not-in-include-dir.swift │ ├── emit-clang-header-nonmodular-includes-path-normalization.swift │ ├── emit-clang-header-nonmodular-includes-symlinked-header.swift │ ├── empty.swift │ ├── enums-frozen.swift │ ├── enums.swift │ ├── error-delegate.swift │ ├── error.swift │ ├── extensions.swift │ ├── generic-ancestry.swift │ ├── getter_setter.swift │ ├── imported-block-typedefs.swift │ ├── imported-generic-typealias.swift │ ├── imports.swift │ ├── include-underlying.swift │ ├── interfering-macros.swift │ ├── lit.local.cfg │ ├── local-types.swift │ ├── mixed-framework-fwd.swift │ ├── mixed-framework.swift │ ├── never.swift │ ├── newtype.swift │ ├── objc_implementation.swift │ ├── override.swift │ ├── pragma-clang.swift │ ├── protocols.swift │ ├── reintroduced-new.m │ ├── resilient-ancestry-stable-abi.swift │ ├── resilient-ancestry.swift │ ├── simd.swift │ ├── spi.swift │ ├── swift_name.m │ ├── swift_name.swift │ ├── typealias.swift │ ├── unmodified.swift │ └── versioned.swift ├── Profiler │ ├── Inputs │ │ ├── CModule │ │ │ ├── cmodule.h │ │ │ └── module.modulemap │ │ ├── coverage_imports.swift │ │ ├── coverage_num_threads1.swift │ │ ├── coverage_num_threads2.swift │ │ ├── coverage_num_threads3.swift │ │ ├── coverage_num_threads4.swift │ │ ├── profiler_serialized.swift │ │ └── unmapped_secondary.swift │ ├── coverage_arg_ternary.swift │ ├── coverage_clang_decls.swift │ ├── coverage_class.swift │ ├── coverage_closure_returns_never.swift │ ├── coverage_closures.swift │ ├── coverage_curry.swift │ ├── coverage_dead_code_elim.swift │ ├── coverage_dead_code_elim_onone.swift │ ├── coverage_default_args.swift │ ├── coverage_deinit.swift │ ├── coverage_deinit_objc.swift │ ├── coverage_do.swift │ ├── coverage_empty_region_stack1.swift │ ├── coverage_errors.swift │ ├── coverage_errors_exec.swift │ ├── coverage_force_emission.swift │ ├── coverage_guard.swift │ ├── coverage_if.swift │ ├── coverage_if_expr.swift │ ├── coverage_inlined_counters.swift │ ├── coverage_inlined_counters_exec.swift │ ├── coverage_invalid_loc.swift │ ├── coverage_irgen.swift │ ├── coverage_irgen_ignored.swift │ ├── coverage_label.swift │ ├── coverage_lazy.swift │ ├── coverage_macros.swift │ ├── coverage_maindecl.swift │ ├── coverage_member_closure.swift │ ├── coverage_nested.swift │ ├── coverage_no_presumed_loc.swift │ ├── coverage_non_constructible_enum.swift │ ├── coverage_num_threads.swift │ ├── coverage_optimized.swift │ ├── coverage_optimized_report.swift │ ├── coverage_pc_macro.swift │ ├── coverage_pound_if.swift │ ├── coverage_pound_if_exec.swift │ ├── coverage_primary_file.swift │ ├── coverage_private.swift │ ├── coverage_property_wrapper_backing.swift │ ├── coverage_relative_path.swift │ ├── coverage_relative_path_exec.swift │ ├── coverage_result_builder.swift │ ├── coverage_smoke.swift │ ├── coverage_struct.swift │ ├── coverage_subscript_autoclosure.swift │ ├── coverage_switch.swift │ ├── coverage_switch_expr.swift │ ├── coverage_synthesized_witness.swift │ ├── coverage_ternary.swift │ ├── coverage_toplevel.swift │ ├── coverage_toplevel_empty.swift │ ├── coverage_uikit.swift │ ├── coverage_var_init.swift │ ├── coverage_while.swift │ ├── coverage_with_asan.swift │ ├── instrprof_basic.swift │ ├── instrprof_operators.swift │ ├── instrprof_tsan.swift │ ├── issue-42929.swift │ ├── lit.local.cfg │ ├── pgo_checked_cast.swift │ ├── pgo_foreach.swift │ ├── pgo_guard.swift │ ├── pgo_if.swift │ ├── pgo_lazy.swift │ ├── pgo_repeatwhile.swift │ ├── pgo_switchenum.swift │ ├── pgo_while.swift │ ├── pgo_with_coverage.swift │ ├── profiler_serialization.swift │ ├── rdar102405053.swift │ ├── rdar118185163.swift │ ├── rdar39146527.sil │ ├── rdar77217762.sil │ ├── rdar77217762_coverage.sil │ ├── samplepgo.swift │ └── unmapped.swift ├── Prototypes │ ├── Algorithms.swift │ ├── BigInt.swift │ ├── CollectionTransformers.swift │ ├── DoubleWidth.swift.gyb │ ├── GenericDispatch.swift │ ├── Hypoarray.swift │ ├── IntroSort.swift │ ├── PatternMatching.swift │ ├── Result.swift │ ├── Result_future.swift │ ├── TextFormatting.swift │ ├── UnfairLock.swift │ ├── UnicodeDecoders.swift │ ├── Vector.swift │ └── builtin-vector-via-extern-c.swift ├── Python │ └── python_lint.swift ├── Reflection │ ├── Inputs │ │ ├── Closures.swift │ │ ├── ConcreteTypes.swift │ │ ├── ConcurrencyTypes.swift │ │ ├── Conformances.swift │ │ ├── Extensions.swift │ │ ├── GenericTypes.swift │ │ ├── ImportedTypes.swift │ │ ├── ImportedTypesOther.swift │ │ ├── Macros.swift │ │ ├── Missing.swift │ │ ├── ObjectiveCTypes.swift │ │ ├── Packs.swift │ │ ├── PreservedConformanceProtocols.swift │ │ ├── Protocols.swift │ │ ├── TypeLowering.swift │ │ ├── TypeLoweringObjectiveC.swift │ │ ├── cmodules │ │ │ ├── module.modulemap │ │ │ ├── testModA.h │ │ │ └── testModA.m │ │ ├── ctypes │ │ │ ├── ctypes.h │ │ │ └── module.modulemap │ │ ├── main.swift │ │ └── swiftmodules │ │ │ └── testModB.swift │ ├── box_descriptor_with_opened_archetype.swift │ ├── box_descriptors.sil │ ├── capture_descriptors.sil │ ├── conformance_descriptors.swift │ ├── conformance_descriptors_of_external_types.swift │ ├── opaque_associated_type_requirements.swift │ ├── preserve_conformance_metadata_attr.swift │ ├── preserve_conformance_metadata_attr_macros.swift │ ├── typeref_decoding.swift │ ├── typeref_decoding_asan.swift │ ├── typeref_decoding_concurrency.swift │ ├── typeref_decoding_imported.swift │ ├── typeref_decoding_objc.swift │ ├── typeref_decoding_packs.swift │ ├── typeref_lowering.swift │ ├── typeref_lowering_imported.swift │ ├── typeref_lowering_missing.swift │ ├── typeref_lowering_objc.swift │ └── typeref_lowering_packs.swift ├── RemoteAST │ ├── existentials.swift │ ├── existentials_objc.swift │ ├── extensions.swift │ ├── foreign_types.swift │ ├── member_offsets.swift │ ├── nominal_types.swift │ ├── objc_classes.swift │ ├── parameterized_existentials.swift │ └── structural_types.swift ├── Runtime │ ├── Inputs │ │ ├── SubclassOfNSObject.h │ │ ├── SubclassOfNSObject.m │ │ ├── Superclass.h │ │ ├── Superclass.m │ │ ├── custom_rr_abi_utilities.h │ │ ├── open_subclass_of_Framework.Superclass.swift │ │ ├── print_subclass │ │ │ └── main.swift │ │ ├── public_struct_with_generic_arg_nsobject_constrained.swift │ │ ├── public_struct_with_generic_arg_swift_class_constrained.swift │ │ └── synthesized_decl_uniqueness.swift │ ├── Paths.cpp │ ├── allocator_sanity.swift │ ├── associated_type_demangle_inherited.swift │ ├── associated_type_demangle_objc.swift │ ├── associated_type_demangle_private.swift │ ├── associated_witness_concurrency.swift │ ├── backtrace.swift │ ├── bitwise-borrowable-generics.swift │ ├── check_create_type.swift │ ├── concurrentTypeByName.swift │ ├── conformance_uniquing.swift │ ├── crash_without_backtrace.swift │ ├── crash_without_backtrace_optimized.swift │ ├── custom_rr_abi.swift │ ├── deinit_escape.swift │ ├── demangleToMetadata.swift │ ├── demangleToMetadataMovedSymbols.swift │ ├── demangleToMetadataObjC.swift │ ├── demangleToMetadataSending.swift │ ├── enumerate_metadata_sections.swift │ ├── environment_variables.swift │ ├── lazy_witness_table_cycle.swift │ ├── linux-fatal-backtrace.swift │ ├── loaded_image_uniqueness.swift │ ├── metadata_printing.swift │ ├── nested-protocols.swift │ ├── null_vtable_entry_ptrauth.swift │ ├── optional_try.swift │ ├── protocol-conformance-cache-objc.swift │ ├── protocol-conformance-cache.swift │ ├── protocol_conformance_collision.swift │ ├── protocol_self_same_type_extension.swift │ ├── stable-bit-backward-deployment.swift │ ├── subclass_instance_start_adjustment.swift │ ├── superclass_constraint_metadata_objc_superclass.swift │ ├── superclass_constraint_metadata_objc_superclass_future.swift │ ├── superclass_constraint_metadata_objc_superclass_objc_intermediate_swift_subclass.swift │ ├── superclass_constraint_metadata_objc_superclass_objc_intermediate_swift_subclass_future.swift │ ├── superclass_constraint_metadata_objc_superclass_objc_subclass.swift │ ├── superclass_constraint_metadata_resilient_superclass.swift │ ├── superclass_constraint_metadata_resilient_superclass2.swift │ ├── superclass_constraint_metadata_resilient_superclass2_future.swift │ ├── superclass_constraint_metadata_resilient_superclass_future.swift │ └── synthesized_decl_uniqueness.swift ├── SIL │ ├── Inputs │ │ ├── printer_include_decls_module_helper.swift │ │ └── whole_module_optimization_helper.swift │ ├── Instruction │ │ └── partial_apply_on_stack_lifetime_ends.sil │ ├── OwnershipVerifier │ │ ├── arguments.sil │ │ ├── basic.sil │ │ ├── begin_apply_use_after_end_apply.sil │ │ ├── borrow_and_concurrency.sil │ │ ├── borrow_cast_validate.sil │ │ ├── borrow_extract_validate.sil │ │ ├── borrow_scope_introducing_operands.sil │ │ ├── borrow_scope_introducing_operands_positive.sil │ │ ├── borrow_validate.sil │ │ ├── definite_init.sil │ │ ├── disable_verifier_using_semantic_tag.sil │ │ ├── extend_lifetime.sil │ │ ├── false_positive_leaks.sil │ │ ├── guaranteed_chain.sil │ │ ├── guaranteed_phis.sil │ │ ├── guaranteed_phis_errors.sil │ │ ├── interior_pointer.sil │ │ ├── leaks.sil │ │ ├── load_borrow_invalidation_partial_apply.sil │ │ ├── load_borrow_invalidation_test.sil │ │ ├── load_borrow_verify.sil │ │ ├── load_borrow_verify_errors.sil │ │ ├── objc_use_verifier.sil │ │ ├── opaque_use_verifier.sil │ │ ├── over_consume.sil │ │ ├── over_consume_positive.sil │ │ ├── subobject_borrowing.sil │ │ ├── undef.sil │ │ ├── unreachable_code.sil │ │ └── use_verifier.sil │ ├── Parser │ │ ├── SILDeclRef.sil │ │ ├── actor_isolation.sil │ │ ├── actor_isolation_crossing.sil │ │ ├── apply_with_conformance.sil │ │ ├── apply_with_substitution.sil │ │ ├── array_roundtrip.swift │ │ ├── async.sil │ │ ├── attributes.sil │ │ ├── available.sil │ │ ├── basic.sil │ │ ├── basic2.sil │ │ ├── basic2_noncopyable_generics.sil │ │ ├── basic_objc.sil │ │ ├── borrow.sil │ │ ├── borrow_argument.sil │ │ ├── bound_generic.sil │ │ ├── boxes.sil │ │ ├── concurrency.sil │ │ ├── coroutines.sil │ │ ├── coroutines_failure_merge.sil │ │ ├── coroutines_failure_unwind_return.sil │ │ ├── coroutines_failure_unwind_reuse.sil │ │ ├── coroutines_failure_yieldonce_return.sil │ │ ├── coroutines_failure_yieldonce_twice.sil │ │ ├── coverage_maps.sil │ │ ├── debug_info.sil │ │ ├── default_override.sil │ │ ├── default_witness_tables.sil │ │ ├── enum_in_class.sil │ │ ├── error_in_global.sil │ │ ├── errors.sil │ │ ├── extension.swift │ │ ├── final.swift │ │ ├── forwarding_ownership.sil │ │ ├── function_argument_lifetime_annotation.sil │ │ ├── function_named_subscript.sil │ │ ├── generic_signature_with_depth.swift │ │ ├── generics.sil │ │ ├── global_decl.sil │ │ ├── global_init_attribute.sil │ │ ├── has_symbol.sil │ │ ├── increment_profiler_counter.sil │ │ ├── indirect_enum.sil │ │ ├── isolated_parameters.sil │ │ ├── keypath.sil │ │ ├── lifetime_dependence.sil │ │ ├── linkage.sil │ │ ├── moveonlywrapped_diagnostics.sil │ │ ├── moveonlywrapper_to_copyable.sil │ │ ├── no_implicit_copy.sil │ │ ├── nonatomic_reference_counting.sil │ │ ├── one_element_tuple.sil │ │ ├── opaque_parameter_roundtrip.swift │ │ ├── opaque_values_parse.sil │ │ ├── opaque_values_parse_objc.sil │ │ ├── ossa_needs_ownership_on_args.sil │ │ ├── overloaded_member.sil │ │ ├── ownership_arguments.sil │ │ ├── ownership_qualified_memopts.sil │ │ ├── pack_metadata.sil │ │ ├── partial_apply_ownership.sil │ │ ├── polymorphic_function.sil │ │ ├── projection_lowered_type_parse.sil │ │ ├── protocol_getter.sil │ │ ├── pure_mode.sil │ │ ├── question_mark.swift │ │ ├── self.sil │ │ ├── self.swift │ │ ├── self_substitution.sil │ │ ├── sending.sil │ │ ├── sil_scope.sil │ │ ├── sil_scope_inline_fn.sil │ │ ├── sillocation.sil │ │ ├── specialized_conformance.sil │ │ ├── stage.swift │ │ ├── static_initializer.sil │ │ ├── stored_property.sil │ │ ├── string_literal.sil │ │ ├── subst_function_type.sil │ │ ├── test_instructions.sil │ │ ├── typed_boxes.sil │ │ ├── undef.sil │ │ ├── undef_objc.sil │ │ ├── unmanaged.sil │ │ ├── unnamed_struct_identifiers.sil │ │ ├── variadic_generics.sil │ │ ├── where.swift │ │ ├── where_clause.sil │ │ ├── without_actually_escaping.sil │ │ ├── witness_bug.sil │ │ ├── witness_method.sil │ │ ├── witness_protocol_from_import.sil │ │ ├── witness_specialize.sil │ │ ├── witness_table_redeclare.sil │ │ ├── witness_tables.sil │ │ └── witness_with_inherited_gp.sil │ ├── Serialization │ │ ├── Inputs │ │ │ ├── OpaqueReturnTypeExporter.swift │ │ │ ├── clang_conformances.sil │ │ │ ├── clang_conformances_helper.h │ │ │ ├── def_generic.swift │ │ │ ├── def_generic_marker.swift │ │ │ ├── def_public_non_abi.sil │ │ │ ├── function_param_convention_input.sil │ │ │ ├── generic_shared_function_helper.sil │ │ │ ├── init_existential_inst_deserializes_witness_tables_input.swift │ │ │ ├── nontransparent.swift │ │ │ ├── opaque_return_type_equality_input.swift │ │ │ ├── shared_function_serialization_input.swift │ │ │ ├── specializer_input.swift │ │ │ └── vtable_deserialization_input.swift │ │ ├── Recovery │ │ │ ├── Inputs │ │ │ │ ├── bad-modules │ │ │ │ │ ├── Types.h │ │ │ │ │ └── module.modulemap │ │ │ │ └── good-modules │ │ │ │ │ ├── Types.h │ │ │ │ │ └── module.modulemap │ │ │ └── function.sil │ │ ├── actor_isolation_crossing.sil │ │ ├── assignattr.sil │ │ ├── async.sil │ │ ├── available.sil │ │ ├── basic.sil │ │ ├── basic2.sil │ │ ├── basic2_moveonly.sil │ │ ├── borrow.sil │ │ ├── borrow_argument.sil │ │ ├── boxes.sil │ │ ├── clang_conformances.swift │ │ ├── clang_sib.swift │ │ ├── copy_value_destroy_value.sil │ │ ├── coroutines.sil │ │ ├── default_override.sil │ │ ├── deserialize_generic.sil │ │ ├── deserialize_generic_marker.sil │ │ ├── deserialize_stdlib.sil │ │ ├── dynamically_replaceable.sil │ │ ├── effects.sil │ │ ├── effectsattr.sil │ │ ├── forwarding_ownership.sil │ │ ├── function-global-function.sil │ │ ├── function_argument_lifetime_annotation.sil │ │ ├── function_effects.sil │ │ ├── function_param_convention.sil │ │ ├── generic_shared_function.swift │ │ ├── globals.sil │ │ ├── init_existential_inst_deserializes_witness_tables.swift │ │ ├── isolated_parameters.sil │ │ ├── keypath.sil │ │ ├── literals.sil │ │ ├── metatype_casts.sil │ │ ├── no_implicit_copy.sil │ │ ├── noasync.sil │ │ ├── opaque_return_type_equality.swift │ │ ├── opaque_return_type_serialize.sil │ │ ├── opaque_return_type_serialize.swift │ │ ├── opaque_values_serialize.sil │ │ ├── opaque_values_serialize_objc.sil │ │ ├── ownership_qualified_memopts.sil │ │ ├── ownershipflags.sil │ │ ├── pack_expansion_type.swift │ │ ├── perf_inline_without_inline_all.swift │ │ ├── projection_lowered_type_parse.sil │ │ ├── public_external.sil │ │ ├── public_non_abi.sil │ │ ├── semanticsattr.sil │ │ ├── sending.sil │ │ ├── shared_function_serialization.sil │ │ ├── specializer_can_deserialize.swift │ │ ├── unmanaged.sil │ │ ├── visibility.sil │ │ ├── vtable.sil │ │ ├── vtable_deserialization.swift │ │ ├── without_actually_escaping.sil │ │ └── witness_tables.sil │ ├── availability_query_maccatalyst_zippered_inlined.swift │ ├── bitwise_copyable.swift │ ├── clang-function-type-windows.swift │ ├── clang-function-types-android.swift │ ├── clang-function-types-nonwindows.swift │ ├── clone_init_existential.sil │ ├── cloning.sil │ ├── cloning_opaque_values.sil │ ├── cloning_opaque_values_objc.sil │ ├── concurrentclosure_capture_verify_canonical_addressonly.sil │ ├── concurrentclosure_capture_verify_canonical_loadable.sil │ ├── concurrentclosure_capture_verify_raw.sil │ ├── diagnose_effects.swift │ ├── disable_ossa_verification_blocklist.sil │ ├── explicit_lifetime_dependence_specifiers.swift │ ├── if_clause_printing.swift │ ├── implicit_lifetime_dependence.swift │ ├── import-decls.sil │ ├── instruction_iteration.sil │ ├── lazy_typecheck.swift │ ├── lifetime_dependence_generics.swift │ ├── lifetime_dependence_param_position_test.swift │ ├── lifetime_dependence_span_lifetime_attr.swift │ ├── memory_lifetime.sil │ ├── memory_lifetime_failures.sil │ ├── modules-extern.swift │ ├── modules-extern2.swift │ ├── moveonly_ownership.sil │ ├── opaque-verify.sil │ ├── parse_swift_decls_in_sil_mode.sil │ ├── polymorphic_builtins.sil │ ├── printer_include_decls.swift │ ├── printer_include_decls_module.swift │ ├── raw_identifiers.swift │ ├── restricted-partial-apply.sil │ ├── store_borrow_verify_errors.sil │ ├── type_dependent_operands.swift │ ├── type_lowering_unit.sil │ ├── typed_throws_sil_crash.swift │ ├── unimplemented_initializer.swift │ ├── verifier-fail-address-phi-ossa.sil │ ├── verifier-fail-bb.sil │ ├── verifier-fail-instruction.sil │ ├── verifier-init-existential.sil │ ├── verifier-no-nested-suspend.sil │ ├── verifier-value-metatype-lowering.sil │ ├── verifier_failures.sil │ ├── verifier_loweredsil_failures.sil │ ├── verifier_nofail.sil │ ├── verifier_reject.sil │ └── whole_module_optimization.swift ├── SILGen │ ├── 82368.swift │ ├── Inputs │ │ ├── AppKit.swift │ │ ├── AvailabilityDomains.h │ │ ├── BoolBridgingTests.h │ │ ├── Dispatch.swift │ │ ├── ExternalKeyPaths.swift │ │ ├── Foundation.swift │ │ ├── MagicIdentifierFileSwift.swift │ │ ├── MeowActor.swift │ │ ├── ModuleA.swift │ │ ├── ModuleB.swift │ │ ├── ObjectiveC.swift │ │ ├── RetroactiveA.swift │ │ ├── RetroactiveB.swift │ │ ├── TestableMultifileHelper.swift │ │ ├── UIApplicationMain-helper.swift │ │ ├── UIKit.swift │ │ ├── accessibility_vtables_helper.swift │ │ ├── accessibility_vtables_other.swift │ │ ├── accessibility_vtables_package_helper.swift │ │ ├── accessibility_vtables_testable_helper.swift │ │ ├── accessibility_vtables_usableFromInline_helper.swift │ │ ├── always_emit_into_client_other_file.swift │ │ ├── array_typedef.h │ │ ├── availability_optionals_other.swift │ │ ├── availability_overloads_other.swift │ │ ├── block_property_in_objc_class.h │ │ ├── c_function_pointer_in_c_struct.h │ │ ├── clang_records_addressable_for_dependencies.h │ │ ├── convenience_init_peer_delegation_import.h │ │ ├── def_global.swift │ │ ├── def_structA.swift │ │ ├── default_arg_other.swift │ │ ├── default_arguments_other.swift │ │ ├── deterministic-dtor-ordering-other.swift │ │ ├── duplicate_opened_archetypes.h │ │ ├── dynamic_other.swift │ │ ├── dynamic_witness_other_module_other.swift │ │ ├── enum_debuginfo_other.swift │ │ ├── errors_other.swift │ │ ├── external-associated-type-conformance.h │ │ ├── foreign_to_native_inout_self_helper.h │ │ ├── forward-to-foobar.c │ │ ├── globals.h │ │ ├── has_symbol_helper.swift │ │ ├── inherited_protocol_conformance_other_file.swift │ │ ├── inherited_protocol_conformance_other_file_2_b.swift │ │ ├── inherited_protocol_conformance_other_file_2_c.swift │ │ ├── ivar_initializer_other.swift │ │ ├── keypaths_import_as_member.h │ │ ├── keypaths_multi_file_b.swift │ │ ├── keypaths_multi_file_c.swift │ │ ├── keypaths_objc.h │ │ ├── lazy_properties_other.swift │ │ ├── library_evolution_property_originally_defined_in_current_module_NewModule.swift │ │ ├── magic_identifier_file_conflicting_other.swift │ │ ├── mangle_conformance_access_path_helper.swift │ │ ├── mangling_private_helper.swift │ │ ├── mock-visionos-sdk │ │ │ └── SDKSettings.json │ │ ├── modify_objc.h │ │ ├── module.modulemap │ │ ├── multi_file_helper.swift │ │ ├── nsmanaged-witness-multi-other.swift │ │ ├── objc_access_notes.accessnotes │ │ ├── objc_async_tuple_88949633.h │ │ ├── objc_block_to_func_to_block.h │ │ ├── objc_bridged_block_optionality_diff.h │ │ ├── objc_bridged_generic_conformance.h │ │ ├── objc_bridged_generic_nonnull.h │ │ ├── objc_bridged_results.h │ │ ├── objc_bridging_nsurl.h │ │ ├── objc_bridging_sendable.h │ │ ├── objc_dynamic_init.h │ │ ├── objc_dynamic_replacement.swift │ │ ├── objc_dynamic_replacement_ext.swift │ │ ├── objc_enum_errortype.h │ │ ├── objc_error_convention_from_protocol.h │ │ ├── objc_implementation.h │ │ ├── objc_init_iuo_override.h │ │ ├── objc_init_unavailable.h │ │ ├── objc_preconcurrency.h │ │ ├── objc_protocols_Bas.swift │ │ ├── objc_required_designated_init.h │ │ ├── objc_required_designated_init_2.swift │ │ ├── objc_witnesses_serialized.h │ │ ├── opaque_result_type_captured_wmo_2.swift │ │ ├── opaque_result_type_fragile_other.swift │ │ ├── opaque_result_type_inlinable_other.swift │ │ ├── opaque_result_type_nested_optional_other.swift │ │ ├── opaque_result_type_private_assoc_type_other.swift │ │ ├── opaque_result_type_private_substitution_other.swift │ │ ├── opaque_result_type_retroactive_other.swift │ │ ├── opaque_result_type_slow_other.swift │ │ ├── opaque_values_cxx.h │ │ ├── opaque_values_silgen_resilient.swift │ │ ├── open_enum.h │ │ ├── preconcurrency-bridged-return.h │ │ ├── private_import_module.swift │ │ ├── property_wrapper_defs.swift │ │ ├── property_wrappers_multifile_other.swift │ │ ├── protocol_overrides.swift │ │ ├── ptrauth_field_fptr_import.h │ │ ├── readbytes.h │ │ ├── replace_opaque_type_public_assoc_type_m.swift │ │ ├── specialize_attr_module.swift │ │ ├── specialize_attr_module2.swift │ │ ├── struct_with_initializer.swift │ │ ├── swift_newtype_result_convention.h │ │ ├── switch_bool.h │ │ ├── usr │ │ │ └── include │ │ │ │ ├── Ansible.h │ │ │ │ ├── AppKit.h │ │ │ │ ├── BridgeTestFoundation.h │ │ │ │ ├── CoreCooling.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── Foundation.apinotes │ │ │ │ ├── Gizmo.h │ │ │ │ ├── NonNilTest.apinotes │ │ │ │ ├── NonNilTest.h │ │ │ │ ├── ObjectiveC.apinotes │ │ │ │ ├── ObjectiveC.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── dispatch.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── newtype.h │ │ │ │ └── objc_extensions_helper.h │ │ ├── variadic.h │ │ ├── variadic_generic_opaque_multifile_other.swift │ │ ├── vtable_internal_imported_ancestor │ │ │ ├── Repro1.swift │ │ │ └── Repro2.swift │ │ ├── vtables_multifile_2.swift │ │ ├── vtables_multifile_3.swift │ │ ├── weak_other.swift │ │ ├── witness_accessibility_other.swift │ │ ├── witness_tables_b.swift │ │ └── witness_tables_multifile_2.swift │ ├── NSApplicationMain.swift │ ├── SILDeclRef.swift │ ├── UIApplicationMain.swift │ ├── access_marker_gen.swift │ ├── accessibility_vtables.swift │ ├── accessibility_vtables_package.swift │ ├── accessibility_vtables_testable.swift │ ├── accessibility_vtables_usableFromInline.swift │ ├── accessibility_warnings.swift │ ├── accessor_borrow.swift │ ├── accessors.swift │ ├── accessors_testing.swift │ ├── address_only_types.swift │ ├── addressable_for_dependencies.swift │ ├── addressable_members.swift │ ├── addressable_params.swift │ ├── addressable_representation.swift │ ├── addressor_dependence.swift │ ├── addressor_materialization_dependency.swift │ ├── addressors.swift │ ├── always_emit_into_client_attribute.swift │ ├── always_emit_into_client_objc.swift │ ├── ambiguous_pointer_conversion.swift │ ├── apply_abstraction_nested.swift │ ├── argument_labels.swift │ ├── argument_shuffle.swift │ ├── arguments.swift │ ├── arguments_as_tuple_overloads.swift │ ├── array_literal_abstraction.swift │ ├── assignment.swift │ ├── async_builtins.swift │ ├── async_conversion.swift │ ├── async_initializer.swift │ ├── async_let.swift │ ├── async_let_reabstraction.swift │ ├── async_vtable_thunk.swift │ ├── attr_main_class.swift │ ├── attr_main_class_2.swift │ ├── attr_main_enum.swift │ ├── attr_main_struct.swift │ ├── attr_main_typed_throws.swift │ ├── auto_closures.swift │ ├── auto_closures_swift4.swift │ ├── auto_generated_super_init_call.swift │ ├── availability_attribute.swift │ ├── availability_overloads.swift │ ├── availability_query.swift │ ├── availability_query_custom_domains.swift │ ├── availability_query_custom_domains_clang.swift │ ├── availability_query_disabled.swift │ ├── availability_query_disabled_zippered.swift │ ├── availability_query_maccatalyst.swift │ ├── availability_query_maccatalyst_zippered.swift │ ├── availability_query_maccatalyst_zippered_canonical_versions.swift │ ├── availability_query_macosx_canonical_versions.swift │ ├── back_deployed_attr.swift │ ├── back_deployed_attr_accessor.swift │ ├── back_deployed_attr_accessor_coroutine.swift │ ├── back_deployed_attr_async_func.swift │ ├── back_deployed_attr_func.swift │ ├── back_deployed_attr_func_visionos.swift │ ├── back_deployed_attr_generic_func.swift │ ├── back_deployed_attr_maccatalyst.swift │ ├── back_deployed_attr_maccatalyst_zippered.swift │ ├── back_deployed_attr_struct_init.swift │ ├── back_deployed_attr_struct_method.swift │ ├── back_deployed_attr_throwing_func.swift │ ├── bitwise_copyable.swift │ ├── bitwise_copyable_stdlib.swift │ ├── borrow.swift │ ├── borrow_expr.swift │ ├── borrow_from_load_expr.swift │ ├── borrowing_switch_multiple_patterns.swift │ ├── borrowing_switch_return_binding_compat.swift │ ├── borrowing_switch_return_on_all_paths.swift │ ├── borrowing_switch_subjects.swift │ ├── boxed_existentials.swift │ ├── builtin_vector.swift │ ├── builtins.swift │ ├── c_function_pointers.swift │ ├── c_modify_linkage.swift │ ├── call_as_function.swift │ ├── call_chain_reabstraction.swift │ ├── call_convention_c_closure_with_bridged_arg.swift │ ├── capture-canonicalization.swift │ ├── capture-transitive.swift │ ├── capture_info_invariants.swift │ ├── capture_inout.swift │ ├── capture_list.swift │ ├── capture_order.swift │ ├── capture_resilience.swift │ ├── capture_typealias.swift │ ├── capture_typed_boxes.swift │ ├── casts.swift │ ├── cdecl-official.swift │ ├── cdecl.swift │ ├── cf.swift │ ├── cf_curried_init.swift │ ├── cf_members.swift │ ├── check_executor.swift │ ├── checked_cast_br_anyobject.swift │ ├── clang-target-weak-import-globalvar.swift │ ├── clang-target-weak-import.swift │ ├── clang_records_addressable_for_dependencies.swift │ ├── class_bound_protocols.swift │ ├── class_conforms_with_default_concrete_self.swift │ ├── class_conforms_with_default_implementation.swift │ ├── class_resilience.swift │ ├── closure_inline_initializer.swift │ ├── closure_literal_reabstraction.swift │ ├── closure_literal_reabstraction_async.swift │ ├── closure_literal_reabstraction_tuple_ownership.swift │ ├── closure_script_global_escape.swift │ ├── closure_self_recursion.swift │ ├── closures.swift │ ├── closures_callee_guaranteed.swift │ ├── codable │ │ └── struct_codable_member_type_lookup.swift │ ├── collection_cast_crash.swift │ ├── collection_downcast.swift │ ├── collection_subtype_downcast.swift │ ├── collection_subtype_upcast.swift │ ├── collection_upcast.swift │ ├── complete_object_init.swift │ ├── concrete_subclass.swift │ ├── concurrent_functions.swift │ ├── concurrent_prologue.swift │ ├── conditional_conformance.swift │ ├── conditionally_copyable_conformance_descriptor.swift │ ├── conditionally_unreachable.swift │ ├── conformance_requirement_order.swift │ ├── conformance_requirement_order_concurrency.swift │ ├── conformance_requirement_order_originally_defined_in.swift │ ├── const_param.swift │ ├── constrained_extensions.swift │ ├── consume_operator.swift │ ├── consume_operator_trivial_value_of_nontrivial_type.swift │ ├── consuming_parameter.swift │ ├── convenience_init_peer_delegation.swift │ ├── convenience_init_peer_delegation_import.swift │ ├── copy_expr.swift │ ├── copy_lvalue_peepholes.swift │ ├── copy_operator.swift │ ├── copy_operator_generic_failure.swift │ ├── coroutine_accessors.swift │ ├── coroutine_accessors_availability.swift │ ├── coroutine_accessors_new_abi.swift │ ├── coroutine_accessors_old_abi.swift │ ├── coroutine_accessors_skip.swift │ ├── coroutine_subst_function_types.swift │ ├── decls.swift │ ├── default_arg_multiple_modules.swift │ ├── default_arguments.swift │ ├── default_arguments_concrete.swift │ ├── default_arguments_generic.swift │ ├── default_arguments_imported.swift │ ├── default_arguments_inherited.swift │ ├── default_arguments_inherited_generic.swift │ ├── default_arguments_local.swift │ ├── default_arguments_nil.swift │ ├── default_arguments_serialized.swift │ ├── default_constructor.swift │ ├── default_override.swift │ ├── deinit_in_vtable.swift │ ├── deinit_recursive_branching.swift │ ├── deinit_recursive_linear.swift │ ├── deinit_recursive_linear_generic.swift │ ├── delayed_functions.swift │ ├── dependency_through_closure.swift │ ├── dependent_member_lowering.swift │ ├── designated_init_inheritance_with_where_clause.swift │ ├── deterministic-dtor-ordering.swift │ ├── diagnose_duplicate_functions.swift │ ├── diagnose_implicit_raw_conversion.swift │ ├── diagnose_implicit_raw_conversion_foundation.swift │ ├── diagnose_implicit_raw_conversion_unsupported.swift │ ├── diagnose_impossible_variadics.swift │ ├── didset_oldvalue_not_accessed_silgen.swift │ ├── discard.swift │ ├── do_expr.swift │ ├── do_expr_address_only_tuple_return_value_context.swift │ ├── downcast_reabstraction.swift │ ├── dso_handle.swift │ ├── duplicate_opened_archetypes.swift │ ├── dynamic.swift │ ├── dynamic_accessors.swift │ ├── dynamic_callable_attribute.swift │ ├── dynamic_init.swift │ ├── dynamic_isolation_enforcement.swift │ ├── dynamic_lookup.swift │ ├── dynamic_lookup_throws.swift │ ├── dynamic_self.swift │ ├── dynamic_self_cast.swift │ ├── dynamic_self_reabstraction.swift │ ├── dynamic_self_reference_storage.swift │ ├── dynamic_witness_other_module.swift │ ├── dynamically_replaceable.swift │ ├── effectful_properties.swift │ ├── effectsattr.swift │ ├── element_archetype_captures.swift │ ├── emplace.swift │ ├── enum.swift │ ├── enum_curry_thunks.swift │ ├── enum_debuginfo.swift │ ├── enum_default_arguments.swift │ ├── enum_equatable_witness.swift │ ├── enum_generic_raw_value.swift │ ├── enum_raw_representable.swift │ ├── enum_raw_representable_available.swift │ ├── enum_raw_representable_available_visionos.swift │ ├── enum_raw_representable_available_visionos_ios.swift │ ├── enum_raw_representable_objc.swift │ ├── enum_resilience.swift │ ├── enum_resilience_testable.swift │ ├── enum_witness_thunks.swift │ ├── erasure_reabstraction.swift │ ├── error_type_substitution.swift │ ├── errors.swift │ ├── exclusivityattr.swift │ ├── execution_attr.swift │ ├── existential_erasure.swift │ ├── existential_erasure_length_2.swift │ ├── existential_erasure_mutating_covariant_self.swift │ ├── existential_member_accesses_self_assoctype.swift │ ├── existential_metatypes.swift │ ├── expressions.swift │ ├── extensions.swift │ ├── extensions_multifile.swift │ ├── extensions_objc.swift │ ├── extern_c.swift │ ├── external-associated-type-conformance.swift │ ├── external-keypath.swift │ ├── external_definitions.swift │ ├── final.swift │ ├── fixed_layout_attribute.swift │ ├── for_loop_tuple_destructure_reabstraction.swift │ ├── force_cast_chained_optional.swift │ ├── foreach.swift │ ├── foreach_async.swift │ ├── foreign_errors.swift │ ├── foreign_to_native_inout_self.swift │ ├── fragile_globals.swift │ ├── fully-concrete-extension-of-generic.swift │ ├── function_conversion.swift │ ├── function_conversion_objc.swift │ ├── function_conversion_se0110.swift │ ├── function_type_conversion.swift │ ├── function_type_lowering.swift │ ├── function_type_lowering_inherited_conformance.swift │ ├── function_type_lowering_objc.swift │ ├── functions.swift │ ├── functions_uninhabited_param.swift │ ├── generic_casts.swift │ ├── generic_casts_swift4.swift │ ├── generic_closures.swift │ ├── generic_literals.swift │ ├── generic_local_property.swift │ ├── generic_objc_block_bridge.swift │ ├── generic_property_base_lifetime.swift │ ├── generic_signatures.swift │ ├── generic_tuples.swift │ ├── generic_witness.swift │ ├── global-actor.swift │ ├── global_actor_function_mangling.swift │ ├── global_actor_functions.swift │ ├── global_init_attribute.swift │ ├── global_resilience.swift │ ├── guaranteed-let-peephole-reabstraction.swift │ ├── guaranteed_closure_context.swift │ ├── guaranteed_normal_args.swift │ ├── guaranteed_normal_args_curry_thunks.swift │ ├── guaranteed_self.swift │ ├── guardlet_debuginfo.swift │ ├── has_symbol.swift │ ├── hop_to_executor.swift │ ├── hop_to_executor_async_prop.swift │ ├── hop_to_executor_witness.swift │ ├── if_expr.swift │ ├── if_while_binding.swift │ ├── implicit_property_initializers.swift │ ├── implicitly_unwrapped_optional.swift │ ├── import_as_member.swift │ ├── import_as_member_cf.swift │ ├── imported_struct_array_field.swift │ ├── indirect_accessor_access.swift │ ├── indirect_enum.swift │ ├── infinite_type_from_generic_substitution.swift │ ├── inherit_initializers.swift │ ├── inherited_protocol_conformance_multi_file.swift │ ├── inherited_protocol_conformance_multi_file_2.swift │ ├── init_actor_isolation.swift │ ├── init_delegation_optional.swift │ ├── init_ref_delegation.swift │ ├── initializers.swift │ ├── inlinable_attribute.swift │ ├── inlinable_attribute_objc.swift │ ├── inline_always.swift │ ├── inline_array_stored_properties.swift │ ├── inlinearray_literal.swift │ ├── inout-existential-opened-type-function-conversion.swift │ ├── inout_reabstracted_closure_literal.swift │ ├── interface_type_mangling.swift │ ├── internal_protocol_refines_public_protocol_with_public_default_implementation.swift │ ├── isolated_any.swift │ ├── isolated_any_conformance.swift │ ├── isolated_any_invalid.swift │ ├── isolated_default_arguments.swift │ ├── isolated_parameters.swift │ ├── isolated_self_capture.swift │ ├── issue-77295.swift │ ├── ivar_destroyer.swift │ ├── ivar_destroyer_objc.swift │ ├── ivar_destroyer_resilience.swift │ ├── ivar_initializer.swift │ ├── keypath_accessors_reabstraction.swift │ ├── keypath_application.swift │ ├── keypath_covariant_override.swift │ ├── keypath_dynamic.swift │ ├── keypath_property_descriptors.swift │ ├── keypath_witness_overrides.swift │ ├── keypaths.swift │ ├── keypaths_import_as_member.swift │ ├── keypaths_inlinable.swift │ ├── keypaths_multi_file.swift │ ├── keypaths_objc.swift │ ├── keypaths_objc_optional.swift │ ├── keypaths_resilient.swift │ ├── keypaths_resilient_generic.swift │ ├── lazy_global_access.swift │ ├── lazy_globals.swift │ ├── lazy_globals_multiple_vars.swift │ ├── lazy_locals.swift │ ├── lazy_properties.swift │ ├── lazy_properties_multi.swift │ ├── lazy_property_with_observers.swift │ ├── lazy_typecheck_availability.swift │ ├── lazy_typecheck_conformances.swift │ ├── lazy_typecheck_errors.swift │ ├── lazy_typecheck_opaque_result_type.swift │ ├── lazy_typecheck_rdar144897917.swift │ ├── lazy_typecheck_var_init.swift │ ├── let_decls.swift │ ├── let_decls_objc.swift │ ├── lexical_lifetime.swift │ ├── lexical_lifetime_forced.swift │ ├── library_evolution_property_originally_defined_in_current_module.swift │ ├── lifetime.swift │ ├── lifetime_dependence_lowering.swift │ ├── lifetime_nonmutating_address_only.swift │ ├── lifetime_unions.swift │ ├── lit.local.cfg │ ├── literal_closure_reabstraction_throws.swift │ ├── literal_closure_reabstraction_with_peephole.swift │ ├── literal_expr_conditional_conformance.swift │ ├── literals.swift │ ├── load_from_lvalue_in_plus_zero_context.swift │ ├── local_captures.swift │ ├── local_decl_after_unreachable.swift │ ├── local_function_isolation.swift │ ├── local_recursion.swift │ ├── local_types.swift │ ├── lying_about_optional_return.swift │ ├── lying_about_optional_return_objc.swift │ ├── magic_identifier_file.swift │ ├── magic_identifier_file_conflicting.swift.gyb │ ├── magic_identifier_filepath.swift │ ├── magic_identifiers_inside_property_initializers.swift │ ├── mangle_conformance_access_path.swift │ ├── mangle_structural_opaque_type_name.swift │ ├── mangling.swift │ ├── mangling_ext_structA.swift │ ├── mangling_generic_extensions.swift │ ├── mangling_inverse_generics.swift │ ├── mangling_inverse_generics_basic.swift │ ├── mangling_predates_concurrency.swift │ ├── mangling_private.swift │ ├── mangling_retroactive.swift │ ├── mangling_retroactive_overlay.swift │ ├── mangling_specialized_extensions.swift │ ├── member_chains.swift │ ├── memberwise_init_temporary_allocations.swift │ ├── metatype_abstraction.swift │ ├── metatype_casts.swift │ ├── metatype_in_init_delegation.swift │ ├── metatype_object_conversion.swift │ ├── metatypes.swift │ ├── minimum_foreach.swift │ ├── mix-setter-and-read.swift │ ├── modify.swift │ ├── modify_accessor.swift │ ├── modify_objc.swift │ ├── moveonly.swift │ ├── moveonly_addressonly_computed_property.swift │ ├── moveonly_basics.swift │ ├── moveonly_consuming_switch.swift │ ├── moveonly_deinit_access.swift │ ├── moveonly_deinit_module_no_body.swift │ ├── moveonly_deinits.swift │ ├── moveonly_empty_conditionally_copyable.swift │ ├── moveonly_enum_literal.swift │ ├── moveonly_escaping_closure.swift │ ├── moveonly_failable_init.swift │ ├── moveonly_lazy_initialized_globals.swift │ ├── moveonly_library_evolution.swift │ ├── moveonly_optional_operations.swift │ ├── moveonly_optional_operations_2.swift │ ├── moveonly_subscript_addressor.swift │ ├── moveonly_var.swift │ ├── multi_file.swift │ ├── nested_generics.swift │ ├── nested_pack_expansion.swift │ ├── nested_types_referencing_nested_functions.swift │ ├── newtype.swift │ ├── no_property_descriptor_for_move_only.swift │ ├── noescape_reabstraction.swift │ ├── noimplicitcopy.swift │ ├── noimplicitcopy_attr.swift │ ├── noimplicitcopy_attr_arg_generic_users_banned.swift │ ├── noimplicitcopy_borrowing_parameters.swift │ ├── non_loadable_move_only.swift │ ├── noncopyable_enum_unexpected_case.swift │ ├── nonisolated_inherits_isolation.swift │ ├── nsmanaged-witness-multi.swift │ ├── nsmanaged-witness.swift │ ├── objc_access_notes.swift │ ├── objc_actor.swift │ ├── objc_async.swift │ ├── objc_async_checked.swift │ ├── objc_async_defined_in_swift_any.swift │ ├── objc_async_from_swift.swift │ ├── objc_async_sendable_completion_handlers.swift │ ├── objc_async_tuple_return_88949633.swift │ ├── objc_attr_NSManaged.swift │ ├── objc_attr_NSManaged_multi.swift │ ├── objc_block_to_func_to_block.swift │ ├── objc_blocks_bridging.swift │ ├── objc_bool_bridging.swift │ ├── objc_bridged_block_optionality_diff.swift │ ├── objc_bridged_generic_conformance.swift │ ├── objc_bridged_generic_nonnull.swift │ ├── objc_bridged_results.swift │ ├── objc_bridged_using_protocol_extension_impl.swift │ ├── objc_bridging.swift │ ├── objc_bridging_any.swift │ ├── objc_bridging_array.swift │ ├── objc_bridging_nsstring.swift │ ├── objc_bridging_peephole.swift │ ├── objc_bridging_sendable.swift │ ├── objc_bridging_url.swift │ ├── objc_currying.swift │ ├── objc_dealloc.swift │ ├── objc_dictionary_bridging.swift │ ├── objc_direct.swift │ ├── objc_disable_brigding.swift │ ├── objc_dynamic_init.swift │ ├── objc_dynamic_replacement.swift │ ├── objc_dynamic_replacement_ext.swift │ ├── objc_effectful_properties.swift │ ├── objc_effectful_properties_checked.swift │ ├── objc_enum.swift │ ├── objc_enum_unused_witnesses.swift │ ├── objc_error.swift │ ├── objc_error_convention_from_protocol.swift │ ├── objc_error_fast_path.swift │ ├── objc_extensions.swift │ ├── objc_factory_init.swift │ ├── objc_final.swift │ ├── objc_generic_class.swift │ ├── objc_implementation.swift │ ├── objc_imported_generic.swift │ ├── objc_imported_init.swift │ ├── objc_init_iuo_override.swift │ ├── objc_init_ref_delegation.swift │ ├── objc_init_unavailable.swift │ ├── objc_keypath.swift │ ├── objc_local.swift │ ├── objc_metatypes.swift │ ├── objc_nonnull_lie_hack.swift │ ├── objc_ownership_conventions.swift │ ├── objc_preconcurrency.swift │ ├── objc_properties.swift │ ├── objc_protocol_native_thunk.swift │ ├── objc_protocols.swift │ ├── objc_required_designated_init.swift │ ├── objc_selector.swift │ ├── objc_set_bridging.swift │ ├── objc_subscript.swift │ ├── objc_super.swift │ ├── objc_thunks.swift │ ├── objc_witnesses.swift │ ├── objc_witnesses_serialized.swift │ ├── observers.swift │ ├── observers_swift6.swift │ ├── observers_with_on_demand_modify_accessor.swift │ ├── opaque_result_type.swift │ ├── opaque_result_type_captured.swift │ ├── opaque_result_type_captured_wmo.swift │ ├── opaque_result_type_class_property.swift │ ├── opaque_result_type_fragile.swift │ ├── opaque_result_type_inlinable.swift │ ├── opaque_result_type_nested_optional.swift │ ├── opaque_result_type_private.swift │ ├── opaque_result_type_private_assoc_type.swift │ ├── opaque_result_type_private_substitution.swift │ ├── opaque_result_type_reduction_order.swift │ ├── opaque_result_type_retroactive.swift │ ├── opaque_result_type_slow.swift │ ├── opaque_result_type_structural.swift │ ├── opaque_result_type_underlying_type_abstraction.swift │ ├── opaque_type_lowering_in_substitution.swift │ ├── opaque_type_repeat_application.swift │ ├── opaque_type_sendable_requirement_canonicalization.swift │ ├── opaque_type_substitution_through_substitutions.swift │ ├── opaque_values_closures.swift │ ├── opaque_values_cxx.swift │ ├── opaque_values_invalid.swift │ ├── opaque_values_objc.swift │ ├── opaque_values_silgen.swift │ ├── opaque_values_silgen_imports_resilient.swift │ ├── opaque_values_silgen_lib.swift │ ├── opaque_values_silgen_nonobjc.swift │ ├── opaque_values_silgen_objc.swift │ ├── opaque_values_silgen_resilient.swift │ ├── opaque_values_silgen_vtable.swift │ ├── opened_existential_in_init_delegation.swift │ ├── opened_existentials.swift │ ├── optional-cast.swift │ ├── optional.swift │ ├── optional_chain_addressor.swift │ ├── optional_lvalue.swift │ ├── optional_to_bool.swift │ ├── optional_to_optional.swift │ ├── other-entry-point-function-name.swift │ ├── owned.swift │ ├── ownership.swift │ ├── ownership_specifier_mangling.swift │ ├── pack_element_expr_captures.swift │ ├── pack_expansion_type.swift │ ├── pack_iteration.swift │ ├── package_allow_non_resilient_access.swift │ ├── package_global_accessor.swift │ ├── package_sil_linkage.swift │ ├── parameterized_existential_composition.swift │ ├── parameterized_existentials.swift │ ├── parameterized_existentials_reabstraction.swift │ ├── parameterized_existentials_variadic.swift │ ├── partial_apply_apply.swift │ ├── partial_apply_consuming_self.swift │ ├── partial_apply_generic.swift │ ├── partial_apply_init.swift │ ├── partial_apply_operator.swift │ ├── partial_apply_override.swift │ ├── partial_apply_protocol.swift │ ├── partial_apply_protocol_class_refinement_method.swift │ ├── partial_apply_super.swift │ ├── partial_apply_throws.swift │ ├── phantom_existential_typealias.swift │ ├── pointer_conversion.swift │ ├── pointer_conversion_nonaccessing.swift │ ├── pointer_conversion_nonaccessing_objc.swift │ ├── polymorphic_builtins.swift │ ├── polymorphic_inout_aliasing.swift │ ├── pound_assert.swift │ ├── preconcurrency-abi-safe-conversions.swift │ ├── preconcurrency-bridged-return.swift │ ├── preconcurrency.swift │ ├── preconcurrency_conformances.swift │ ├── preconcurrency_conformances_backdeploy.swift │ ├── preconcurrency_indirect_return.swift │ ├── private_import.swift │ ├── private_import_other.swift │ ├── properties.swift │ ├── properties_swift4.swift │ ├── properties_swift5.swift │ ├── property_abstraction.swift │ ├── property_wrapper_autoclosure.swift │ ├── property_wrapper_coroutine.swift │ ├── property_wrapper_coroutine_public.swift │ ├── property_wrapper_local.swift │ ├── property_wrapper_observers.swift │ ├── property_wrapper_parameter.swift │ ├── property_wrappers.swift │ ├── property_wrappers_constrained_extension.swift │ ├── property_wrappers_final.swift │ ├── property_wrappers_library_evolution.swift │ ├── property_wrappers_multifile.swift │ ├── protocol-extension-default-arg-existential-objc.swift │ ├── protocol-extension-default-arg-existential.swift │ ├── protocol_cast_toplevel.swift │ ├── protocol_class_refinement.swift │ ├── protocol_enum_witness.swift │ ├── protocol_extensions.swift │ ├── protocol_operators.swift │ ├── protocol_operators_local_conformance.swift │ ├── protocol_optional.swift │ ├── protocol_overrides.swift │ ├── protocol_resilience.swift │ ├── protocol_resilience_objc.swift │ ├── protocol_superclass_cycle.swift │ ├── protocol_with_superclass.swift │ ├── protocol_with_superclass_where_clause.swift │ ├── protocols.swift │ ├── ptrauth_field_fptr_import.swift │ ├── raw_layout.swift │ ├── rdar126583098.swift │ ├── reabstract-tuple.swift │ ├── reabstract.swift │ ├── reabstract_lvalue.swift │ ├── read_accessor.swift │ ├── read_requirements.swift │ ├── read_yield_local_variable.swift │ ├── reasync.swift │ ├── reference_bindings.swift │ ├── replace_opaque_type_public_assoc_type.swift │ ├── required_init.swift │ ├── resilient_assign_by_wrapper.swift │ ├── result_abstraction.swift │ ├── result_builder_curry_thunks.swift │ ├── result_builder_memberwise.swift │ ├── retaining_globals.swift │ ├── rethrows.swift │ ├── same_type_abstraction.swift │ ├── same_type_across_generic_depths.swift │ ├── scalar_to_tuple_args.swift │ ├── semanticsattr.swift │ ├── sendable_c_function_pointer_conversion.swift │ ├── sendable_to_any_for_generic_arguments.swift │ ├── sending.swift │ ├── serialize_module_for_stored_property_initializer.swift │ ├── serialized-capture-opaque-type-subst.swift │ ├── shared.swift │ ├── sibling-nested-generic.swift │ ├── sil_locations.swift │ ├── sil_locations_top_level.swift │ ├── sil_verifier_method_self_type.swift │ ├── silgen_name_conflict.swift │ ├── silgenbuilder_tuple_ownership.swift │ ├── skip_function_bodies_clang_enum_init_raw_value.swift │ ├── skip_function_bodies_guard.swift │ ├── skip_function_bodies_storage.swift │ ├── skip_local_function_bodies.swift │ ├── skip_non_exportable_decls.swift │ ├── skip_non_exportable_decls_top_level.swift │ ├── source_location.swift │ ├── specialize_attr.swift │ ├── statements.swift │ ├── static-stored-properties-in-concrete-contexts.swift │ ├── stored_property_default_arg.swift │ ├── stored_property_init_reabstraction.swift │ ├── struct_resilience.swift │ ├── struct_resilience_testable.swift │ ├── subclass_existentials.swift │ ├── subscript_accessor.swift │ ├── subscript_default_arguments.swift │ ├── subscripts.swift │ ├── subst_function_type_existential.swift │ ├── subst_function_type_missing_sendable.swift │ ├── subst_function_type_opaque.swift │ ├── super-to-nonobjc-extension.swift │ ├── super.swift │ ├── super_init_refcounting.swift │ ├── super_objc_class_method.swift │ ├── swift_newtype_result_convention.swift │ ├── switch-case-debug-descriptions.swift │ ├── switch.swift │ ├── switch_abstraction.swift │ ├── switch_bool.swift │ ├── switch_debuginfo.swift │ ├── switch_default.swift │ ├── switch_expr.swift │ ├── switch_expr_address_only_tuple_return_value_context.swift │ ├── switch_fallthrough.swift │ ├── switch_isa.swift │ ├── switch_mixed_address_only_loadable.swift │ ├── switch_multiple_entry_address_only.swift │ ├── switch_objc.swift │ ├── switch_ownership.swift │ ├── switch_resilience.swift │ ├── switch_var.swift │ ├── synthesized_conformance_class.swift │ ├── synthesized_conformance_enum.swift │ ├── synthesized_conformance_struct.swift │ ├── ternary_expr.swift │ ├── testable-multifile-other.swift │ ├── testable-multifile.swift │ ├── top_level_captures.swift │ ├── toplevel.swift │ ├── toplevel_errors.swift │ ├── toplevel_globalactorvars.swift │ ├── transparent_attribute.swift │ ├── tsan_instrumentation.swift │ ├── tuple_attribute_reabstraction.swift │ ├── tuple_conversion_refutable_pattern.swift │ ├── tuples.swift │ ├── type_lowering_subst_function_type_caseiterable.swift │ ├── type_lowering_subst_function_type_conditional_conformance.swift │ ├── type_lowering_subst_function_type_requirement_machine.swift │ ├── type_lowering_subst_function_type_superclass_archetype.swift │ ├── typed_throws.swift │ ├── typed_throws_async.swift │ ├── typed_throws_generic.swift │ ├── typed_throws_reabstraction.swift │ ├── typed_throws_thunk.swift │ ├── typelowering_inverses.swift │ ├── types.swift │ ├── unavailable_clang_enum_typedef.swift │ ├── unavailable_decl_custom_domain.swift │ ├── unavailable_decl_optimization_complete.swift │ ├── unavailable_decl_optimization_stub.swift │ ├── unavailable_decl_optimization_stub_back_deployed.swift │ ├── unavailable_decl_optimization_stub_class.swift │ ├── unavailable_decl_optimization_stub_maccatalyst.swift │ ├── unavailable_decl_optimization_stub_macos.swift │ ├── unavailable_decl_optimization_stub_macos_zippered.swift │ ├── unavailable_decl_optimization_stub_objc.swift │ ├── unavailable_decl_optimization_stub_opaque_type.swift │ ├── unavailable_decl_optimization_stub_protocol_witness.swift │ ├── unavailable_decl_optimization_stub_struct.swift │ ├── unavailable_decl_optimization_stub_visionos.swift │ ├── unicode_scalar_concat.swift │ ├── unmanaged-chain.swift │ ├── unmanaged.swift │ ├── unmanaged_ownership.swift │ ├── unowned-class-bound-generic-parameter.swift │ ├── unowned.swift │ ├── unreachable_code.swift │ ├── unsafe_pointer_gen.swift │ ├── unsafevalue.swift │ ├── use_thick_metatype_after_objc.swift │ ├── value_ownership.swift │ ├── value_ownership_class.swift │ ├── variadic-generic-arguments.swift │ ├── variadic-generic-captures.swift │ ├── variadic-generic-class-methods.swift │ ├── variadic-generic-closures.swift │ ├── variadic-generic-lowering.swift │ ├── variadic-generic-reabstract-tuple-arg.swift │ ├── variadic-generic-reabstract-tuple-result.swift │ ├── variadic-generic-reabstraction.swift │ ├── variadic-generic-results.swift │ ├── variadic-generic-tuples.swift │ ├── variadic-generic-vanishing-tuples.swift │ ├── variadic.swift │ ├── variadic_generic_allocating_init.swift │ ├── variadic_generic_conformances.swift │ ├── variadic_generic_keypath_descriptors.swift │ ├── variadic_generic_opaque_multifile.swift │ ├── variadic_generic_types.swift │ ├── variant_overrides.swift │ ├── versioned_attribute.swift │ ├── vtable_generic_signature.swift │ ├── vtable_implementation_only.swift │ ├── vtable_internal_imported_ancestor.swift │ ├── vtable_thunks.swift │ ├── vtable_thunks_reabstraction.swift │ ├── vtable_thunks_reabstraction_final.swift │ ├── vtable_thunks_reabstraction_modify.swift │ ├── vtables.swift │ ├── vtables_multifile.swift │ ├── vtables_objc.swift │ ├── weak.swift │ ├── weak_linked_attribute.swift │ ├── weak_multiple_modules.swift │ ├── win_bool_bridging.swift │ ├── without_actually_escaping.swift │ ├── without_actually_escaping_block.swift │ ├── without_actually_escaping_that_doesnt_actually_escape.swift │ ├── witness-init-requirement-with-base-class-init.swift │ ├── witness-modify-requirement-with-base-class-modify.swift │ ├── witness_accessibility.swift │ ├── witness_accessibility_multi.swift │ ├── witness_same_type.swift │ ├── witness_single_tuple.swift │ ├── witness_table_overrides.swift │ ├── witness_tables.swift │ ├── witness_tables_multifile.swift │ ├── witness_tables_serialized.swift │ ├── witness_tables_serialized_import.swift │ ├── witnesses.swift │ ├── witnesses_canonical.swift │ ├── witnesses_class.swift │ ├── witnesses_inheritance.swift │ ├── witnesses_refinement.swift │ ├── writeback.swift │ ├── writeback_conflict_diagnostics.swift │ └── yield_borrowing.swift ├── SILOptimizer │ ├── DestructorAnalysis.swift │ ├── Inputs │ │ ├── BaseProblem.swift │ │ ├── CXXTypesWithUserProvidedDestructor.h │ │ ├── Closure.h │ │ ├── OSLogConstantEvaluable.swift │ │ ├── Outliner.h │ │ ├── Problems.swift │ │ ├── SpanExtras.swift │ │ ├── TestMod.sil │ │ ├── TestModule.swift │ │ ├── abi │ │ │ ├── c_layout.h │ │ │ └── module.modulemap │ │ ├── access_marker_verify_objc.h │ │ ├── access_wmo_def.swift │ │ ├── bitfield.h │ │ ├── bug-reducer-tester-miscompile-driver.swift │ │ ├── capture_propagation_linkage │ │ │ └── main.swift │ │ ├── cast_folding_opaque_other.swift │ │ ├── constant_evaluable.swift │ │ ├── cross-module │ │ │ ├── c-module.c │ │ │ ├── c-module.h │ │ │ ├── cross-module-objc.swift │ │ │ ├── cross-module.swift │ │ │ ├── cross-private-submodule.swift │ │ │ ├── cross-submodule.swift │ │ │ ├── default-module.swift │ │ │ ├── default-submodule.swift │ │ │ └── module.modulemap │ │ ├── cse_metatype_conformanceA.swift │ │ ├── cse_metatype_conformanceB.swift │ │ ├── cse_metatype_conformanceC.swift │ │ ├── definite_init_cross_module │ │ │ ├── BridgingHeader.h │ │ │ └── OtherModule.swift │ │ ├── devirt_access_helper.swift │ │ ├── devirt_access_other_module.swift │ │ ├── di_property_wrappers_errors_multifile_2.swift │ │ ├── dse_with_union.h │ │ ├── extension-with-nested-type.swift │ │ ├── foundation_bridging.swift │ │ ├── global-functionptr-main.swift │ │ ├── include │ │ │ ├── Gizmo.h │ │ │ ├── cunion.h │ │ │ └── module.modulemap │ │ ├── internal_func.swift │ │ ├── keypaths_objc.h │ │ ├── let_properties_opts.h │ │ ├── licm_and_global_addr │ │ │ ├── main.swift │ │ │ └── test.swift │ │ ├── linker_pass_input.swift │ │ ├── mandatory_inlining_devirt_other.swift │ │ ├── module.modulemap │ │ ├── objc_bridging_opt │ │ │ ├── objc.h │ │ │ └── objc.m │ │ ├── objc_optional.h │ │ ├── ome_strip_deserialize_input.sil │ │ ├── opaque_conformance.swift │ │ ├── opaque_result_types.swift │ │ ├── optional_closure_bridging.h │ │ ├── perf-annotations.h │ │ ├── pre_specialized_module.swift │ │ ├── pre_specialized_module2.swift │ │ ├── pre_specialized_module_layouts.swift │ │ ├── prespecialize_import_module.swift │ │ ├── public_class.swift │ │ ├── sil_witness_tables_external_input.swift │ │ ├── specialization_and_resilience_module.swift │ │ ├── specialize_inherited_multifile_other.swift │ │ ├── specialize_opaque_result_types.swift │ │ ├── specialize_opaque_type_archetypes_2.swift │ │ ├── specialize_opaque_type_archetypes_3.swift │ │ ├── specialize_opaque_type_archetypes_4.swift │ │ ├── specialize_opaque_type_archetypes_multifile_A.swift │ │ ├── struct_with_fields.swift │ │ ├── switch_enum_objc.h │ │ ├── type_lowering_resilience_other.swift │ │ └── usr │ │ │ └── include │ │ │ ├── closure_lifetime_fixup_objc.h │ │ │ └── module.modulemap │ ├── OSLogCompilerDiagnosticsTest.swift │ ├── OSLogConstantEvaluableProfilerTest.swift │ ├── OSLogConstantEvaluableTest.swift │ ├── OSLogConstantEvaluableTsanTest.swift │ ├── OSLogFullOptTest.swift │ ├── OSLogMandatoryOptTest.sil │ ├── OSLogMandatoryOptTest.swift │ ├── StaticVPrintFMandatoryOptTest.swift │ ├── abcopt_large_cfg.sil.gyb │ ├── abcopts.sil │ ├── abcopts_ossa_guaranteed.sil │ ├── abcopts_ossa_owned.sil │ ├── access_dom.sil │ ├── access_dom_call.sil │ ├── access_dom_loop.sil │ ├── access_dom_overlap.sil │ ├── access_enforcement_fastpath.sil │ ├── access_enforcement_fastpath_ossa.sil │ ├── access_enforcement_noescape.swift │ ├── access_enforcement_noescape_error.swift │ ├── access_enforcement_options.swift │ ├── access_enforcement_opts.sil │ ├── access_enforcement_opts_ossa.sil │ ├── access_enforcement_selection.sil │ ├── access_enforcement_selection.swift │ ├── access_marker_elim.sil │ ├── access_marker_mandatory.swift │ ├── access_marker_verify.swift │ ├── access_marker_verify_objc.swift │ ├── access_sink.sil │ ├── access_storage_analysis.sil │ ├── access_storage_analysis_array.sil │ ├── access_storage_analysis_ossa.sil │ ├── access_summary_analysis.sil │ ├── access_wmo.sil │ ├── access_wmo.swift │ ├── access_wmo_diagnose.swift │ ├── accessbase_unit.sil │ ├── accessed_storage.sil │ ├── accessed_storage_ossa.sil │ ├── accessed_storage_unavailable.sil │ ├── accessed_storage_unavailable.swift │ ├── accesspath_unit.sil │ ├── accesspath_uses.sil │ ├── accesspath_uses_ossa.sil │ ├── accessutils.sil │ ├── accessutils_raw.sil │ ├── addr_escape_info.sil │ ├── address_lowering.sil │ ├── address_lowering_lib.sil │ ├── address_lowering_objc.sil │ ├── address_lowering_phi.sil │ ├── address_lowering_preprocessed.sil │ ├── addressable_dependencies.swift │ ├── addressable_dependency_optimization.swift │ ├── addressable_move_only_checking.swift │ ├── alias-analysis.sil │ ├── alias-crash.sil │ ├── alive_method_with_thunk.swift │ ├── allocbox_to_stack.sil │ ├── allocbox_to_stack_lifetime.sil │ ├── allocbox_to_stack_noncopyable.sil │ ├── allocbox_to_stack_ownership.sil │ ├── allocbox_to_stack_ownership_attrs.sil │ ├── allocboxtostack_after_closure_lifetime_fixup.sil │ ├── allocboxtostack_localapply.sil │ ├── allocboxtostack_localapply.swift │ ├── allocboxtostack_localapply_ossa.sil │ ├── allocstack_hoisting.sil │ ├── allocstack_hoisting_debuginfo.sil │ ├── always_inline.sil │ ├── alwaysemitintoclient.swift │ ├── anyhashable_to_protocol.swift │ ├── arc_crash.swift │ ├── arcsequenceopts.sil │ ├── arcsequenceopts_casts.sil │ ├── arcsequenceopts_knownsafebugs.sil │ ├── arcsequenceopts_knownsafebugs_loop.sil │ ├── arcsequenceopts_loops.sil │ ├── arcsequenceopts_loops.sil.gyb │ ├── arcsequenceopts_rcidentityanalysis.sil │ ├── arcsequenceopts_uniquecheck.sil │ ├── argument_conventions.sil │ ├── array_count_propagation.sil │ ├── array_count_propagation_ossa.sil │ ├── array_element_propagation.swift │ ├── array_loop.swift │ ├── array_metadata_optimization.swift │ ├── array_mutable_assertonly.swift │ ├── array_property_opt.sil │ ├── array_property_opt_ossa_guaranteed.sil │ ├── array_property_opt_ossa_owned.sil │ ├── assemblyvision_remark │ │ ├── attributes.swift │ │ ├── basic.sil │ │ ├── basic.swift │ │ ├── basic_yaml.swift │ │ ├── cast_remarks.swift │ │ ├── cast_remarks_objc.swift │ │ ├── chacha.swift │ │ ├── force_emit_implicit_autogen.swift │ │ └── nominal_type_attributes.swift │ ├── assert_configuration.sil │ ├── assume_single_threaded.sil │ ├── async-demotion │ │ └── basic.swift │ ├── basic-aa.sil │ ├── basic-callee-printer.sil │ ├── basic-instruction-properties.sil │ ├── boolean-literal-folding.sil │ ├── borrow_introducer_unit.sil │ ├── borrowed_from_updater.sil │ ├── bridged_casts_crash.sil │ ├── bridged_casts_folding.sil │ ├── bridged_casts_folding.swift │ ├── bridged_casts_folding_ownership.sil │ ├── bridged_casts_folding_same_module.swift │ ├── bridging_checked_cast.sil │ ├── bug-reducer-tester-miscompile.sil │ ├── bug-reducer-tester-opt-crasher.sil │ ├── bug-reducer-tester-runtime-crasher.sil │ ├── builtins.swift │ ├── c_string_optimization.swift │ ├── callee_analysis_crash.swift │ ├── caller_analysis.sil │ ├── canonicalize_borrow_scope_unit.sil │ ├── canonicalize_function_argument_unit.sil │ ├── canonicalize_ossa_lifetime_unit.sil │ ├── canonicalize_switch_enum.sil │ ├── capture_promotion.swift │ ├── capture_promotion_attr.sil │ ├── capture_promotion_attrs.sil │ ├── capture_promotion_generic_context.sil │ ├── capture_promotion_generic_context_ownership.sil │ ├── capture_promotion_ownership.sil │ ├── capture_promotion_ownership.swift │ ├── capture_promotion_reachability.sil │ ├── capture_promotion_resilient.sil │ ├── capture_propagate_keypath.swift │ ├── capture_propagation.sil │ ├── capture_propagation_linkage.swift │ ├── cast_folding.swift │ ├── cast_folding_conditional_conformance.swift │ ├── cast_folding_no_bridging.sil │ ├── cast_folding_objc.swift │ ├── cast_folding_objc_bridging_conditional.sil │ ├── cast_folding_objc_generics.swift │ ├── cast_folding_objc_no_foundation.swift │ ├── cast_folding_opaque.swift │ ├── cast_folding_parameterized_protocol.swift │ ├── cast_optimizer_conditional_conformance.sil │ ├── castoptimizer-wrongscope.swift │ ├── character_literals.swift │ ├── cleanup_debugstep.sil │ ├── closure-lifetime-fixup-dead-block.sil │ ├── closure-lifetime-fixup-debuginfo.sil │ ├── closure-lifetime-fixup.sil │ ├── closure_lifetime_fixup.swift │ ├── closure_lifetime_fixup_concurrency.swift │ ├── closure_lifetime_fixup_copyelim.swift │ ├── closure_lifetime_fixup_objc.swift │ ├── closure_lifetime_fixup_undef.swift │ ├── closure_scope_analysis.swift │ ├── closure_spec_and_inline.swift │ ├── closure_specialize.sil │ ├── closure_specialize_and_cfg.sil │ ├── closure_specialize_attrs.sil │ ├── closure_specialize_block.swift │ ├── closure_specialize_consolidated.sil │ ├── closure_specialize_dynamic_self.swift │ ├── closure_specialize_fragile.sil │ ├── closure_specialize_loop.swift │ ├── closure_specialize_opaque.sil │ ├── closure_specialize_simple.sil │ ├── cold_block_info.swift │ ├── compare_types.swift │ ├── concat_string_literals.32.swift │ ├── concat_string_literals.64.swift │ ├── conditionforwarding.sil │ ├── conditionforwarding_nontrivial_ossa.sil │ ├── conditionforwarding_ossa.sil │ ├── constant_evaluable_profiler_test.swift │ ├── constant_evaluable_subset_test.swift │ ├── constant_evaluable_subset_test_arch32.swift │ ├── constant_evaluable_subset_test_arch64.swift │ ├── constant_evaluable_tsan_test.swift │ ├── constant_evaluator_skip_test.sil │ ├── constant_evaluator_test.sil │ ├── constant_fold_float.swift │ ├── constant_propagation.sil │ ├── constant_propagation2.sil │ ├── constant_propagation_availability.swift │ ├── constant_propagation_castopt_analysis_invalidation.sil │ ├── constant_propagation_casts_opaque_lowered.sil │ ├── constant_propagation_casts_ossa.sil │ ├── constant_propagation_diagnostics.swift │ ├── constant_propagation_floats.sil │ ├── constant_propagation_floats_x86.sil │ ├── constant_propagation_objc.sil │ ├── constant_propagation_ownership.sil │ ├── constant_propagation_ownership_objc.sil │ ├── constant_propagation_stdlib.swift │ ├── constantprop-wrongscope.swift │ ├── consume_operator_kills_addresses_dbginfo.sil │ ├── consume_operator_kills_copyable_addresses.sil │ ├── consume_operator_kills_copyable_addressonly_lets.swift │ ├── consume_operator_kills_copyable_addressonly_vars.swift │ ├── consume_operator_kills_copyable_addressonly_vars_crash.swift │ ├── consume_operator_kills_copyable_loadable_vars.swift │ ├── consume_operator_kills_copyable_values.sil │ ├── consume_operator_kills_copyable_values.swift │ ├── consume_operator_kills_values_dbginfo.sil │ ├── consume_operator_nonlocalmemory.swift │ ├── consume_operator_reinit_in_defer.swift │ ├── consuming_parameter.swift │ ├── copy-to-borrow-optimization.sil │ ├── copy_propagation.sil │ ├── copy_propagation.swift │ ├── copy_propagation_borrow.sil │ ├── copy_propagation_canonicalize_with_reborrows.sil │ ├── copy_propagation_onone.sil │ ├── copy_propagation_opaque.sil │ ├── copy_propagation_value.sil │ ├── copyforward.sil │ ├── copyforward_ossa.sil │ ├── cow_opts.sil │ ├── cowarray_opt.sil │ ├── cowarray_opt_crash.swift │ ├── cowarray_opt_ossa.sil │ ├── cropoverflow.sil │ ├── cross-module-effects.swift │ ├── cross-module-opt-everything.swift │ ├── cross-module-optimization-objc.swift │ ├── cross-module-optimization.swift │ ├── cse.sil │ ├── cse_apply.sil │ ├── cse_apply_ossa.sil │ ├── cse_forwarding_ossa.sil │ ├── cse_metatype_conformance.swift │ ├── cse_objc.sil │ ├── cse_objc_ossa.sil │ ├── cse_open_existential_ref.sil │ ├── cse_open_existential_ref.swift │ ├── cse_ossa.sil │ ├── cse_ossa_nontrivial.sil │ ├── curry-thunk-elimination.swift │ ├── cyclic_entry.sil │ ├── dead_alloc.swift │ ├── dead_alloc_elim.sil │ ├── dead_alloc_elim_ossa.sil │ ├── dead_arg_transform.sil │ ├── dead_array_elim.sil │ ├── dead_array_elim.swift │ ├── dead_array_elim_ossa.sil │ ├── dead_bridging_code.swift │ ├── dead_code_elimination.sil │ ├── dead_code_elimination_nontrivial_ossa.sil │ ├── dead_code_elimination_ossa.sil │ ├── dead_end_blocks.sil │ ├── dead_func.swift │ ├── dead_func_init_method.sil │ ├── dead_func_objc_extension_keypath.swift │ ├── dead_function_elimination.swift │ ├── dead_inlined_func.swift │ ├── dead_internal_func.swift │ ├── dead_method.swift │ ├── dead_store_elim.sil │ ├── dead_store_elim_c.sil │ ├── dead_witness_module.swift │ ├── deadargsignatureopt.sil │ ├── deadendblocks.sil │ ├── debuginfo_canonicalizer.sil │ ├── default-cmo-with-opaque-types.swift │ ├── default-cmo-with-package-decls.swift │ ├── default-cmo.swift │ ├── definite-init-convert-to-escape.swift │ ├── definite-init-try-in-self-init-argument.swift │ ├── definite-init-wrongscope.swift │ ├── definite_init.swift │ ├── definite_init_actor.swift │ ├── definite_init_address_only_let.swift │ ├── definite_init_builtin_vector.swift │ ├── definite_init_closures.sil │ ├── definite_init_closures.swift │ ├── definite_init_closures_fail.swift │ ├── definite_init_crashes.sil │ ├── definite_init_crashes_objc.sil │ ├── definite_init_cross_module.swift │ ├── definite_init_cross_module_swift4.swift │ ├── definite_init_diagnostics.swift │ ├── definite_init_diagnostics_globals.swift │ ├── definite_init_diagnostics_objc.swift │ ├── definite_init_disallow_move_only_dynamic.swift │ ├── definite_init_existential_let.swift │ ├── definite_init_extension.swift │ ├── definite_init_failable_initializers.swift │ ├── definite_init_failable_initializers_diagnostics.swift │ ├── definite_init_failable_initializers_objc.swift │ ├── definite_init_flow_sensitive_actor_self.swift │ ├── definite_init_flow_sensitive_distributed_actor_self.swift │ ├── definite_init_hang.swift │ ├── definite_init_inout_super_init.swift │ ├── definite_init_lvalue_let_witness_methods.swift │ ├── definite_init_markuninitialized_delegatingself.sil │ ├── definite_init_markuninitialized_derivedself.sil │ ├── definite_init_markuninitialized_rootself.sil │ ├── definite_init_markuninitialized_var.sil │ ├── definite_init_moveonly_controlflowdep_init.sil │ ├── definite_init_nsmanagedvalue.swift │ ├── definite_init_objc_factory_init.swift │ ├── definite_init_protocol_init.swift │ ├── definite_init_root_class.swift │ ├── definite_init_tuple.sil │ ├── definite_init_type_of_self_in_convenience_init.swift │ ├── definite_init_unavailable_enum_element.swift │ ├── definite_init_value_types.swift │ ├── definite_init_value_types_diagnostics.swift │ ├── deinit_barrier.sil │ ├── deinit_total_consumption.swift │ ├── destroy-hoisting.sil │ ├── destroy_hoisting_crash.swift │ ├── destructor_analysis.sil │ ├── devirt_access.sil │ ├── devirt_access.swift │ ├── devirt_access_ownership.sil │ ├── devirt_access_serialized.sil │ ├── devirt_access_serialized_ownership.sil │ ├── devirt_alloc_ref_dynamic.sil │ ├── devirt_alloc_ref_dynamic_ownership.sil │ ├── devirt_archetype_method.swift │ ├── devirt_base_class.swift │ ├── devirt_bound_generic.swift │ ├── devirt_class_witness_method.sil │ ├── devirt_class_witness_method_generic.swift │ ├── devirt_concrete_subclass_of_generic_class.swift │ ├── devirt_conditional_conformance.swift │ ├── devirt_contravariant_args.swift │ ├── devirt_covariant_return.swift │ ├── devirt_ctors.sil │ ├── devirt_ctors_ownership.sil │ ├── devirt_default_case.swift │ ├── devirt_default_witness_method.sil │ ├── devirt_default_witness_method_ownership.sil │ ├── devirt_deinits.sil │ ├── devirt_deinits.swift │ ├── devirt_dependent_types.swift │ ├── devirt_extension.swift │ ├── devirt_generic_witness_method.sil │ ├── devirt_generic_witness_method_ownership.sil │ ├── devirt_inherited_conformance.swift │ ├── devirt_jump_thread.sil │ ├── devirt_jump_thread_crasher.sil │ ├── devirt_method_with_generic_params.swift │ ├── devirt_nested_class.swift │ ├── devirt_opaque_witness.swift │ ├── devirt_outer_requirements.swift │ ├── devirt_override.sil │ ├── devirt_override_ownership.sil │ ├── devirt_protocol_method_invocations.swift │ ├── devirt_release.sil │ ├── devirt_single_module_in_multiple_files.swift │ ├── devirt_specialized_conformance.swift │ ├── devirt_specialized_inherited_interplay.swift │ ├── devirt_speculate.swift │ ├── devirt_speculative.sil │ ├── devirt_speculative_init.swift │ ├── devirt_speculative_nested.swift │ ├── devirt_static_covariant_return.swift │ ├── devirt_static_witness_method.sil │ ├── devirt_try_apply.sil │ ├── devirt_try_apply_ownership.sil │ ├── devirt_type_subst_bug.swift │ ├── devirt_unbound_generic.swift │ ├── devirt_value_metatypes.swift │ ├── devirt_witness_cross_module.swift │ ├── devirt_witness_method_conformance.swift │ ├── devirt_witness_method_empty_conformance.swift │ ├── devirtualize.sil │ ├── devirtualize1.swift │ ├── devirtualize2.sil │ ├── devirtualize2_ownership.sil │ ├── devirtualize_cast.swift │ ├── devirtualize_class_method.swift │ ├── devirtualize_coroutine_accessors.sil │ ├── devirtualize_existential.swift │ ├── devirtualize_inlinable_mandatory.swift │ ├── devirtualize_ownership.sil │ ├── devirtualize_protocol_composition.swift │ ├── devirtualize_protocol_composition_two_stores.sil │ ├── di-conditional-destroy-scope.swift │ ├── di-loadable-by-addr-scope.swift │ ├── di_property_wrappers.swift │ ├── di_property_wrappers_errors.swift │ ├── di_property_wrappers_errors_multifile.swift │ ├── di_property_wrappers_leak.swift │ ├── diagnose_lifetime_issues.sil │ ├── diagnose_lifetime_issues.swift │ ├── diagnose_lifetime_issues_objc.swift │ ├── diagnose_nested_semantic.swift │ ├── diagnose_unreachable.sil │ ├── diagnose_unreachable.swift │ ├── diagnose_unreachable_enum_resilience.swift │ ├── diagnostic_constant_propagation-swift4.swift │ ├── diagnostic_constant_propagation.swift │ ├── diagnostic_constant_propagation_floats.sil │ ├── diagnostic_constant_propagation_floats.swift │ ├── diagnostic_constant_propagation_floats_nonx86.swift │ ├── diagnostic_constant_propagation_floats_x86.sil │ ├── diagnostic_constant_propagation_floats_x86.swift │ ├── diagnostic_constant_propagation_int_arch32.swift │ ├── diagnostic_constant_propagation_int_arch64.swift │ ├── diagnostic_dead_function_elim.sil │ ├── dictionary_lookup_with_default.swift │ ├── disable-copy-propagation-frontend-flag.swift │ ├── disable_pass_flags.sil │ ├── discard_checking.swift │ ├── dont_broaden_cxx_address_only.sil │ ├── dont_hoist_begin_access_loop_with_no_exit.swift │ ├── dont_remove_dynamic_self_arg.swift │ ├── drop_deinit_opt.sil │ ├── dse_with_union.swift │ ├── dynamic_self_cast.sil │ ├── eager_specialize.sil │ ├── eager_specialize_ossa.sil │ ├── eager_specialize_ossa_attr.sil │ ├── early-rle.sil │ ├── earlycodemotion.sil │ ├── earlycodemotion_moveonly.sil │ ├── empty_collection_count.swift │ ├── enclosing_def_unit.sil │ ├── enum-comparison.swift │ ├── enum_jump_thread.sil │ ├── enum_payload_modification_opt.swift │ ├── enumpayload.swift │ ├── epilogue_arc_analysis_bugs.sil │ ├── epilogue_arc_dumper.sil │ ├── epilogue_release_dumper.sil │ ├── escape_analysis_dead_store.sil │ ├── escape_analysis_invalidate.sil │ ├── escape_analysis_release_hoisting.sil │ ├── escape_effects.sil │ ├── escape_effects_objc.sil │ ├── escape_info.sil │ ├── escape_info_objc.sil │ ├── exclusivity_static_diagnostics.sil │ ├── exclusivity_static_diagnostics.swift │ ├── exclusivity_static_diagnostics_inlined.swift │ ├── exclusivity_static_diagnostics_objc.swift │ ├── existential_box_elimination.swift │ ├── existential_metatype.swift │ ├── existential_specializer_indirect_class.sil │ ├── existential_specializer_soletype.sil │ ├── existential_specializer_soletype_opaque_addrlowered.sil │ ├── existential_spl_witness_method.swift │ ├── existential_transform.swift │ ├── existential_transform_extras.sil │ ├── existential_transform_extras_ossa.sil │ ├── existential_transform_respecialize.sil │ ├── existential_transform_soletype.swift │ ├── existential_type_propagation.sil │ ├── experimental-swift-based-closure-specialization │ │ ├── closure_spec_and_inline.swift │ │ ├── closure_specialize.sil │ │ ├── closure_specialize_and_cfg.sil │ │ ├── closure_specialize_attrs.sil │ │ ├── closure_specialize_consolidated.sil │ │ ├── closure_specialize_dynamic_self.swift │ │ ├── closure_specialize_fragile.sil │ │ ├── closure_specialize_loop.swift │ │ ├── closure_specialize_opaque.sil │ │ └── closure_specialize_simple.sil │ ├── field_sensitive_liverange_unit.sil │ ├── floating_point_conversion.swift │ ├── fold_enums.sil │ ├── for_each_loop_unroll_test.sil │ ├── for_each_loop_unroll_test.swift │ ├── forwarding_utils.sil │ ├── fp_rounding.swift │ ├── fs_pruned_liveness_boundary.sil │ ├── funcsig_deadarg_explode.sil │ ├── funcsig_explode_heuristic.sil │ ├── funcsig_explode_heuristic_inline.sil │ ├── funcsig_opaque.sil │ ├── funcsig_pseudogenerics.sil │ ├── function_order.sil │ ├── function_uses.sil │ ├── functionsigopts.sil │ ├── functionsigopts_attrs.swift │ ├── functionsigopts_crash.swift │ ├── functionsigopts_self.swift │ ├── functionsigopts_sroa.sil │ ├── functionsigopts_string_fileprivate.swift │ ├── functionsigopts_string_internal.swift │ ├── functionsigopts_string_public.swift │ ├── functionsigopts_trivial.sil │ ├── generalized_accessors.sil │ ├── generalized_accessors.swift │ ├── generic_inline_self.swift │ ├── generic_loop.swift │ ├── generic_specialization.swift │ ├── generic_specialization_loops_detection_with_loops.swift │ ├── generic_specialization_loops_detection_without_loops.swift │ ├── gh61041.swift │ ├── global-c-functionptr.swift │ ├── global-functionptr.swift │ ├── global_hoisting_crash.swift │ ├── global_init_opt.swift │ ├── global_init_with_empty.swift │ ├── global_property_opt.sil │ ├── global_property_opt_objc.sil │ ├── globalopt-iter.sil │ ├── globalopt_global_propagation.swift │ ├── globalopt_let_propagation.swift │ ├── globalopt_resilience.swift │ ├── globalopt_resilience_testing.swift │ ├── has_symbol.swift │ ├── hello-world.swift │ ├── high_level_cse.sil │ ├── high_level_licm.sil │ ├── hoist_destroy_addr.sil │ ├── hoist_destroy_addr_loop.sil │ ├── hoist_destroy_addr_resilient.sil │ ├── if_expr.swift │ ├── ignore-always-inline.sil │ ├── illegal_escaping_address.swift │ ├── immortal-arc-elimination.sil │ ├── immortal-arc-elimination.swift │ ├── implicit_imports.swift │ ├── infinite_recursion.swift │ ├── infinite_recursion_objc.swift │ ├── init_accessor_definite_init_diagnostics.swift │ ├── init_accessor_raw_sil_lowering.swift │ ├── init_accessors.sil │ ├── init_accessors.swift │ ├── init_accessors_with_indirect_newValue.swift │ ├── init_static_globals.sil │ ├── init_static_globals_crash.swift │ ├── inline_addressor.swift │ ├── inline_arrays.swift │ ├── inline_begin_apply.sil │ ├── inline_cache_and_arc.swift │ ├── inline_caches.sil │ ├── inline_coroutine.swift │ ├── inline_deep.swift │ ├── inline_devirtualize_specialize.sil │ ├── inline_generic_coroutines.swift │ ├── inline_generics.sil │ ├── inline_heuristics.sil │ ├── inline_keypath.swift │ ├── inline_late.sil │ ├── inline_lifetime.sil │ ├── inline_ossa_to_non_ossa.sil │ ├── inline_recursive.swift │ ├── inline_self.swift │ ├── inline_semantics.sil │ ├── inline_subclass_existential.swift │ ├── inline_terminator_scopes.sil │ ├── inline_thunk.swift │ ├── inline_tryApply.sil │ ├── inline_unreachable.sil │ ├── inlinealways_and_closure.swift │ ├── inlinealways_inliner.sil │ ├── inlinearray_bounds_check_tests.swift │ ├── inlinecaches_arc.sil │ ├── inlinecaches_invalidate_failure.sil │ ├── inlinecaches_objc.sil │ ├── inliner_coldblocks.sil │ ├── inliner_loop.swift │ ├── inliner_spa.sil │ ├── inout_deshadow_integration.swift │ ├── instruction_deleter.sil │ ├── invalid_escaping_captures.swift │ ├── isolated_conformances.swift │ ├── issue-47534.swift │ ├── issue-47644.sil │ ├── issue-68875.swift │ ├── iv_info_printer.sil │ ├── jumpthreadtest.swift │ ├── keypath-folding-crash.sil │ ├── keypath_offset.swift │ ├── keypath_opt_crash.swift │ ├── late_release_hoisting.sil │ ├── latecodemotion.sil │ ├── lazy_property_getters.swift │ ├── let-property-lowering.sil │ ├── let-property-lowering.swift │ ├── let_propagation.swift │ ├── let_properties_opts.sil │ ├── let_properties_opts.swift │ ├── let_properties_opts_non_trivial.sil │ ├── let_properties_opts_objc.swift │ ├── let_properties_opts_runtime.swift │ ├── lexical_destroy_folding.sil │ ├── lexical_destroy_folding_unit.sil │ ├── lexical_destroy_hoisting.sil │ ├── lexical_lifetime_elim.sil │ ├── lexical_lifetime_elim.swift │ ├── lexical_lifetime_force.swift │ ├── lexical_unit.sil │ ├── licm.sil │ ├── licm_and_global_addr.swift │ ├── licm_apply.sil │ ├── licm_exclusivity.sil │ ├── licm_exclusivity.swift │ ├── licm_multiend.sil │ ├── licm_unreferenceablestorage.sil │ ├── lifetime_dependence │ │ ├── Inputs │ │ │ └── lifetime_depend_diagnose.swiftinterface │ │ ├── accessors.swift │ │ ├── addressable_lifetime_with_resilience.swift │ │ ├── coroutine.swift │ │ ├── dependence_insertion.sil │ │ ├── dependence_insertion.swift │ │ ├── diagnose_interface.swift │ │ ├── diagnostic_passes.sil │ │ ├── diagnostic_passes_todo.sil │ │ ├── initializer.swift │ │ ├── inout.swift │ │ ├── lifetime_dependence.sil │ │ ├── lifetime_dependence_borrow.swift │ │ ├── lifetime_dependence_borrow_fail.swift │ │ ├── lifetime_dependence_closure.swift │ │ ├── lifetime_dependence_coroutine.sil │ │ ├── lifetime_dependence_diagnostics.swift │ │ ├── lifetime_dependence_enums.swift │ │ ├── lifetime_dependence_generic.swift │ │ ├── lifetime_dependence_inherit.swift │ │ ├── lifetime_dependence_inherit_fail.swift │ │ ├── lifetime_dependence_insertion.swift │ │ ├── lifetime_dependence_mutate.swift │ │ ├── lifetime_dependence_optional.swift │ │ ├── lifetime_dependence_param.swift │ │ ├── lifetime_dependence_param_fail.swift │ │ ├── lifetime_dependence_scope_fixup.swift │ │ ├── lifetime_dependence_todo.swift │ │ ├── lifetime_dependence_util.sil │ │ ├── local_var_util.sil │ │ ├── projections.swift │ │ ├── scope_fixup.sil │ │ ├── semantics.swift │ │ ├── spanofspans.swift │ │ ├── specialize.sil │ │ ├── stdlib_span.swift │ │ ├── verify_diagnostics.sil │ │ ├── verify_diagnostics.swift │ │ └── verify_library_diagnostics.swift │ ├── linker.swift │ ├── liveness_incomplete_unit.sil │ ├── liveness_unit.sil │ ├── llvm_arc.sil │ ├── loop-region-analysis.sil │ ├── loop_canonicalizer.sil │ ├── loop_info_printer.sil │ ├── loop_unroll.sil │ ├── loop_unroll_ossa.sil │ ├── looprotate.sil │ ├── looprotate_nontrivial_ossa.sil │ ├── looprotate_ossa.sil │ ├── lower_hop_to_actor.sil │ ├── lower_tuple_addr_constructor.sil │ ├── loweraggregateinstrs.sil │ ├── loweraggregateinstrs_expandall.sil │ ├── loweraggregateinstrs_expandall_ossa.sil │ ├── loweraggregateinstrs_moveonly.sil │ ├── loweraggregateinstrs_ossa.sil │ ├── loweraggregateinstrs_resilience.sil │ ├── mandatory-redundant-load-elim.sil │ ├── mandatory_combine_canon.sil │ ├── mandatory_combiner.sil │ ├── mandatory_combiner_opt.sil │ ├── mandatory_conditional_compile_out_using_optionals.swift │ ├── mandatory_devirt_witness_method.sil │ ├── mandatory_inlining.sil │ ├── mandatory_inlining.swift │ ├── mandatory_inlining_circular.sil │ ├── mandatory_inlining_circular.swift │ ├── mandatory_inlining_devirt.swift │ ├── mandatory_inlining_devirt_multifile.swift │ ├── mandatory_inlining_dynamic_method.swift │ ├── mandatory_inlining_generic_autoclosure.swift │ ├── mandatory_inlining_open_existential.sil │ ├── mandatory_inlining_open_existential.swift │ ├── mandatory_inlining_ossa_to_non_ossa.sil │ ├── mandatory_inlining_ossa_to_non_ossa_objc.sil │ ├── mandatory_inlining_ownership.sil │ ├── mandatory_inlining_ownership2.sil │ ├── mandatory_inlining_reasync.swift │ ├── mandatory_inlining_resilience.sil │ ├── mandatory_nil_comparison_inlining.swift │ ├── mandatory_perfopt_multimodule.swift │ ├── mandatory_performance_optimizations.sil │ ├── mem-behavior-cache-bug.sil │ ├── mem-behavior.sil │ ├── mem2reg.sil │ ├── mem2reg_borrows.sil │ ├── mem2reg_lifetime.sil │ ├── mem2reg_lifetime_borrows.sil │ ├── mem2reg_lifetime_nontrivial.sil │ ├── mem2reg_lifetime_nontrivial_casts.sil │ ├── mem2reg_liveness.sil │ ├── mem2reg_liveness_lifetime.sil │ ├── mem2reg_liveness_ossa.sil │ ├── mem2reg_ossa.sil │ ├── mem2reg_ossa_nontrivial.sil │ ├── mem2reg_ossa_nontrivial_casts.sil │ ├── mem2reg_resilient.sil │ ├── mem2reg_resilient_lifetime.sil │ ├── mem2reg_resilient_ossa.sil │ ├── mem2reg_simple.sil │ ├── mem2reg_simple_lifetime.sil │ ├── mem2reg_simple_ossa.sil │ ├── mem2reg_unreachable.sil │ ├── mem2reg_unreachable_lifetime.sil │ ├── mem2reg_unreachable_ossa.sil │ ├── memory-layout.swift │ ├── merge_cond_fail.sil │ ├── merge_exclusivity.swift │ ├── missing_returns.swift │ ├── mm_inlinecaches_multiple.sil │ ├── move_cond_fail_simplify_cfg.sil │ ├── moveonly_accessors.swift │ ├── moveonly_addresschecker.sil │ ├── moveonly_addresschecker.swift │ ├── moveonly_addresschecker_branch_order.swift │ ├── moveonly_addresschecker_debuginfo.sil │ ├── moveonly_addresschecker_destructure_through_deinit_diagnostics.swift │ ├── moveonly_addresschecker_di_interactions.sil │ ├── moveonly_addresschecker_di_interactions.swift │ ├── moveonly_addresschecker_diagnostics.sil │ ├── moveonly_addresschecker_diagnostics.swift │ ├── moveonly_addresschecker_diagnostics_library_evolution.swift │ ├── moveonly_addresschecker_diagnostics_partial_consume_ufi.swift │ ├── moveonly_addresschecker_diagnostics_resilient.swift │ ├── moveonly_addresschecker_diagnostics_without_partial.swift │ ├── moveonly_addresschecker_diagnostics_without_partial_reinit.swift │ ├── moveonly_addresschecker_maximize.sil │ ├── moveonly_addresschecker_trivial_read.swift │ ├── moveonly_addresschecker_tsan.swift │ ├── moveonly_addresschecker_unmaximized.sil │ ├── moveonly_addressonly_subscript_diagnostics.swift │ ├── moveonly_addressors.swift │ ├── moveonly_borrow_to_destructure_class_projection.swift │ ├── moveonly_borrow_to_destructure_transform.sil │ ├── moveonly_borrow_to_destructure_transform_diagnostics.sil │ ├── moveonly_borrowing_switch.swift │ ├── moveonly_borrowing_switch_copyable_subpattern.swift │ ├── moveonly_borrowing_switch_load_borrow.swift │ ├── moveonly_borrowing_switch_mode_with_partial_consume.swift │ ├── moveonly_borrowing_switch_yield.swift │ ├── moveonly_builtins.swift │ ├── moveonly_checker_addressonly_fail.swift │ ├── moveonly_checking_class_method.swift │ ├── moveonly_class_inits_end_to_end.swift │ ├── moveonly_closure_lifetime_fixup_address_only_borrowed_captures.swift │ ├── moveonly_computed_property.swift │ ├── moveonly_consume_during_borrow_1.swift │ ├── moveonly_consume_during_borrow_2.swift │ ├── moveonly_consuming_switch.swift │ ├── moveonly_consuming_switch_2.swift │ ├── moveonly_copyable_wrapper_capture.swift │ ├── moveonly_coro_accessor.swift │ ├── moveonly_correct.swift │ ├── moveonly_debug_info_reinit.swift │ ├── moveonly_deinit_devirtualization.sil │ ├── moveonly_deinit_devirtualization_library_evolution.sil │ ├── moveonly_deinits.swift │ ├── moveonly_discard.swift │ ├── moveonly_generics_basic.swift │ ├── moveonly_generics_complex.swift │ ├── moveonly_global_let.swift │ ├── moveonly_largetype_nocrash.swift │ ├── moveonly_lazy_initialized_globals.swift │ ├── moveonly_lifetime.swift │ ├── moveonly_loadable_subscript_diagnostics.swift │ ├── moveonly_loadable_to_address_reabstraction.swift │ ├── moveonly_modify_coroutine.swift │ ├── moveonly_nonescaping_closures.swift │ ├── moveonly_nonescaping_closures_function_conversion.swift │ ├── moveonly_objectchecker.sil │ ├── moveonly_objectchecker_diagnostics.swift │ ├── moveonly_optional_force_unwrap.swift │ ├── moveonly_partial_consumption_deinit.swift │ ├── moveonly_promoted_closure.swift │ ├── moveonly_raw_layout.swift │ ├── moveonly_read_coroutine.swift │ ├── moveonly_resilient_property_reader.swift │ ├── moveonly_self_captures.swift │ ├── moveonly_temp_allocation_elim.sil │ ├── moveonly_trivial_addresschecker_diagnostics.swift │ ├── moveonly_trivial_objectchecker_diagnostics.swift │ ├── moveonly_type_eliminator.sil │ ├── moveonly_unchecked_exclusivity.swift │ ├── moveonly_unsafeAddress.sil │ ├── moveonly_wrapped_type_eliminator_consumed_existential.swift │ ├── mutable_span_bounds_check_tests.swift │ ├── named_return_value_opt.sil │ ├── no-external-defs-onone.sil │ ├── no-immortal-arc-elimination.swift │ ├── no-objc-bridging-performance-annotation.swift │ ├── no_opt.swift │ ├── no_size_specialization.swift │ ├── no_traps_in_dict_loopup.swift │ ├── noescape_param_exclusivity.swift │ ├── noimplicitcopy.sil │ ├── noimplicitcopy.swift │ ├── noimplicitcopy_borrow_to_destructure_transform_diagnostics.sil │ ├── noimplicitcopy_borrowing_parameters.swift │ ├── noimplicitcopy_consuming_parameters.swift │ ├── noimplicitcopy_existentials.swift │ ├── noimplicitcopy_trivial.swift │ ├── nonescaping_partial_apply_gauntlet.swift │ ├── noreturn_folding.sil │ ├── noreturn_folding_ownership.sil │ ├── objc_bridging_opt.sil │ ├── objc_bridging_opt.swift │ ├── objc_protocol_method.swift │ ├── objectoutliner.sil │ ├── ome_non_transparent.sil │ ├── ome_strip_deserialize.sil │ ├── onone_simplifications.swift │ ├── onone_simplifications_trivial_enum.sil │ ├── opaque_values_O.swift │ ├── opaque_values_O_resilient.swift │ ├── opaque_values_Onone.swift │ ├── opaque_values_Onone_stdlib.swift │ ├── opaque_values_mandatory.sil │ ├── opaque_values_opt.sil │ ├── opaque_values_unit.sil │ ├── opened_archetype_operands_tracking.sil │ ├── opened_existential_concrete_member_type.swift │ ├── opt_enumerate.swift │ ├── opt_mode.swift │ ├── optimal_arc.swift │ ├── optimize_copy_block.swift │ ├── optimize_hop_to_executor.sil │ ├── optimize_hop_to_executor2.sil │ ├── optimize_keypath.swift │ ├── optimize_keypath_bug.swift │ ├── optimize_keypath_objc.swift │ ├── optimize_never.sil │ ├── optimizer_counters.sil │ ├── optional_of_existential.swift │ ├── optionset.swift │ ├── ossa_lifetime_completion.sil │ ├── ossa_rauw_tests.sil │ ├── outliner.sil │ ├── outliner.swift │ ├── outliner_ossa.sil │ ├── ownership-kind-dumper.sil │ ├── ownership-utils-unit.sil │ ├── ownership_liveness_unit.sil │ ├── ownership_model_eliminator.sil │ ├── ownership_model_eliminator_resilience.sil │ ├── ownership_utils │ │ └── address_ownership_live_range.sil │ ├── package-cmo-check-cast-dst.swift │ ├── package-cmo-closure.swift │ ├── package-cmo-deserialize-for-external-client.swift │ ├── package-cmo-disallow-bypass-resilience-on-deserialization-fail.swift │ ├── package-cmo-import-filter.swift │ ├── package-cmo-inlinable-ufi.swift │ ├── package-cmo-inlining-pass.swift │ ├── package-cmo-keypath.swift │ ├── package-cmo-opaque-result.swift │ ├── package-cmo-require-library-evolution.swift │ ├── package-cmo-resilient-mode.swift │ ├── package-cmo-serialize-tables.swift │ ├── package-cmo-skip-internal-decls.swift │ ├── package-cmo-swiftinterface.swift │ ├── partial_apply_dynamic_type.swift │ ├── partial_apply_simplification.sil │ ├── partial_specialization.sil │ ├── partial_specialization_debug.sil │ ├── pass_printer.swift │ ├── pass_profiling.sil │ ├── peephole_trunc_and_ext.sil │ ├── performance-annotations-atomics.swift │ ├── performance-annotations-crash.swift │ ├── performance-annotations-noassert-stdlib.swift │ ├── performance-annotations.swift │ ├── performance-annotations2.swift │ ├── performance-diags-ns-direct.swift │ ├── performance_inliner.sil │ ├── performance_inliner_ownership.sil │ ├── pgo_si_inlinelarge.swift │ ├── pgo_si_reduce.swift │ ├── phi-expansion.sil │ ├── pointer-performance.swift │ ├── pointer_conversion.swift │ ├── pointer_conversion_linux.swift │ ├── pointer_conversion_objc.swift │ ├── polymorphic_builtins.sil │ ├── polymorphic_builtins_diagnostics.sil │ ├── polymorphic_builtins_diagnostics.swift │ ├── polymorphic_inline_caches.sil │ ├── postdomtree_verification_crash.sil │ ├── pound_assert.sil │ ├── pound_assert.swift │ ├── pound_assert_ossa.sil │ ├── pound_assert_removed.swift │ ├── pound_assert_test_recursive.swift │ ├── pre_specialize-macos.swift │ ├── pre_specialize.swift │ ├── pre_specialize_layouts.swift │ ├── pre_specialize_rdar118554892.swift │ ├── predictable_deadalloc_elim_ownership.sil │ ├── predictable_memopt.sil │ ├── predictable_memopt_dependence.sil │ ├── predictable_memopt_locs.swift │ ├── predictable_memopt_ownership.sil │ ├── predictable_memopt_unreferenceable_storage.swift │ ├── prespecialization_with_definition.sil │ ├── prespecialize.swift │ ├── prespecialize_import.swift │ ├── prespecialize_public.swift │ ├── propagate_opaque_return_type.swift │ ├── property_wrappers_and_tuples.swift │ ├── protocol_lookup.swift │ ├── prune-vtables.sil │ ├── pruned_liveness_boundary.sil │ ├── range_unit.sil │ ├── ranges.sil │ ├── raw_sil_inst_lowering.sil │ ├── rcidentity.sil │ ├── rcidentity_opaque.sil │ ├── rdar125460667.swift │ ├── rdar134732867.swift │ ├── rdar146142041.sil │ ├── read_only_global_vars.sil │ ├── readonly_arrays.swift │ ├── readonly_arrays_objc.swift │ ├── recursive_func.sil │ ├── recursive_single.sil │ ├── redundant_load_and_dead_store_elim.sil │ ├── redundant_load_elim.sil │ ├── redundant_load_elim_nontrivial_ossa.sil │ ├── redundant_load_elim_ossa.sil │ ├── redundant_load_elim_ossa_complex.sil │ ├── redundant_load_elim_with_casts.sil │ ├── redundant_load_elimination.swift │ ├── redundant_phi_elimination.sil │ ├── redundant_phi_elimination_ossa.sil │ ├── ref_elt_addr.sil │ ├── reference_bindings.swift │ ├── release-hoisting.swift │ ├── remove_unused_func.sil │ ├── remove_unused_global_vars.swift │ ├── resilience_and_stack_promotion.sil │ ├── retain_release_code_motion.sil │ ├── return.swift │ ├── return_ownership.swift │ ├── reverse-array.swift │ ├── select_enum_addr_reads_memory.sil │ ├── semantic-arc-opt-owned-to-guaranteed-phi.sil │ ├── semantic-arc-opt-unchecked-ownership-conversion.sil │ ├── semantic-arc-opts-canonical.sil │ ├── semantic-arc-opts-lifetime-joining.sil │ ├── semantic-arc-opts-redundant-move-elimination.sil │ ├── semantic-arc-opts-redundantcopyopts.sil │ ├── semantic-arc-opts.sil │ ├── set.swift │ ├── shrink_borrow_scope.sil │ ├── shrink_borrow_scope.swift │ ├── shrink_borrow_scope.unit.sil │ ├── side_effects.sil │ ├── sil_cloner_no_substitution_map.sil │ ├── sil_combine.sil │ ├── sil_combine1.swift │ ├── sil_combine_alloc_stack.swift │ ├── sil_combine_apply.sil │ ├── sil_combine_apply_ossa.sil │ ├── sil_combine_apply_unit.sil │ ├── sil_combine_bitops.sil │ ├── sil_combine_bitops_ossa.sil │ ├── sil_combine_cast_foldings.sil │ ├── sil_combine_cast_foldings_ossa.sil │ ├── sil_combine_casts.sil │ ├── sil_combine_concrete_existential.sil │ ├── sil_combine_concrete_existential.swift │ ├── sil_combine_concrete_existential_noncopyable.swift │ ├── sil_combine_concrete_existential_ossa.swift │ ├── sil_combine_devirt.sil │ ├── sil_combine_devirt_ossa.sil │ ├── sil_combine_enum_addr.sil │ ├── sil_combine_enum_addr_ossa.sil │ ├── sil_combine_enums.sil │ ├── sil_combine_enums_ossa.sil │ ├── sil_combine_global_addr.sil │ ├── sil_combine_global_addr_ossa.sil │ ├── sil_combine_inst_passes.sil │ ├── sil_combine_memopts.sil │ ├── sil_combine_memopts_ossa.sil │ ├── sil_combine_misc_opts.sil │ ├── sil_combine_moveonly.sil │ ├── sil_combine_nocanonicalize_ossa.sil │ ├── sil_combine_objc.sil │ ├── sil_combine_objc_bridge.sil │ ├── sil_combine_objc_bridge_ossa.sil │ ├── sil_combine_objc_ossa.sil │ ├── sil_combine_opaque.sil │ ├── sil_combine_ossa.sil │ ├── sil_combine_pa_removal.sil │ ├── sil_combine_pa_removal_ossa.sil │ ├── sil_combine_peephole_thick_to_objc_metatype.sil │ ├── sil_combine_peephole_thick_to_objc_metatype_ossa.sil │ ├── sil_combine_protocol_conf.swift │ ├── sil_combine_pure_apply.sil │ ├── sil_combine_pure_apply_ossa.sil │ ├── sil_combine_same_ops.sil │ ├── sil_combine_same_ops_ossa.sil │ ├── sil_combine_simp_enum.sil │ ├── sil_combine_simp_enum_ossa.sil │ ├── sil_combine_uncheck.sil │ ├── sil_combine_uncheck_ossa.sil │ ├── sil_combiner_concrete_prop_all_args.sil │ ├── sil_locations.sil │ ├── sil_locations.swift │ ├── sil_simplify_instrs.sil │ ├── sil_simplify_instrs_ossa.sil │ ├── sil_stop_optzns_before_lowering_ownership_option.swift │ ├── sil_verify_all_triggers_verifier_without_asserts.sil │ ├── sil_witness_tables_external_witnesstable.swift │ ├── silcombine_aebox_miscompile.swift │ ├── silcombine_runtime_crash.swift │ ├── silgen_cleanup.sil │ ├── silgen_cleanup_complete_ossa.sil │ ├── silgen_cleanup_debug.sil │ ├── simplify-cfg-crash.swift │ ├── simplify-cfg-debugonly.sil │ ├── simplify-cfg-stress-test.sil │ ├── simplify_alloc_ref_dynamic.sil │ ├── simplify_alloc_stack.sil │ ├── simplify_apply.sil │ ├── simplify_begin_apply.sil │ ├── simplify_begin_borrow.sil │ ├── simplify_branch.sil │ ├── simplify_branch_crash.sil │ ├── simplify_builtin.sil │ ├── simplify_cfg.sil │ ├── simplify_cfg_address_phi.sil │ ├── simplify_cfg_and_combine.sil │ ├── simplify_cfg_and_combine_ossa.sil │ ├── simplify_cfg_args.sil │ ├── simplify_cfg_args_crash.sil │ ├── simplify_cfg_args_ossa.sil │ ├── simplify_cfg_checkcast.sil │ ├── simplify_cfg_crash.swift │ ├── simplify_cfg_dom_jumpthread.sil │ ├── simplify_cfg_jump_thread_crash.sil │ ├── simplify_cfg_ossa.sil │ ├── simplify_cfg_ossa_bbargs.sil │ ├── simplify_cfg_ossa_disabled.sil │ ├── simplify_cfg_ossa_dom_jumpthread.sil │ ├── simplify_cfg_ossa_jump_threading.sil │ ├── simplify_cfg_ossa_simplify_branch.sil │ ├── simplify_cfg_ossa_switch_enum.sil │ ├── simplify_cfg_select_enum.sil │ ├── simplify_cfg_simple.sil │ ├── simplify_cfg_stress_ossa.sil │ ├── simplify_cfg_trivial_jumpthread.sil │ ├── simplify_cfg_tryapply.sil │ ├── simplify_checked_cast_addr_br.sil │ ├── simplify_checked_cast_br.sil │ ├── simplify_classify_bridge_object.sil │ ├── simplify_cond_br.sil │ ├── simplify_cond_fail.sil │ ├── simplify_convert_escape_to_noescape.sil │ ├── simplify_copy_block.sil │ ├── simplify_copy_value.sil │ ├── simplify_debug_step.sil │ ├── simplify_destroy_value.sil │ ├── simplify_destructure_struct.sil │ ├── simplify_destructure_tuple.sil │ ├── simplify_end_cow_mutation_addr.sil │ ├── simplify_extend_lifetime.sil │ ├── simplify_fix_lifetime.sil │ ├── simplify_init_enum_data_addr.sil │ ├── simplify_keypath.sil │ ├── simplify_keypath_resilient.swift │ ├── simplify_load.sil │ ├── simplify_load_borrow.sil │ ├── simplify_mark_dependence.sil │ ├── simplify_mark_dependence_addr.sil │ ├── simplify_partial_apply.sil │ ├── simplify_pointer_to_address.sil │ ├── simplify_release_value.sil │ ├── simplify_retain_value.sil │ ├── simplify_struct_extract.sil │ ├── simplify_switch_enum_objc.sil │ ├── simplify_switch_enum_objc.swift │ ├── simplify_switch_enum_objc_ossa.sil │ ├── simplify_try_apply.sil │ ├── simplify_tuple.sil │ ├── simplify_tuple_extract.sil │ ├── simplify_unchecked_addr_cast.sil │ ├── simplify_unchecked_enum_data.sil │ ├── simplify_unchecked_ref_cast.sil │ ├── simplify_unchecked_switch_enum.sil │ ├── simplify_unconditional_check_cast.sil │ ├── simplify_unreachable_containing_blocks.sil │ ├── simplify_value_to_bridge_object.sil │ ├── simplify_witness_method.sil │ ├── sink.sil │ ├── span.swift │ ├── span_bounds_check_tests.swift │ ├── span_bounds_check_tests2.swift │ ├── spec_archetype_method.swift │ ├── spec_conf1.swift │ ├── spec_conf2.swift │ ├── spec_recursion.swift │ ├── specialization_and_resilience.swift │ ├── specialize.sil │ ├── specialize_anyobject.swift │ ├── specialize_apply_conf.swift │ ├── specialize_cg_update_crash.sil │ ├── specialize_chain.swift │ ├── specialize_checked_cast_branch.swift │ ├── specialize_class_inherits_base_inherits_protocol.swift │ ├── specialize_deep_generics.swift │ ├── specialize_default_witness.sil │ ├── specialize_default_witness_ossa.sil │ ├── specialize_default_witness_resilience.sil │ ├── specialize_default_witness_resilience_ossa.sil │ ├── specialize_dynamic_self.swift │ ├── specialize_ext.swift │ ├── specialize_inherited.sil │ ├── specialize_inherited_multifile.swift │ ├── specialize_inherited_ossa.sil │ ├── specialize_metatypes_with_nondefault_representation.sil │ ├── specialize_metatypes_with_nondefault_representation_ossa.sil │ ├── specialize_missing_sendable.swift │ ├── specialize_no_definition.sil │ ├── specialize_no_definition_ossa.sil │ ├── specialize_opaque.sil │ ├── specialize_opaque_ossa.sil │ ├── specialize_opaque_result_types.sil │ ├── specialize_opaque_result_types2.sil │ ├── specialize_opaque_result_types_ossa.sil │ ├── specialize_opaque_type_archetypes.swift │ ├── specialize_opaque_type_archetypes_loop.swift │ ├── specialize_opaque_type_archetypes_multifile.swift │ ├── specialize_ossa.sil │ ├── specialize_partial_apply.swift │ ├── specialize_reabstraction.sil │ ├── specialize_reabstraction_ossa.sil │ ├── specialize_recursive_generics.sil │ ├── specialize_recursive_generics_ossa.sil │ ├── specialize_refined_adds_constraints.swift │ ├── specialize_same_type_constraint.swift │ ├── specialize_self.swift │ ├── specialize_self_conforming.swift │ ├── specialize_self_conforming_error.swift │ ├── specialize_unconditional_checked_cast.swift │ ├── specialized_anyobject_conformance.swift │ ├── split_critical_edges.sil │ ├── sroa.sil │ ├── sroa_bbargs.sil │ ├── sroa_lifetime.sil │ ├── sroa_ossa.sil │ ├── sroa_unreferenced_members.swift │ ├── ssa-updater.sil │ ├── stack-nesting-wrong-scope.swift │ ├── stack-promotion-crash.swift │ ├── stack_promotion.sil │ ├── stack_promotion_2_modules.swift │ ├── stack_promotion_array_literal.swift │ ├── stack_promotion_crash.swift │ ├── stack_promotion_escaping.swift │ ├── stack_promotion_isolated_deinit.swift │ ├── stack_protection.sil │ ├── stack_protection.swift │ ├── static_arrays.swift │ ├── static_enums.swift │ ├── static_init_globals.swift │ ├── static_inline_arrays.swift │ ├── static_objects.swift │ ├── static_report.sil │ ├── static_strings.swift │ ├── stdlib │ │ ├── Atomics.swift │ │ └── Cell.swift │ ├── stop_after_explicit_interface.swift │ ├── stop_after_module.swift │ ├── stop_optzns_before_lowering_ownership_at_onone.swift │ ├── stored_property_initial_value.swift │ ├── string_literals.swift │ ├── string_optimization.sil │ ├── string_optimization.swift │ ├── strip_debug_info.sil │ ├── strip_object_header.sil │ ├── super_class_method.swift │ ├── super_init.swift │ ├── super_method.swift │ ├── swift-unit-tests.sil │ ├── swift_sil_combine.sil │ ├── switch_enum_objc.swift │ ├── switch_enum_resilient.swift │ ├── switch_expr.swift │ ├── target-const-prop.swift │ ├── temp_rvalue_opt.sil │ ├── temp_rvalue_opt.swift │ ├── temp_rvalue_opt_ossa.sil │ ├── temp_rvalue_rle.sil │ ├── templvalueopt.sil │ ├── templvalueopt.swift │ ├── templvalueopt_crash.swift │ ├── templvalueopt_ossa.sil │ ├── test │ │ └── SILOptimizer │ │ │ └── moveonly_addresschecker_diagnostics_partial_consume.swift │ ├── test_specification_parsing.sil │ ├── testflag_disable_pass_only.swift │ ├── throw_inline.swift │ ├── throws_prediction.swift │ ├── thunk_lowering.sil │ ├── tuple-conformances.swift │ ├── tuples_from_packs.swift │ ├── type_lowering_resilience.swift │ ├── typed-access-tb-aa.sil │ ├── unavailable_decl_optimization_stub.swift │ ├── unavailable_enum_element_mandatory.sil │ ├── unavailable_enum_element_mandatory.swift │ ├── unavailable_enum_element_mandatory_objc.swift │ ├── unexpected_error.sil │ ├── unreachable_dealloc_stack.sil │ ├── unsafeAddress.swift │ ├── unsafebufferpointer.swift │ ├── unused_containers.swift │ ├── utf8_decoding_fastpath.swift │ ├── utils │ │ ├── pruned_liveness │ │ │ └── are_uses_within_boundary.sil │ │ └── stack_nesting.sil │ ├── variable_name_inference.sil │ ├── variadic_generics.sil │ ├── variadic_generics_sil_cloner.swift │ ├── verifier.sil │ ├── wrong_cow_arrayopt.swift │ └── zeroInitializer.swift ├── SPI │ ├── Inputs │ │ ├── experimental_spi_imports_inconsistent.swift │ │ ├── ioi_helper.swift │ │ └── spi_helper.swift │ ├── accidental-reexport.swift │ ├── client_reuse_spi.swift │ ├── client_use_multiple_module_specialize.swift │ ├── equatable_and_conformances.swift │ ├── experimental_spi_imports_swiftinterface.swift │ ├── export_spi_from_spi_module.swift │ ├── implementation_only_spi_import.swift │ ├── implementation_only_spi_import_exposability.swift │ ├── implicit_spi_import.swift │ ├── local_spi_decls.swift │ ├── private-import-access-spi.swift │ ├── private_swiftinterface.swift │ ├── protocol_requirement.swift │ ├── public_client.swift │ ├── reexported-spi-groups.swift │ ├── reexported_spi.swift │ ├── report-ioi-in-spi.swift │ ├── run_spi_client.swift │ ├── spi-only-and-library-level.swift │ ├── spi-only-import-conflicting.swift │ ├── spi-only-import-exportability.swift │ ├── spi-only-swiftinterface-and-merged-decls.swift │ ├── spi_client.swift │ ├── spi_enum_element.swift │ ├── spi_extension.swift │ ├── spi_global_actor.swift │ ├── spi_internal_accessor.swift │ ├── spi_members.swift │ ├── spi_only_import_flag_check.swift │ ├── spi_only_import_swiftinterfaces.swift │ ├── spi_symbols.swift │ └── warn_on_ineffective_spi_import.swift ├── Sanitizers │ ├── asan │ │ ├── asan.swift │ │ ├── asan_interface.h │ │ ├── globals-overwrite.swift │ │ └── recover.swift │ ├── lit.local.cfg │ ├── sanitizer_coverage.swift │ ├── scudo.swift │ ├── symbolication-linux.swift │ ├── symbolication.swift │ └── tsan │ │ ├── Inputs │ │ ├── objc_async.h │ │ └── objc_async.m │ │ ├── actor_counters.swift │ │ ├── async_let_fibonacci.swift │ │ ├── async_taskgroup_next.swift │ │ ├── basic_future.swift │ │ ├── emptyarraystorage.swift │ │ ├── libdispatch.swift │ │ ├── mainactor.swift │ │ ├── norace-block-release.swift │ │ ├── norace-deinit-run-time.swift │ │ ├── norace-task-group-cancellation.swift │ │ ├── objc_async.swift │ │ ├── once.swift │ │ ├── racy_actor_counters.swift │ │ ├── racy_async_let_fibonacci.swift │ │ ├── static-exclusivity.swift │ │ └── tsan.swift ├── ScanDependencies │ ├── FilterClangSearchPaths.swift │ ├── Incremental │ │ ├── module_deps_invalidate.swift │ │ └── system_search_path_invalidate.swift │ ├── Inputs │ │ ├── BuildModulesFromGraph.swift │ │ ├── CHeaders │ │ │ ├── A.h │ │ │ ├── B.h │ │ │ ├── Bridging.h │ │ │ ├── BridgingOther.h │ │ │ ├── C.h │ │ │ ├── ClangModuleWithOverlayedDep.h │ │ │ ├── CycleClangMiddle.h │ │ │ ├── CycleOverlay.h │ │ │ ├── D.h │ │ │ ├── ExtraCModules │ │ │ │ ├── Bar.h │ │ │ │ ├── CrossImportTestModule.h │ │ │ │ ├── SubE.h │ │ │ │ └── module.modulemap │ │ │ ├── F.h │ │ │ ├── G.h │ │ │ ├── H.h │ │ │ ├── I.h │ │ │ ├── X.h │ │ │ ├── X_Private.h │ │ │ ├── Y.h │ │ │ ├── Y_Private.h │ │ │ └── module.modulemap │ │ ├── CommandRunner.py │ │ ├── Frameworks │ │ │ ├── ScannerTestKit.framework │ │ │ │ └── Modules │ │ │ │ │ └── ScannerTestKit.swiftmodule │ │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ │ ├── arm64e-apple-macos.swiftinterface │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ └── WithAuxClangModule.framework │ │ │ │ ├── Headers │ │ │ │ ├── AuxClangModule.h │ │ │ │ └── WithAuxClangModule.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── ModuleDependencyGraph.swift │ │ ├── PrintGraph.swift │ │ ├── Swift │ │ │ ├── A.swiftinterface │ │ │ ├── CycleOne.swiftinterface │ │ │ ├── CycleOverlay.swiftinterface │ │ │ ├── CycleSwiftMiddle.swiftinterface │ │ │ ├── CycleThree.swiftinterface │ │ │ ├── CycleTwo.swiftinterface │ │ │ ├── E.swiftcrossimport │ │ │ │ └── SubE.swiftoverlay │ │ │ ├── E.swiftinterface │ │ │ ├── EWrapper.swiftinterface │ │ │ ├── EWrapperNonExported.swiftinterface │ │ │ ├── F.swiftinterface │ │ │ ├── Foo.swiftinterface │ │ │ ├── FooClient.swiftinterface │ │ │ ├── G.swiftinterface │ │ │ ├── HasBuiltinImport.swiftinterface │ │ │ ├── P.swiftinterface │ │ │ ├── SubE.swiftinterface │ │ │ ├── SubEWrapper.swiftinterface │ │ │ ├── XWithTarget.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ ├── arm64e-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ ├── Y.swiftinterface │ │ │ ├── Z.swiftinterface │ │ │ └── _cross_import_E.swiftinterface │ │ ├── SwiftDifferent │ │ │ └── A.swiftinterface │ │ ├── target-normalization │ │ │ ├── iOSSupport │ │ │ │ └── Unzippered.swiftmodule │ │ │ │ │ └── arm64e-apple-ios-macabi.swiftinterface │ │ │ └── macOS │ │ │ │ ├── Unzippered.swiftmodule │ │ │ │ └── arm64e-apple-macos.swiftinterface │ │ │ │ └── Zippered.swiftmodule │ │ │ │ ├── arm64e-apple-ios-macabi.swiftinterface │ │ │ │ └── arm64e-apple-macos.swiftinterface │ │ └── unicode_filёnamё.swift │ ├── ObjCStrict.swift │ ├── bin_mod_import.swift │ ├── binary_framework_dependency.swift │ ├── binary_module_only.swift │ ├── blocklist-path-pass-down.swift │ ├── bridging-header-autochaining.swift │ ├── bridging_header_dep_module_map.swift │ ├── bridging_header_error.swift │ ├── bridging_header_modulemap_only.swift │ ├── cached-missing-module-found-in-serialized-paths.swift │ ├── can_import_explicit_versioned.swift │ ├── can_import_explicit_versioned_forwarding.swift │ ├── can_import_explicit_versioned_unversioned_module.swift │ ├── can_import_no_build.swift │ ├── can_import_version_mismatch.swift │ ├── can_import_with_map.swift │ ├── can_import_with_map_and_implicit.swift │ ├── candidate_binary_module_diagnostics.swift │ ├── cannot_import_with_map_duplicate_entries.swift │ ├── clang-target-clang-irgen.swift │ ├── clang-target-variant.swift │ ├── clang-target.swift │ ├── clang_auxiliary_module_framework.swift │ ├── clang_module_output_symlink.swift │ ├── clang_scan_error.swift │ ├── compiled_swift_modules.swift │ ├── cxx-overlay-source-lookup.swift │ ├── cxx-overlay-underlying-module-lookup.swift │ ├── deterministic_check.swift │ ├── diagnose-missing-module-found-in-serialized-paths.swift │ ├── diagnose_dependency_cycle.swift │ ├── diagnose_dependency_cycle_overlay.swift │ ├── diagnose_dependency_cycle_overlay_source_target.swift │ ├── diagnose_dependency_cycle_shadow.swift │ ├── diagnose_dependency_cycle_source_target.swift │ ├── direct-cc1-dwarf-options.swift │ ├── direct_cc1_scan.swift │ ├── eliminate_unused_vfs.swift │ ├── embed_tbd_module_dependency.swift │ ├── embedded-header.swift │ ├── enable-ossa-modules-pass-down.swift │ ├── ensure_no_astgen.swift │ ├── error_path.swift │ ├── error_source_locations.swift │ ├── escaped.swift │ ├── explicit-dependencies-headerdeps.swift │ ├── explicit-framework-irgen.swift │ ├── explicit-module-map-clang-and-swift.swift │ ├── explicit-module-map-clang-explicit.swift │ ├── explicit-module-map-clang-implicit.swift │ ├── explicit-module-map-forwarding-module.swift │ ├── explicit-module-map.swift │ ├── explicit-scanner-input-can-import.swift │ ├── explicit-scanner-input.swift │ ├── explicit-swift-dependencies.swift │ ├── explicit-typecheck-from-interface.swift │ ├── fine_grained_cross_import_overlays.swift │ ├── header_deps_of_binary.swift │ ├── import_infos.swift │ ├── include-sdk-in-command.swift │ ├── include-target-sdk-in-interface-recipe.swift │ ├── invalid_binary_module_only.swift │ ├── local_cache_consistency.swift │ ├── module_builtin.swift │ ├── module_deps.swift │ ├── module_deps_binary_dep_swift_overlay.swift │ ├── module_deps_cache_reuse.swift │ ├── module_deps_can_import.swift │ ├── module_deps_clang_private_submodule.swift │ ├── module_deps_cross_import_of_binary_module.swift │ ├── module_deps_cross_import_overlay.swift │ ├── module_deps_different_paths_no_reuse.swift │ ├── module_deps_disable_cross_import_overlays.swift │ ├── module_deps_link_libs.swift │ ├── module_deps_no_cross_import_overlay_transitive.swift │ ├── module_deps_private_interface.swift │ ├── module_deps_swift_overlay.swift │ ├── module_framework.swift │ ├── module_hash.swift │ ├── module_hash_macos.swift │ ├── module_load_mode.swift │ ├── module_not_found.swift │ ├── no-cxx-overlay-for-non-interop-interface.swift │ ├── no_cross_import_module_for_self.swift │ ├── no_main_module_cross_import.swift │ ├── no_trasitive_implementation-only_deps.swift │ ├── optional_deps_of_binary_testable_imports.swift │ ├── optional_deps_of_testable_imports.swift │ ├── optional_transitive_dep_load_fail.swift │ ├── package_deps_of_same_package_imports.swift │ ├── package_interface.swift │ ├── prescan_deps.swift │ ├── preserve_used_vfs.swift │ ├── private_interface_candidate_module.swift │ ├── recursive-resolve.swift │ ├── required_deps_of_testable_imports.swift │ ├── restrict-swiftmodule-to-revision.swift │ ├── scan_return_module_version_textual_interface.swift │ ├── scanner_api_working_dir.swift │ ├── separate_bridging_header_deps.swift │ ├── separate_clang_scan_cache.swift │ ├── separate_clang_scan_cache_bridging.swift │ ├── separate_sdk_module_cache.swift │ ├── serialized_imports.swift │ ├── source_imports_only.swift │ ├── subframework_implicit_search_path.swift │ ├── target_normalization.swift │ ├── target_normalization_maccatalyst.swift │ ├── target_normalization_maccatalyst_zippered.swift │ ├── tautological_import.swift │ ├── test_clang_gmodules.swift │ ├── test_no_indirect_cxx.swift │ ├── test_quoted_arg.swift │ ├── testable-dependencies.swift │ ├── testable-import.swift │ ├── unicode_filename.swift │ ├── unique_fine_grained_cross_import_overlays.swift │ ├── verify-interface-inherit-xcc.swift │ ├── win-crt.swift │ └── wrong_target_candidate_diagnostic.swift ├── Sema │ ├── Inputs │ │ ├── accessibility_multi_other.swift │ │ ├── accessibility_multi_other_module.swift │ │ ├── bad.accessnotes │ │ ├── call_as_function_other_module.swift │ │ ├── circularity_multifile_error_helper.swift │ │ ├── composition_extension_usage.swift │ │ ├── conformance_availability_implied_other.swift │ │ ├── diag_non_ephemeral_globals.swift │ │ ├── diag_non_ephemeral_module1.swift │ │ ├── diag_non_ephemeral_module2.swift │ │ ├── diag_ownership_incompatibility.h │ │ ├── diag_values_of_module_type_foo.swift │ │ ├── discard_module_adjacent.swift │ │ ├── discard_module_defining.swift │ │ ├── dynamic_replacements_init_A.swift │ │ ├── enum_conformance_synthesis_other.swift │ │ ├── enum_multi_file_helper.swift │ │ ├── enum_raw_multi1.swift │ │ ├── enum_raw_multi2.swift │ │ ├── enum_raw_representable_explicit_multi_file_2.swift │ │ ├── enum_with_raw_type.swift │ │ ├── exhaustive_switch_testable_helper.swift │ │ ├── extra.accessnotes │ │ ├── fixits-derived-conformances-multifile.swift │ │ ├── forbid_typecheck_2.swift │ │ ├── has_symbol │ │ │ ├── has_symbol_helper.swift │ │ │ ├── has_symbol_helper_clang.h │ │ │ ├── has_symbol_helper_objc.h │ │ │ └── module.modulemap │ │ ├── implementation-only-import-in-decls-helper.swift │ │ ├── implementation-only-import-in-decls-public-helper.swift │ │ ├── implementation-only-imports │ │ │ ├── directs.swift │ │ │ ├── indirects.swift │ │ │ └── secondary_file.swift │ │ ├── implementation-only-override │ │ │ ├── FooKit.h │ │ │ ├── FooKit_SECRET.h │ │ │ └── module.modulemap │ │ ├── implicit_initializer_multi_other.swift │ │ ├── import_with_opaque_type_erasure.swift │ │ ├── lifetime_depend_infer.swiftinterface │ │ ├── public-private-sdk │ │ │ ├── System │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── PublicClang.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── PublicClang.h │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── module.modulemap │ │ │ │ │ │ │ └── module.private.modulemap │ │ │ │ │ │ └── PrivateHeaders │ │ │ │ │ │ │ └── PublicClang_Private.h │ │ │ │ │ └── PublicSwift.framework │ │ │ │ │ │ └── Modules │ │ │ │ │ │ └── PublicSwift.swiftmodule │ │ │ │ │ │ └── source.swift │ │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── FullyPrivateClang.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FullyPrivateClang.h │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── MainLib.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── MainLib.h │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── PrivateSwift.framework │ │ │ │ │ │ └── Modules │ │ │ │ │ │ └── PrivateSwift.swiftmodule │ │ │ │ │ │ └── source.swift │ │ │ │ │ └── SubFrameworks │ │ │ │ │ └── SubSwift.framework │ │ │ │ │ └── Modules │ │ │ │ │ └── SubSwift.swiftmodule │ │ │ │ │ └── source.swift │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── swift │ │ │ │ │ ├── PublicSwiftLibrary.swiftmodule │ │ │ │ │ └── source.swift │ │ │ │ │ └── Swift.swiftmodule │ │ │ │ │ └── source.swift │ │ │ │ └── local │ │ │ │ └── include │ │ │ │ ├── LocalClang.h │ │ │ │ └── module.modulemap │ │ ├── rdar32973206_a.swift │ │ ├── rdar32973206_b.swift │ │ ├── rdar32973206_c.swift │ │ ├── struct_equatable_hashable_other.swift │ │ ├── unsupported_recursive_value_type_multifile_helper.swift │ │ └── where_clause_across_module_boundaries_module.swift │ ├── access-level-and-non-resilient-import.swift │ ├── access-level-import-classic-exportability.swift │ ├── access-level-import-conformances.swift │ ├── access-level-import-conforming-types.swift │ ├── access-level-import-diag-priority.swift │ ├── access-level-import-downgrades.swift │ ├── access-level-import-exportability.swift │ ├── access-level-import-exported.swift │ ├── access-level-import-flag-check.swift │ ├── access-level-import-inconsistencies.swift │ ├── access-level-import-inconsistent-same-file.swift │ ├── access-level-import-inlinable.swift │ ├── access-level-import-parsing.swift │ ├── access-level-import-typealias.swift │ ├── access-notes-invalid.swift │ ├── accessibility.swift │ ├── accessibility_compound.swift │ ├── accessibility_multi.swift │ ├── accessibility_multi_module.swift │ ├── accessibility_package.swift │ ├── accessibility_package_contextual_keyword.swift │ ├── accessibility_package_import_interface.swift │ ├── accessibility_package_in_extension.swift │ ├── accessibility_package_inline.swift │ ├── accessibility_package_inline_interface.swift │ ├── accessibility_package_interface.swift │ ├── accessibility_private.swift │ ├── accessibility_protocol_extension.swift │ ├── accessibility_shared_private.swift │ ├── accessibility_typealias.swift │ ├── accessibility_where.swift │ ├── allowable-client-import.swift │ ├── alwaysEmitConformanceMetadata_attr.swift │ ├── atomic-diagnose-var.swift │ ├── authoritative-import-priority.swift │ ├── bitwise_copyable.swift │ ├── bitwise_copyable_2.swift │ ├── bitwise_copyable_nonresilient.swift │ ├── bitwise_copyable_package_resilience.swift │ ├── bitwise_copyable_resilience.swift │ ├── bitwise_copyable_stdlib.swift │ ├── bitwse_copyable_import.swift │ ├── bitwse_copyable_underscore.swift │ ├── borrow_expr.swift │ ├── builtin_int.swift │ ├── builtin_vector.swift │ ├── call_as_function_cross_module.swift │ ├── call_as_function_generic.swift │ ├── call_as_function_optional.swift │ ├── call_as_function_protocol.swift │ ├── call_as_function_simple.swift │ ├── call_function_with_tuple.swift │ ├── check_unnecessary_typecheck.swift │ ├── circular_decl_checking.swift │ ├── circularity_multifile_error.swift │ ├── clang_fn_type_mismatch.swift │ ├── clang_types_in_ast.swift │ ├── classes_equatable_hashable.swift │ ├── complex_expressions.swift │ ├── composition_extension.swift │ ├── conditionally_copyable.swift │ ├── conflicting-import-restrictions.swift │ ├── conformance_availability_implied.swift │ ├── conformance_availability_implied_multifile.swift │ ├── const_enum_elements.swift │ ├── const_enum_elements2.swift │ ├── const_enum_elements_array.swift │ ├── const_in_property_wrapper.swift │ ├── const_keypath.swift │ ├── const_pass_as_arguments.swift │ ├── consume_operator_noop_warning.swift │ ├── contextual-conversion-error-for-structural-position.swift │ ├── copy_expr.swift │ ├── copy_expr_noimplicit_copy.swift │ ├── copyable.swift │ ├── copyable_conformance_diff_module.swift │ ├── copyable_conformance_diff_source_file.swift │ ├── copyable_constraint.swift │ ├── copyable_constraint_defaulting_with_same_type_constraints.swift │ ├── coroutine_accessors.swift │ ├── deprecation_osx.swift │ ├── diag_ambiguous_overloads.swift │ ├── diag_ambiguous_overloads_swift4.swift │ ├── diag_constantness_check.swift │ ├── diag_constantness_check_os_log.swift │ ├── diag_constantness_check_os_log_swift6.swift │ ├── diag_defer_block_end.swift │ ├── diag_deprecated_string_interpolation.swift │ ├── diag_dictionary_keys_duplicated.swift │ ├── diag_erroneous_iuo.swift │ ├── diag_function_in_string_interpolation.swift │ ├── diag_get_vs_set_subscripts.swift │ ├── diag_integer_literals.swift │ ├── diag_invalid_interpolation_4_2.swift │ ├── diag_invalid_synthesized_init_proto_conformance.swift │ ├── diag_max_builtin_overflows.swift │ ├── diag_metatype_cast_to_reference_no_objc.swift │ ├── diag_mismatched_magic_literals.swift │ ├── diag_mismatched_magic_literals_swift5.swift │ ├── diag_mismatched_magic_literals_swift6.swift │ ├── diag_module_conflict_with_type.swift │ ├── diag_non_ephemeral.swift │ ├── diag_non_ephemeral_warning.swift │ ├── diag_originally_definedin.swift │ ├── diag_ownership_incompatibility.swift │ ├── diag_ownership_lazy.swift │ ├── diag_self_assign.swift │ ├── diag_type_conversion.swift │ ├── diag_typealias.swift │ ├── diag_unintended_generic_param.swift │ ├── diag_unintended_optional_behavior.swift │ ├── diag_unintended_optional_behavior_swift_5.swift │ ├── diag_unowned_immediate_deallocation.swift │ ├── diag_unowned_immediate_deallocation_global.swift │ ├── diag_unowned_immediate_deallocation_locs.swift │ ├── diag_unreachable_after_return.swift │ ├── diag_use_before_declaration.swift │ ├── diag_values_of_module_type.swift │ ├── diag_variable_used_in_initial.swift │ ├── discard.swift │ ├── discard_module.swift │ ├── discard_trivially_destroyed.swift │ ├── dynamic_attr_requires_module.swift │ ├── dynamic_replacement_init.swift │ ├── dynamic_self_implicit_conversions.swift │ ├── editor_placeholders.swift │ ├── enum_conformance_synthesis.swift │ ├── enum_equatable_conditional.swift │ ├── enum_post_hoc_raw_representable_with_raw_type.swift │ ├── enum_raw_multi.swift │ ├── enum_raw_representable.swift │ ├── enum_raw_representable_circularity.swift │ ├── enum_raw_representable_explicit.swift │ ├── enum_raw_representable_explicit_cart_before_horse.swift │ ├── enum_raw_representable_explicit_multi_file.swift │ ├── enum_raw_representable_generic.swift │ ├── enum_raw_representable_multi_file.swift │ ├── enum_raw_representable_object_literals.swift │ ├── escapable_substitution_lifetime_dependency.swift │ ├── exhaustive_switch.swift │ ├── exhaustive_switch_debugger.swift │ ├── exhaustive_switch_huge.swift.gyb │ ├── exhaustive_switch_invocation_threshold.swift │ ├── exhaustive_switch_objc.swift │ ├── exhaustive_switch_testable.swift │ ├── export_tuple_conformance.swift │ ├── extension_binding_multi.swift │ ├── extension_retroactive_conformances.swift │ ├── extension_retroactive_conformances_package.swift │ ├── extension_retroactive_conformances_swift6.swift │ ├── extension_retroactive_conformances_underlying_clang_module.swift │ ├── fixed_ambiguities │ │ ├── rdar27033993.swift │ │ ├── rdar27198177.swift │ │ ├── rdar33142386.swift │ │ ├── rdar35623181.swift │ │ ├── rdar35624855.swift │ │ ├── rdar35625339.swift │ │ ├── rdar35625473.swift │ │ └── rdar36333688.swift │ ├── fixits-derived-conformances.swift │ ├── generalized_accessors.swift │ ├── generic-subscript.swift │ ├── generic_specialization.swift │ ├── has_symbol.swift │ ├── has_symbol_clang.swift │ ├── has_symbol_objc.swift │ ├── immutability.swift │ ├── immutability_overload_async.swift │ ├── impl_throw_objc.swift │ ├── implementation-only-deprecated.swift │ ├── implementation-only-import-from-non-resilient.swift │ ├── implementation-only-import-in-decls.swift │ ├── implementation-only-import-inlinable-conformances.swift │ ├── implementation-only-import-inlinable-indirect.swift │ ├── implementation-only-import-inlinable-multifile.swift │ ├── implementation-only-import-inlinable.swift │ ├── implementation-only-import-library-evolution.swift │ ├── implementation-only-override.swift │ ├── implicit_initializer_multi.swift │ ├── implicit_last_expr.swift │ ├── implicit_last_expr_disabled.swift │ ├── implicit_last_expr_exec.swift │ ├── implicit_lifetime_dependence.swift │ ├── import_and_define_class.swift │ ├── import_package_module_from_sdk.swift │ ├── infer_block_type.swift │ ├── inlinearray.swift │ ├── integer_generics_spelling.swift │ ├── invertible_no_stdlib.swift │ ├── issue-46000.swift │ ├── issue-74858.swift │ ├── issue-75389.swift │ ├── keypath_bidirectional_inference.swift │ ├── keypath_subscript_nolabel.swift │ ├── keypaths_noncopyable.swift │ ├── large_int_array.swift.gyb │ ├── lazy-typecheck.swift │ ├── lifetime_attr.swift │ ├── lifetime_attr_nofeature.swift │ ├── lifetime_depend_infer.swift │ ├── lifetime_depend_infer_interface.swift │ ├── lifetime_depend_infer_lazy.swift │ ├── lifetime_depend_noattr.swift │ ├── lifetime_depend_nofeature.swift │ ├── lifetime_dependence_functype.swift │ ├── missing-import-inlinable-code.swift │ ├── missing-import-typealias-swift6.swift │ ├── missing-import-typealias.swift │ ├── module-alias-with-underlying-module.swift │ ├── move_expr.swift │ ├── move_expr_moveonly_partial_consumption.swift │ ├── moveonly_casts.swift │ ├── moveonly_closure_ownership_inference.swift │ ├── moveonly_decl_attr.swift │ ├── moveonly_enum.swift │ ├── moveonly_experimental.swift │ ├── moveonly_illegal_types.swift │ ├── moveonly_indirect_enum.swift │ ├── moveonly_objc_enum.swift │ ├── moveonly_read_set_ban.swift │ ├── moveonly_require_ownership_specifier.swift │ ├── moveonly_restrictions.swift │ ├── moveonly_sendable.swift │ ├── moveonly_sendable_legacy.swift │ ├── moveonly_type_attr.sil │ ├── moveonly_type_attr.swift │ ├── noimplicitcopy_attr.swift │ ├── objc_attr_fixit_nsobject.swift │ ├── objc_attr_requires_module_1.swift │ ├── objc_attr_requires_module_2.swift │ ├── objc_attr_requires_module_3.swift │ ├── objc_property_wrappers.swift │ ├── objc_raw_identifiers.swift │ ├── objcmembers_attr_requires_module.swift │ ├── object_literals_ios.swift │ ├── object_literals_osx.swift │ ├── open_existential_lvalue.swift │ ├── option-set-empty.swift │ ├── package-import-conforming-types.swift │ ├── package-only-references.swift │ ├── package_enums_treat_exhaustive.swift │ ├── package_frozen_fixed_layout.swift │ ├── placeholder_type.swift │ ├── pound_assert.swift │ ├── pound_diagnostics.swift │ ├── private-import-ambiguities.swift │ ├── property_wrapper_parameter.swift │ ├── property_wrapper_parameter_invalid.swift │ ├── property_wrapper_property_with_observer.swift │ ├── property_wrappers.swift │ ├── public-module-name.swift │ ├── raw_layout.swift │ ├── raw_layout_correct.swift │ ├── raw_layout_parse.swift │ ├── raw_layout_sendable.swift │ ├── rdar153096639.swift │ ├── rdar38885760.swift │ ├── rdar39710335.swift │ ├── read_requirements.swift │ ├── redeclaration-checking.swift │ ├── reference_bindings.swift │ ├── report-public-import-of-private-module.swift │ ├── restricted-imports-priorities.swift │ ├── rethrows_init.swift │ ├── return_inside_pound.swift │ ├── self_cannot_be_found.swift │ ├── sending.swift │ ├── single_expression_closure.swift │ ├── spi-in-decls.swift │ ├── spi-inlinable-conformances.swift │ ├── stdlib_sugar_types.swift │ ├── string_interpolations.swift │ ├── struct_equatable_hashable.swift │ ├── struct_equatable_hashable_access.swift │ ├── struct_property_let_destructuring.swift │ ├── subclass_property_import.swift │ ├── substring_to_string_conversion_swift4.swift │ ├── superfluously-public-imports.swift │ ├── suppress-argument-labels-in-types.swift │ ├── suppressed_assoc_stdlib.swift │ ├── switch-ownership.swift │ ├── throwing_super_init.swift │ ├── type_eraser.swift │ ├── type_eraser_experimental_flag.swift │ ├── type_join.swift │ ├── typo_correction.swift │ ├── typo_correction_limit.swift │ ├── unsupported_recursive_value_type.swift │ ├── unsupported_recursive_value_type_multifile.swift │ ├── value_generics.swift │ └── where_clause_across_module_boundaries.swift ├── Serialization │ ├── AllowErrors │ │ ├── invalid-alias.swift │ │ ├── invalid-deinit.swift │ │ ├── invalid-inheritance.swift │ │ ├── invalid-members.swift │ │ ├── invalid-operator.swift │ │ ├── invalid-precedencegroup.swift │ │ ├── invalid-top.swift │ │ ├── invalid-xref.swift │ │ └── removed-decls.swift │ ├── Inputs │ │ ├── CLibrary.h │ │ ├── MixModA.modulemap │ │ ├── OpaqueCrossFileB.swift │ │ ├── OpaqueTypeStructured.swift │ │ ├── SourceInfo │ │ │ ├── File1.swift │ │ │ └── File2.swift │ │ ├── SwiftModA.swift │ │ ├── SwiftModB.swift │ │ ├── actor_bar.swift │ │ ├── alias.swift │ │ ├── alias_builtin.swift │ │ ├── autolinking_implementation_only.swift │ │ ├── autolinking_indirect.swift │ │ ├── autolinking_module_inferred.swift │ │ ├── autolinking_other.swift │ │ ├── autolinking_other2.swift │ │ ├── autolinking_private.swift │ │ ├── autolinking_public.swift │ │ ├── binary_sub.py │ │ ├── caller_inheriting_isolation.swift │ │ ├── circular-protocols │ │ │ ├── a.swift │ │ │ ├── b.swift │ │ │ └── c.swift │ │ ├── class-bound-protocol.swift │ │ ├── classes.swift │ │ ├── comments-batch │ │ │ ├── File1.swift │ │ │ ├── File2.swift │ │ │ ├── File3.swift │ │ │ ├── File4.swift │ │ │ └── File5.swift │ │ ├── comments-params.json │ │ ├── conformance-multi-file-other.swift │ │ ├── corrupted_group_info.json │ │ ├── cross_module_optional_protocol_reqt.h │ │ ├── cross_module_optional_protocol_reqt_2.swift │ │ ├── def_always_inline.swift │ │ ├── def_async.swift │ │ ├── def_basic.sil │ │ ├── def_basic_objc.sil │ │ ├── def_clang_function_types.swift │ │ ├── def_class.swift │ │ ├── def_comments.swift │ │ ├── def_concurrency.sil │ │ ├── def_debug.swift │ │ ├── def_distributed.swift │ │ ├── def_enum.swift │ │ ├── def_enum_derived.swift │ │ ├── def_explicit_lifetime_dependence.swift │ │ ├── def_func.swift │ │ ├── def_implicit_lifetime_dependence.swift │ │ ├── def_isolated.swift │ │ ├── def_isolated_conformance.swift │ │ ├── def_lifetime_dependence_enums.swift │ │ ├── def_macro_plugin.swift │ │ ├── def_macros.swift │ │ ├── def_module_abi_name.swift │ │ ├── def_noinline.swift │ │ ├── def_nonsendable.swift │ │ ├── def_objc.swift │ │ ├── def_objc_async.swift │ │ ├── def_objc_conforming.swift │ │ ├── def_objc_xref.swift │ │ ├── def_operator.swift │ │ ├── def_override.swift │ │ ├── def_property_wrappers.swift │ │ ├── def_source_loc.swift │ │ ├── def_struct.swift │ │ ├── def_transparent.swift │ │ ├── def_transparent_std.swift │ │ ├── def_typed_throws.swift │ │ ├── def_xref_extensions.swift │ │ ├── def_xref_extensions_distraction.swift │ │ ├── depends_on_new_module.swift │ │ ├── duplicate_normalprotocolconformance_input.swift │ │ ├── enum-mutual-circularity-2.swift │ │ ├── enum-mutual-circularity-client.swift │ │ ├── exported-modules │ │ │ ├── Exported.h │ │ │ ├── ExportedCore.h │ │ │ └── module.modulemap │ │ ├── extension_generation_number.swift │ │ ├── generic_extension_1.swift │ │ ├── group_info.json │ │ ├── has_array.swift │ │ ├── has_generic_subscript.swift │ │ ├── has_generic_subscript_proto.swift │ │ ├── has_generic_witness.swift │ │ ├── has_nested_generic_extension.swift │ │ ├── has_xref.swift │ │ ├── import-multi-file-other.swift │ │ ├── incremental-imports │ │ │ ├── A-after.swift │ │ │ └── A-before.swift │ │ ├── inherited-conformance-base.swift │ │ ├── inherited-conformance-lib.swift │ │ ├── inherited-conformance-user.swift │ │ ├── inherited-initializer-base.swift │ │ ├── module.modulemap │ │ ├── moveonly_deinit.swift │ │ ├── multi-file-2.swift │ │ ├── multi-file-nested-types-extensions.swift │ │ ├── multi-file-nested-types.swift │ │ ├── multi-file-subclass-generic-instantiation-extension.swift │ │ ├── multi-file-type-eraser-other.swift │ │ ├── multi-module-nested-type-1.swift │ │ ├── multi-module-nested-type-2.swift │ │ ├── ncgenerics.swift │ │ ├── ne_types.swift │ │ ├── nested-protocols.swift │ │ ├── nested-type-with-overlay │ │ │ ├── HasOverlay.h │ │ │ ├── module.modulemap │ │ │ ├── overlay.swift │ │ │ └── verify.swift │ │ ├── nested_opened_archetype_other.swift │ │ ├── nested_pack_expansion_other.swift │ │ ├── non-modular-header.h │ │ ├── objc-xref │ │ │ ├── module.modulemap │ │ │ └── objc_xref.h │ │ ├── objc_implementation.h │ │ ├── objc_method_decls.swift │ │ ├── objcfail │ │ │ ├── module.modulemap │ │ │ └── objcfail.h │ │ ├── opaque_types_inlineable_2.swift │ │ ├── opaque_with_limited_availability.swift │ │ ├── pack_expansion_type_other.swift │ │ ├── parameterized_protocol_other.swift │ │ ├── private_import_other.swift │ │ ├── private_import_other_2.swift │ │ ├── protocol_with_self_conforming_existential_other.swift │ │ ├── raw_layout.swift │ │ ├── raw_layout_cxx.h │ │ ├── recursive_protocol_merge_a.swift │ │ ├── recursive_protocol_merge_b.swift │ │ ├── sending.swift │ │ ├── stored_property_default_arg_testable.swift │ │ ├── struct_with_operators.swift │ │ ├── swiftdoc-versions │ │ │ ├── empty-0.7.swiftdoc │ │ │ ├── empty-1.0.swiftdoc │ │ │ ├── empty-1.1.swiftdoc │ │ │ ├── empty-1.257.swiftdoc │ │ │ └── empty-257.1.swiftdoc │ │ ├── too-new-language │ │ │ └── Library.swiftmodule │ │ ├── too-new │ │ │ └── Library.swiftmodule │ │ ├── too-old-language │ │ │ └── Library.swiftmodule │ │ ├── too-old │ │ │ └── Library.swiftmodule │ │ ├── top-level-code-other.swift │ │ ├── transparent_invalid.swift │ │ ├── tuple_conformance_other.swift │ │ ├── use_imported_enums.swift │ │ ├── vtable-function-deserialization-input.swift │ │ ├── witnesstable-function-deserialization-input.swift │ │ ├── wrapped-modularization-error-remarks │ │ │ ├── A │ │ │ │ └── A.swift │ │ │ ├── B │ │ │ │ └── B.swift │ │ │ └── CxxLib │ │ │ │ └── include │ │ │ │ ├── CxxLib.h │ │ │ │ └── module.modulemap │ │ ├── xref-generic-params-other-extensions-constrained.swift │ │ ├── xref-generic-params-other-extensions-mixed.swift │ │ ├── xref-generic-params-other-extensions.swift │ │ ├── xref-generic-params-other.swift │ │ ├── xref-multi-file-other.swift │ │ ├── xref-nested-clang-type │ │ │ ├── NestedClangTypes.h │ │ │ ├── NestedClangTypesHelper.h │ │ │ └── module.modulemap │ │ ├── xref-opaque-generic-type │ │ │ ├── best-protocol.swift │ │ │ └── output.json │ │ ├── xref-private-type │ │ │ ├── Lib.swift │ │ │ └── LibCore.swift │ │ └── xref_distraction.swift │ ├── Recovery │ │ ├── Inputs │ │ │ ├── custom-modules │ │ │ │ ├── AnyObjectLookup.h │ │ │ │ ├── Conformance.h │ │ │ │ ├── IndirectImport.h │ │ │ │ ├── IndirectlyImported.h │ │ │ │ ├── Overrides.h │ │ │ │ ├── ProtocolInheritance.h │ │ │ │ ├── RenameAcrossVersions.h │ │ │ │ ├── SuperclassObjC.h │ │ │ │ ├── TypeRemovalObjC.h │ │ │ │ ├── Typedefs.h │ │ │ │ ├── Types.apinotes │ │ │ │ ├── Types.h │ │ │ │ └── module.modulemap │ │ │ ├── implementation-only-override │ │ │ │ ├── FooKit.h │ │ │ │ ├── FooKit_SECRET.h │ │ │ │ └── module.modulemap │ │ │ ├── protocol-requirement-in-implementation-only │ │ │ │ └── module.modulemap │ │ │ └── typedefs-helper.swift │ │ ├── anyobject-lookup.swift │ │ ├── conformance-xref.swift │ │ ├── crash-recovery.swift │ │ ├── crash-xref.swift │ │ ├── error-sil-function.swift │ │ ├── implementation-only-missing.swift │ │ ├── implementation-only-opaque-type.swift │ │ ├── implementation-only-override.swift │ │ ├── indirect-import-removal.swift │ │ ├── missing-clang-module-conformance.swift │ │ ├── missing-clang-module.swift │ │ ├── module-recovery-remarks-on-type-changed.swift │ │ ├── module-recovery-remarks.swift │ │ ├── objc_report_method_override.swift │ │ ├── overrides.swift │ │ ├── private-conformances.swift │ │ ├── protocol-inheritance.swift │ │ ├── protocol-requirement-in-implementation-only.swift │ │ ├── rename-across-versions.swift │ │ ├── superclass.swift │ │ ├── type-removal-objc.swift │ │ ├── typedefs-in-enums.swift │ │ ├── typedefs-in-protocols.swift │ │ ├── typedefs.swift │ │ ├── types-4-to-5.swift │ │ └── types-5-to-4.swift │ ├── Safety │ │ ├── indirect-conformance.swift │ │ ├── lookupObjCMethods.swift │ │ ├── override-internal-func.swift │ │ ├── skip-reading-internal-anyobject.swift │ │ ├── skip-reading-internal-details.swift │ │ ├── unsafe-decls.swift │ │ └── unsafe-extensions.swift │ ├── access-level-import-dependencies.swift │ ├── access-level.swift │ ├── actor-attr-query-cycle.swift │ ├── alignment.swift │ ├── always_inline.swift │ ├── android-modules.swift │ ├── apple-default-search-paths.swift │ ├── application-extension.swift │ ├── array.swift │ ├── async.swift │ ├── async_initializers.swift │ ├── attr-extern.swift │ ├── attr-frozen.swift │ ├── attr-nonisolated.swift │ ├── attr-rawlayout.swift │ ├── attr-section.swift │ ├── autolinking-inlinable-inferred.swift │ ├── autolinking.swift │ ├── availability_custom_domains.swift │ ├── back-deployed-attr-skip-noninlinable-function-bodies.swift │ ├── basic_sil.swift │ ├── basic_sil_objc.swift │ ├── builtin.swift │ ├── caller_isolation_inherit.swift │ ├── cdecl_attr.swift │ ├── circular-import.swift │ ├── clang-function-types.swift │ ├── clang-target-option.swift │ ├── class-determinism.swift │ ├── class-roundtrip-module.swift │ ├── class.swift │ ├── comments-batch-mode.swift │ ├── comments-framework.swift │ ├── comments-hidden.swift │ ├── comments-params.swift │ ├── comments.swift │ ├── concurrency_sil.swift │ ├── conformance-multi-file.swift │ ├── conformance-objc-async.swift │ ├── cross_module_optional_protocol_reqt.swift │ ├── debug-scope.swift │ ├── debug-value.swift │ ├── default-witness-table-deserialization.swift │ ├── default_silfunction_deserializationfrom_stdlib.swift │ ├── distributed.swift │ ├── duplicate_normalprotocolconformance.swift │ ├── early-serialization.swift │ ├── effectful_properties.swift │ ├── embedded-swiftdeps.swift │ ├── empty.swift │ ├── enum-mutual-circularity.swift │ ├── enum.swift │ ├── explicit_lifetime_dependence.swift │ ├── export_as_xrefs.swift │ ├── extension-of-typealias.swift │ ├── extension_generation_number_1.swift │ ├── extension_generation_number_2.swift │ ├── external_macros.swift │ ├── failed-clang-module.swift │ ├── failed-partial-module.swift │ ├── function-default-args.swift │ ├── function.swift │ ├── generated-ref-to-nserror.swift │ ├── generic_extension.swift │ ├── generic_subscript.swift │ ├── generic_witness.swift │ ├── global_init.swift │ ├── group_info_diags.swift │ ├── hermetic-seal-import.swift │ ├── ignore-opaque-underlying-type-back-deploy.swift │ ├── ignore-opaque-underlying-type.swift │ ├── implementation-only-open.swift │ ├── implementation-only-testable.swift │ ├── implicit_lifetime_dependence.swift │ ├── import-multi-file.swift │ ├── import.swift │ ├── import_source.swift │ ├── imported_enum_merge.swift │ ├── incremental-imports.swift │ ├── index-table-order.sil │ ├── inferred_nonfrozen_conformance.swift │ ├── inherited-conformance.swift │ ├── inherited-initializer.swift │ ├── init_accessors.swift │ ├── inlined-shadowed-clang-vs-swift.swift │ ├── inlined-shadowed-layered-modules.swift │ ├── interface-module-nested-types.swift │ ├── isolated-params.swift │ ├── isolated_conformance.swift │ ├── lazy-typecheck-errors.swift │ ├── lazy-typecheck-rdar147539902.swift │ ├── lazy-typecheck.swift │ ├── lifetime_dependence_enums.swift │ ├── load-arch-fallback-framework.swift │ ├── load-arch-fallback.swift │ ├── load-file-permissions.swift │ ├── load-invalid-arch.swift │ ├── load-invalid-doc.swift │ ├── load-invalid-sourceinfo.swift │ ├── load-invalid.swift │ ├── load-missing-dependencies.swift │ ├── load-missing-dependency.swift │ ├── load-target-fallback.swift │ ├── load-target-normalization.swift │ ├── load-wrong-name-doc.swift │ ├── load-wrong-name.swift │ ├── load.swift │ ├── load_package_module.swift │ ├── macros.swift │ ├── modularization-error.swift │ ├── module-merging-implementation-only.swift │ ├── module_abi_name.swift │ ├── module_defining_interface.swift │ ├── module_defining_interface_client.swift │ ├── module_package_name.swift │ ├── moveonly_deinit.swift │ ├── multi-file-nested-type-circularity.swift │ ├── multi-file-nested-type-extension.swift │ ├── multi-file-nested-type-simple.swift │ ├── multi-file-protocol-circularity.swift │ ├── multi-file-subclass-generic-instantiation.swift │ ├── multi-file-type-eraser.swift │ ├── multi-file.swift │ ├── multi-module-nested-type-extension.swift │ ├── nested-protocols.swift │ ├── nested-type-with-overlay.swift │ ├── nested_generic_extension.swift │ ├── nested_opened_archetype.swift │ ├── nested_pack_expansion.swift │ ├── noinline.swift │ ├── non-modular-clang-type.swift │ ├── non_escapable_subst_test.swift │ ├── noncopyable_generics.swift │ ├── nonsendable.swift │ ├── objc.swift │ ├── objc_async.swift │ ├── objc_implementation.swift │ ├── objc_method_table.swift │ ├── objc_optional_reqs.swift │ ├── objc_xref.swift │ ├── opaque_circularity.swift │ ├── opaque_cross_file.swift │ ├── opaque_nested.swift │ ├── opaque_type_structured.swift │ ├── opaque_types_inlineable.swift │ ├── opaque_with_availability_cross_module.swift │ ├── operator.swift │ ├── optimized.swift │ ├── ossa_sil.sil │ ├── override.swift │ ├── ownership.swift │ ├── pack_expansion_type.swift │ ├── package-dependencies.swift │ ├── parameterized_protocol.swift │ ├── path_obfuscator.swift │ ├── private_import.swift │ ├── property_wrappers.swift │ ├── protocol_with_self_conforming_existential.swift │ ├── raw_layout.swift │ ├── recursive_protocol_merge.swift │ ├── renamed-cycle.swift │ ├── resilience.swift │ ├── restrict-swiftmodule-to-channel.swift │ ├── restrict-swiftmodule-to-revision.swift │ ├── restrict-swiftmodule-to-sdk.swift │ ├── result_builders.swift │ ├── runtime-import-from-sdk-maccatalyst.swift │ ├── runtime-import-from-sdk.swift │ ├── search-paths-prefix-map.swift │ ├── search-paths-relative.swift │ ├── search-paths-sdk-auxiliary.swift │ ├── search-paths-sdk.swift │ ├── search-paths.swift │ ├── sending.swift │ ├── serialize_attr.swift │ ├── shadowed-class-vs-protocol.swift │ ├── sil-imported-enums.swift │ ├── sil-serialize-all-with-cross-module-conformance.swift │ ├── sil_box_types.sil │ ├── sil_partial_apply_ownership.sil │ ├── source-loc.swift │ ├── sourceinfo.swift │ ├── spi-only-dependency.swift │ ├── static.swift │ ├── stored_property_default_arg.swift │ ├── struct.swift │ ├── swiftdoc-versions.swift │ ├── target-incompatible.swift │ ├── target-too-new-ios.swift │ ├── target-too-new.swift │ ├── test_recursive_protocol_deserialization.swift │ ├── testability.swift │ ├── top-level-code.swift │ ├── transitive_conformances_and_cgfloat_double.swift │ ├── transparent-std.swift │ ├── transparent.swift │ ├── tuple_conformance.swift │ ├── typealias.swift │ ├── typed_throws.swift │ ├── use-class-bound-protocol.swift │ ├── using.swift │ ├── value_generics.swift │ ├── version-mismatches.swift │ ├── vtable-function-deserialization.swift │ ├── vtable-lookup.swift │ ├── witnesstable-function-deserialization.swift │ ├── wrapped-modularization-error-remarks.swift │ ├── write-to-locked-dir.swift │ ├── xref-deinit.swift │ ├── xref-extensions-counters.swift │ ├── xref-generic-opaque-type.swift │ ├── xref-generic-params.swift │ ├── xref-multi-file.swift │ ├── xref-nested-clang-type.swift │ ├── xref-private-type.swift │ └── xref.swift ├── SourceKit │ ├── ActiveRegions │ │ ├── nested.swift │ │ ├── nested2.swift │ │ ├── postfix.swift │ │ ├── syntactically_invalid.swift │ │ └── unterminated.swift │ ├── CodeComplete │ │ ├── Inputs │ │ │ ├── ImportsFoo.h │ │ │ ├── ImportsImportsFoo.h │ │ │ ├── auxiliary_file.swift │ │ │ ├── checkdeps │ │ │ │ ├── ClangFW.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ClangFW.h │ │ │ │ │ │ └── Funcs.h │ │ │ │ │ └── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── ClangFW.framework_mod │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Funcs.h │ │ │ │ ├── MyProject │ │ │ │ │ ├── Bridging.h │ │ │ │ │ ├── Library.swift │ │ │ │ │ ├── LibraryExt.swift │ │ │ │ │ └── LocalCFunc.h │ │ │ │ ├── MyProject_mod │ │ │ │ │ ├── Library.swift │ │ │ │ │ └── LocalCFunc.h │ │ │ │ ├── SwiftFW_src │ │ │ │ │ └── Funcs.swift │ │ │ │ ├── SwiftFW_src_mod │ │ │ │ │ └── Funcs.swift │ │ │ │ └── test.swift │ │ │ ├── complete_typealias_different_file_2.swift │ │ │ ├── custom-completion │ │ │ │ ├── custom.json │ │ │ │ ├── error1.json │ │ │ │ ├── error10.json │ │ │ │ ├── error2.json │ │ │ │ ├── error3.json │ │ │ │ ├── error4.json │ │ │ │ ├── error5.json │ │ │ │ ├── error6.json │ │ │ │ ├── error7.json │ │ │ │ ├── error8.json │ │ │ │ └── error9.json │ │ │ ├── filter-rules │ │ │ │ ├── hideDesc.json │ │ │ │ ├── hideInnerOp.json │ │ │ │ ├── hideKeywords.json │ │ │ │ ├── hideLiterals.json │ │ │ │ ├── hideModules.json │ │ │ │ ├── hideNames.json │ │ │ │ ├── showDesc.json │ │ │ │ ├── showKeywords.json │ │ │ │ ├── showLiterals.json │ │ │ │ ├── showOp.json │ │ │ │ └── showSpecific.json │ │ │ ├── forbid_typecheck_2.swift │ │ │ ├── forbid_typecheck_primary.swift │ │ │ ├── imported_by_aux_file.h │ │ │ ├── module.modulemap │ │ │ ├── parseable-interface │ │ │ │ ├── MyPoint.swift │ │ │ │ └── MyPointExtensions.swift │ │ │ ├── popular.h │ │ │ ├── popular2.h │ │ │ └── popular3.h │ │ ├── cancellation.swift │ │ ├── complete_annotateddescription.swift │ │ ├── complete_annotateddescription.swift.result │ │ ├── complete_big_array.swift │ │ ├── complete_build_session.swift │ │ ├── complete_cache.swift │ │ ├── complete_call_pattern.swift │ │ ├── complete_checkdeps_avoid_check.swift │ │ ├── complete_checkdeps_bridged.swift │ │ ├── complete_checkdeps_clangmodule.swift │ │ ├── complete_checkdeps_notifyupdate.swift │ │ ├── complete_checkdeps_otherfile.swift │ │ ├── complete_checkdeps_ownfile.swift │ │ ├── complete_checkdeps_swiftmodule.swift │ │ ├── complete_checkdeps_vfs.swift │ │ ├── complete_checkdeps_vfs_open.swift │ │ ├── complete_constructor.swift │ │ ├── complete_constructor.swift.response │ │ ├── complete_crash1.swift │ │ ├── complete_custom.swift │ │ ├── complete_docbrief_1.swift │ │ ├── complete_docbrief_2.swift │ │ ├── complete_docbrief_3.swift │ │ ├── complete_docbrief_package.swift │ │ ├── complete_docbrief_spi.swift │ │ ├── complete_extern_c_from_bridging_header.swift │ │ ├── complete_filter.swift │ │ ├── complete_filter_rules.swift │ │ ├── complete_forbid_typecheck.swift │ │ ├── complete_from_clang_module.swift │ │ ├── complete_from_system.swift │ │ ├── complete_fuzzy.swift │ │ ├── complete_group_overloads.swift │ │ ├── complete_hide_low_priority.swift │ │ ├── complete_import_module_flag.swift │ │ ├── complete_in_single_quoted_string_literal.swift │ │ ├── complete_inner.swift │ │ ├── complete_invalid_singlevaluestmtexpr.swift │ │ ├── complete_literals.swift │ │ ├── complete_local_decl.swift │ │ ├── complete_member.swift │ │ ├── complete_member.swift.response │ │ ├── complete_missing_files.swift │ │ ├── complete_moduleimportdepth.swift │ │ ├── complete_name.swift │ │ ├── complete_object_literals.swift │ │ ├── complete_open.swift │ │ ├── complete_operators.swift │ │ ├── complete_optionalmethod.swift │ │ ├── complete_optionalmethod.swift.response │ │ ├── complete_playground_symlink.swift │ │ ├── complete_popular_api.swift │ │ ├── complete_popular_api.swift.popular │ │ ├── complete_popular_api.swift.unpopular │ │ ├── complete_requestlimit.swift │ │ ├── complete_sequence.swift │ │ ├── complete_sequence_accessor.swift │ │ ├── complete_sequence_bodyrange.swift │ │ ├── complete_sequence_builderfunc.swift │ │ ├── complete_sequence_crossfile.swift │ │ ├── complete_sequence_edit.swift │ │ ├── complete_sequence_func_in_closure.swift │ │ ├── complete_sequence_ifconfig.swift │ │ ├── complete_sequence_in_ifconfig.swift │ │ ├── complete_sequence_innertype.swift │ │ ├── complete_sequence_localvar.swift │ │ ├── complete_sequence_nestedtype.swift │ │ ├── complete_sequence_property_wrapper.swift │ │ ├── complete_sequence_race.swift │ │ ├── complete_sequence_rdar75358153.swift │ │ ├── complete_sequence_toplevel.swift │ │ ├── complete_sequence_toplevel_edit.swift │ │ ├── complete_sequence_toplevel_edit_import.swift │ │ ├── complete_sort_order.swift │ │ ├── complete_sort_order_prefixexact.swift │ │ ├── complete_stems.swift │ │ ├── complete_structure.swift │ │ ├── complete_swift_overlay.swift │ │ ├── complete_swiftinterface.swift │ │ ├── complete_test.swift │ │ ├── complete_type_match.swift │ │ ├── complete_typealias_different_file.swift │ │ ├── complete_typerelation.swift │ │ ├── complete_typerelation.swift.convertible.response │ │ ├── complete_typerelation.swift.identical.response │ │ ├── complete_underscores.swift │ │ ├── complete_unresolvedmember.swift │ │ ├── complete_unresolvedmember.swift.response │ │ ├── complete_update.swift │ │ ├── complete_with_closure_param.swift │ │ ├── complete_without_stdlib.swift │ │ ├── complete_working_directory.swift │ │ ├── crash_discriminator.swift │ │ ├── injected_vfs.swift │ │ ├── injected_vfs_complete_open.swift │ │ ├── injected_vfs_swiftinterface.swift │ │ ├── issue-56786.swift │ │ ├── issue-76944.swift │ │ ├── issue-80985.swift │ │ ├── metatype_in_expr.swift │ │ ├── multiple_trailing_closure_signatures.swift │ │ └── rdar95772803.swift │ ├── CodeExpand │ │ ├── code-expand-multiple-trailing-closures.swift │ │ ├── code-expand-no-typecheck.swift │ │ ├── code-expand-rdar77665805.swift │ │ └── code-expand.swift │ ├── CodeFormat │ │ ├── indent-available-macro.swift │ │ ├── indent-basic.swift │ │ ├── indent-bracestmt.swift │ │ ├── indent-bracestmt2.swift │ │ ├── indent-bracestmt3-if-else.swift │ │ ├── indent-chained.swift │ │ ├── indent-closing-array.swift │ │ ├── indent-closure.swift │ │ ├── indent-comment.swift │ │ ├── indent-computed-property.swift │ │ ├── indent-crashes.swift │ │ ├── indent-do-catch.swift │ │ ├── indent-extension.swift │ │ ├── indent-ibaction.swift │ │ ├── indent-if.swift │ │ ├── indent-implicit-getter.swift │ │ ├── indent-lazy-property.swift │ │ ├── indent-list-exact.swift │ │ ├── indent-list-exact2.swift │ │ ├── indent-location-directive.swift │ │ ├── indent-multiline-string-interp.swift │ │ ├── indent-multiline-string-nested.swift │ │ ├── indent-multiline-string-trailing-interp.swift │ │ ├── indent-multiline-string-trailing-ownline.swift │ │ ├── indent-multiline-string-trailing.swift │ │ ├── indent-multiline-string.swift │ │ ├── indent-param.swift │ │ ├── indent-parenexpr.swift │ │ ├── indent-pound-if.swift │ │ ├── indent-repeat.swift │ │ ├── indent-switch.swift │ │ ├── indent-toplevel.swift │ │ ├── indent-trailing │ │ │ ├── trailing-catch-item-comma.swift │ │ │ ├── trailing-catch-item-no-comma.swift │ │ │ ├── trailing-catch.swift │ │ │ ├── trailing-class.swift │ │ │ ├── trailing-closure-in.swift │ │ │ ├── trailing-closure-multiple.swift │ │ │ ├── trailing-closure.swift │ │ │ ├── trailing-deinit.swift │ │ │ ├── trailing-do.swift │ │ │ ├── trailing-else.swift │ │ │ ├── trailing-enum-case-comma.swift │ │ │ ├── trailing-enum-case-empty.swift │ │ │ ├── trailing-enum-case-no-comma.swift │ │ │ ├── trailing-extension.swift │ │ │ ├── trailing-for.swift │ │ │ ├── trailing-func.swift │ │ │ ├── trailing-generic-param-comma.swift │ │ │ ├── trailing-generic-param-no-comma.swift │ │ │ ├── trailing-guard-condition.swift │ │ │ ├── trailing-guard-pattern-comma.swift │ │ │ ├── trailing-guard-pattern-empty.swift │ │ │ ├── trailing-guard-pattern-no-comma.swift │ │ │ ├── trailing-guard.swift │ │ │ ├── trailing-if-pattern-comma.swift │ │ │ ├── trailing-if-pattern-empty.swift │ │ │ ├── trailing-if-pattern-no-comma.swift │ │ │ ├── trailing-if.swift │ │ │ ├── trailing-inherits-item-comma.swift │ │ │ ├── trailing-inherits-item-no-comma.swift │ │ │ ├── trailing-init.swift │ │ │ ├── trailing-parameter-list-comma.swift │ │ │ ├── trailing-parameter-list-empty.swift │ │ │ ├── trailing-parameter-list-no-comma.swift │ │ │ ├── trailing-pattern-binding-decl-comma.swift │ │ │ ├── trailing-pattern-binding-decl-no-comma.swift │ │ │ ├── trailing-precedence.swift │ │ │ ├── trailing-protocol.swift │ │ │ ├── trailing-repeat.swift │ │ │ ├── trailing-string-element.swift │ │ │ ├── trailing-struct.swift │ │ │ ├── trailing-while-pattern-comma.swift │ │ │ ├── trailing-while-pattern-empty.swift │ │ │ ├── trailing-while-pattern-no-comma.swift │ │ │ └── trailing-while.swift │ │ ├── indent-width2.swift │ │ ├── indent-with-cr.swift │ │ ├── indent-with-tab.swift │ │ ├── indent-zero-width.swift │ │ └── rdar_32789463.swift │ ├── Compile │ │ └── basic.swift │ ├── CompileNotifications │ │ ├── Inputs │ │ │ ├── parse-error-with-sourceLocation.swift │ │ │ ├── parse-error.swift │ │ │ └── sema-error.swift │ │ ├── arg-parsing.swift │ │ ├── args.swift │ │ ├── code-completion.swift │ │ ├── cursor-info.swift │ │ ├── diagnostics.swift │ │ ├── edits.swift │ │ ├── enable-disable.swift │ │ └── type-context-info.swift │ ├── ConformingMethods │ │ ├── basic.swift │ │ ├── basic.swift.response │ │ ├── generics.swift │ │ ├── generics.swift.response.1 │ │ ├── generics.swift.response.2 │ │ ├── ifconfigcrash.swift │ │ └── rdar141168628.swift │ ├── CursorInfo │ │ ├── Inputs │ │ │ ├── FooSwiftModule.swift │ │ │ ├── SomeModule.swift │ │ │ ├── cursor-overrides │ │ │ │ ├── foo_clang_module.h │ │ │ │ └── module.modulemap │ │ │ ├── custom-modules │ │ │ │ └── ForwardDeclarations │ │ │ │ │ ├── ForwardDeclaredInterfaceFoo.h │ │ │ │ │ ├── ProtocolFoo.h │ │ │ │ │ └── module.modulemap │ │ │ ├── group.json │ │ │ ├── invalid_compiler_args │ │ │ │ ├── A │ │ │ │ │ └── File.swift │ │ │ │ └── B │ │ │ │ │ └── File.swift │ │ │ ├── mixed_framework │ │ │ │ └── MixedFramework.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── MixedFramework.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── multiple_ast1.swift │ │ │ ├── multiple_ast2.swift │ │ │ ├── rdar_18677108-2-a.swift │ │ │ └── rdar_18677108-2-b.swift │ │ ├── at_eof.swift │ │ ├── at_eof_in_macro.swift │ │ ├── closure_capture.swift │ │ ├── closure_with_invalid_var_reference.swift │ │ ├── completion_like_cursor_with_edit.swift │ │ ├── concurrency.swift │ │ ├── crash-62840.swift │ │ ├── crash1.swift │ │ ├── crash2.swift │ │ ├── cursor_after_edit.swift │ │ ├── cursor_ambiguous.swift │ │ ├── cursor_big_array.swift │ │ ├── cursor_callargs.swift │ │ ├── cursor_declref_resolve_triggers_more_typechecking.swift │ │ ├── cursor_doc_comment.swift │ │ ├── cursor_doc_comment_from_clang.swift │ │ ├── cursor_doc_comment_from_clang_safe_wrapper.swift │ │ ├── cursor_dynamic.swift │ │ ├── cursor_forbid_typecheck.swift │ │ ├── cursor_from_module_with_type_alias_to_parameterized_protocol.swift │ │ ├── cursor_generated_interface.swift │ │ ├── cursor_generic_enum.swift │ │ ├── cursor_generics.swift │ │ ├── cursor_getter.swift │ │ ├── cursor_groups.swift │ │ ├── cursor_implicit_init.swift │ │ ├── cursor_in_closure.swift │ │ ├── cursor_in_closure_initializing_var.swift │ │ ├── cursor_in_global_closure.swift │ │ ├── cursor_in_pound_if.swift │ │ ├── cursor_in_stdlib_module.swift │ │ ├── cursor_in_top_level_closure.swift │ │ ├── cursor_infer_nonmutating_from_property_wrapper.swift │ │ ├── cursor_info.swift │ │ ├── cursor_info_async.swift │ │ ├── cursor_info_concurrency.swift │ │ ├── cursor_info_container.swift │ │ ├── cursor_info_cross_import.swift │ │ ├── cursor_info_cross_import_common_case.swift │ │ ├── cursor_info_existential_var.swift │ │ ├── cursor_info_expressions.swift │ │ ├── cursor_info_keypath_member_lookup.swift │ │ ├── cursor_info_multi_module.swift │ │ ├── cursor_info_param.swift │ │ ├── cursor_info_property_wrappers.swift │ │ ├── cursor_info_source_lang.swift │ │ ├── cursor_info_synthesized_refs.swift │ │ ├── cursor_info_type.swift │ │ ├── cursor_inherit_doc_comment.swift │ │ ├── cursor_init.swift │ │ ├── cursor_invalid.swift │ │ ├── cursor_label.swift │ │ ├── cursor_local_var_with_property_wrapper.swift │ │ ├── cursor_nested_extension.swift │ │ ├── cursor_no_cancel.swift │ │ ├── cursor_of_protocol_requirement_is_dynamic.swift │ │ ├── cursor_on_closure_parameter.swift │ │ ├── cursor_on_if_let_binding.swift │ │ ├── cursor_on_invalid_capturing_self.swift │ │ ├── cursor_on_module.swift │ │ ├── cursor_on_var_in_extension_in_func.swift │ │ ├── cursor_opaque_result.swift │ │ ├── cursor_overrides.swift │ │ ├── cursor_relatedname.swift │ │ ├── cursor_rename.swift │ │ ├── cursor_reuses_ast.swift │ │ ├── cursor_reuses_astcontext.swift │ │ ├── cursor_simplify_type.swift │ │ ├── cursor_some_type.swift │ │ ├── cursor_spi.swift │ │ ├── cursor_stdlib.swift │ │ ├── cursor_stdlib_local.swift │ │ ├── cursor_swift_overlay.swift │ │ ├── cursor_swiftinterface.swift │ │ ├── cursor_swiftonly_systemmodule.swift │ │ ├── cursor_symbol_graph.swift │ │ ├── cursor_symbol_graph_extensions.swift │ │ ├── cursor_symbol_graph_generics.swift │ │ ├── cursor_symbol_graph_objc.swift │ │ ├── cursor_symbol_graph_param.swift │ │ ├── cursor_symbol_graph_parents.swift │ │ ├── cursor_symbol_graph_referenced.swift │ │ ├── cursor_symbol_graph_referenced_objc.swift │ │ ├── cursor_symlink.swift │ │ ├── cursor_synthesized.swift │ │ ├── cursor_unavailable.swift │ │ ├── cursor_user_module_group.swift │ │ ├── cursor_uses_swiftsourceinfo.swift │ │ ├── cursor_usr.swift │ │ ├── cursor_vardecl_across_fallthrough.swift │ │ ├── cursor_with_file_replacement.swift │ │ ├── discriminator.swift │ │ ├── doc_attr.swift │ │ ├── dynamic_self.swift │ │ ├── ignore-llvm-args.swift │ │ ├── injected_vfs.swift │ │ ├── invalid_compiler_args.swift │ │ ├── invalid_offset.swift │ │ ├── issue-53340.swift │ │ ├── issue-54711-enum-element-value.swift │ │ ├── issue-55075-if-let-type.swift │ │ ├── issue-62457-symbol-graph-crash.swift │ │ ├── issue-77981.swift │ │ ├── issue-78690.swift │ │ ├── issue-79696.swift │ │ ├── look_through_identity_expr_and_types.swift │ │ ├── missing_module_map.swift │ │ ├── mixed_framework.swift │ │ ├── multiple_ast.swift │ │ ├── rdar129195380.swift │ │ ├── rdar129417672.swift │ │ ├── rdar131135631.swift │ │ ├── rdar77234243.swift │ │ ├── rdar_18677108-1.swift │ │ ├── rdar_18677108-2.swift │ │ ├── rdar_18677108-2.swift.response │ │ ├── rdar_21657000.swift │ │ ├── rdar_21790830.swift │ │ ├── rdar_21859941.swift │ │ ├── rdar_30248264.swift │ │ ├── rdar_30292429.swift │ │ ├── rdar_31539499.swift │ │ ├── rdar_31758709.swift │ │ ├── rdar_33334141.swift │ │ ├── rdar_34348776.swift │ │ ├── rdar_35819975.swift │ │ ├── rdar_36305791.swift │ │ ├── rdar_41100570.swift │ │ ├── rdar_41593893.swift │ │ ├── rdar_64230277.swift │ │ ├── rdar_70017224.swift │ │ ├── rdar_99096663.swift │ │ ├── refactoring_actions_with_ast_reuse.swift │ │ ├── result_builder.swift │ │ ├── shorthand_if_let.swift │ │ ├── solver_based_info_of_memory_only_file.swift │ │ └── static_vs_class_spelling.swift │ ├── Demangle │ │ └── demangle.swift │ ├── Diagnostics │ │ ├── cancel_diags.swift │ │ ├── diag_in_c_header.swift │ │ ├── diags.swift │ │ └── embedded_non_wmo.swift │ ├── DocSupport │ │ ├── Inputs │ │ │ ├── MyError.h │ │ │ ├── async │ │ │ │ ├── async.h │ │ │ │ └── module.modulemap │ │ │ ├── availability_maccatalyst.swift │ │ │ ├── cake.swift │ │ │ ├── cake1.swift │ │ │ ├── main.swift │ │ │ ├── module.modulemap │ │ │ └── module_with_class_extension.swift │ │ ├── doc_async.swift │ │ ├── doc_clang_module.swift │ │ ├── doc_clang_module.swift.response │ │ ├── doc_clang_module.swift.sub.response │ │ ├── doc_cross_import_common.swift │ │ ├── doc_cross_import_common.swift.ClangFramework.response │ │ ├── doc_cross_import_common.swift.OverlaidClangFramework.response │ │ ├── doc_cross_import_common.swift.SwiftFramework.response │ │ ├── doc_error_domain.swift │ │ ├── doc_generic_type_with_self_param.swift │ │ ├── doc_internal_closure_label.swift │ │ ├── doc_internal_closure_label.swift.response │ │ ├── doc_objc_concurrency.swift │ │ ├── doc_source_file.swift │ │ ├── doc_source_file.swift.response │ │ ├── doc_stdlib.swift │ │ ├── doc_swift_module.swift │ │ ├── doc_swift_module.swift.response │ │ ├── doc_swift_module1.swift │ │ ├── doc_swift_module1.swift.response │ │ ├── doc_swift_module_availability_maccatalyst.swift │ │ ├── doc_swift_module_availability_maccatalyst_is_deprecated.swift │ │ ├── doc_swift_module_class_extension.swift │ │ ├── doc_swift_module_class_extension.swift.response │ │ ├── doc_swift_module_cross_import.swift │ │ ├── doc_swift_module_cross_import.swift.A.response │ │ ├── doc_swift_module_cross_import.swift.Other.response │ │ ├── doc_system_module_underscored.swift │ │ └── doc_system_module_underscored.swift.response │ ├── DocumentStructure │ │ ├── Inputs │ │ │ ├── access.swift │ │ │ ├── invalid.swift │ │ │ ├── main.swift │ │ │ ├── mark.swift │ │ │ └── raw-identifiers.swift │ │ ├── access_parse.swift │ │ ├── access_parse.swift.response │ │ ├── mark_edit.swift │ │ ├── mark_edit.swift.response │ │ ├── rdar47426948.swift │ │ ├── structure.swift │ │ ├── structure.swift.empty.response │ │ ├── structure.swift.foobar.response │ │ ├── structure.swift.invalid.response │ │ ├── structure.swift.placeholders.response │ │ ├── structure.swift.raw-identifiers.swift.response │ │ ├── structure.swift.response │ │ ├── structure_args.swift │ │ ├── structure_args.swift.response │ │ ├── structure_object_literals.swift │ │ └── structure_object_literals.swift.response │ ├── ExpressionType │ │ ├── basic.swift │ │ └── filtered.swift │ ├── ExtractComment │ │ ├── Inputs │ │ │ ├── Comment1.swift │ │ │ ├── CommentIndent1.swift │ │ │ ├── CommentIndent2.swift │ │ │ ├── DocComment1.swift │ │ │ ├── DocComment2.swift │ │ │ ├── DocComment3.swift │ │ │ ├── DocCommentEmptyLine1.swift │ │ │ ├── DocCommentEmptyLine2.swift │ │ │ ├── DocCommentEmptyLine3.swift │ │ │ ├── DocCommentEmptyLine4.swift │ │ │ └── NotComment1.swift │ │ ├── extract_comments.swift │ │ ├── extract_comments.swift.Comment1.response │ │ ├── extract_comments.swift.CommentIndent1.response │ │ ├── extract_comments.swift.CommentIndent2.response │ │ ├── extract_comments.swift.DocComment1.response │ │ ├── extract_comments.swift.DocComment2.response │ │ ├── extract_comments.swift.DocComment3.response │ │ ├── extract_comments.swift.DocCommentEmptyLine1.response │ │ ├── extract_comments.swift.DocCommentEmptyLine2.response │ │ ├── extract_comments.swift.DocCommentEmptyLine3.response │ │ └── extract_comments.swift.DocCommentEmptyLine4.response │ ├── Indexing │ │ ├── Inputs │ │ │ ├── Swift.swiftmodule │ │ │ ├── explicit-access │ │ │ │ ├── Exported.swift │ │ │ │ └── Module.swift │ │ │ ├── implicit-vis │ │ │ │ ├── a.index.response │ │ │ │ ├── a.swift │ │ │ │ ├── b.index.response │ │ │ │ └── b.swift │ │ │ ├── index_constructors_other.swift │ │ │ ├── indexstore_multifile_other.swift │ │ │ ├── test_module.index.response │ │ │ └── test_module.swift │ │ ├── index.swift │ │ ├── index.swift.response │ │ ├── index_bad_modulename.swift │ │ ├── index_bad_modulename.swift.response │ │ ├── index_big_array.swift │ │ ├── index_big_array.swift.response │ │ ├── index_commenttag.swift │ │ ├── index_constructors.swift │ │ ├── index_constructors.swift.response │ │ ├── index_effective_access_level.swift │ │ ├── index_effective_access_level.swift.response │ │ ├── index_enum_case.swift │ │ ├── index_enum_case.swift.response │ │ ├── index_forbid_typecheck.swift │ │ ├── index_forbid_typecheck.swift.response │ │ ├── index_func_import.swift │ │ ├── index_func_import.swift.response │ │ ├── index_implicit_vis.swift │ │ ├── index_is_test_candidate.swift │ │ ├── index_is_test_candidate.swift.response │ │ ├── index_is_test_candidate_objc.swift │ │ ├── index_is_test_candidate_objc.swift.response │ │ ├── index_locals.swift │ │ ├── index_module_missing_depend.swift │ │ ├── index_objcMembers.swift │ │ ├── index_objcMembers.swift.response │ │ ├── index_operators.swift │ │ ├── index_operators.swift.response │ │ ├── index_with_clang_module.swift │ │ ├── index_with_swift_module.swift │ │ ├── indexstore_multifile.swift │ │ ├── indexstore_with_remappings.swift │ │ ├── issue-46400.swift │ │ ├── issue-46400.swift.response │ │ ├── rdar_21602898.swift │ │ └── rdar_21602898.swift.response │ ├── Inputs │ │ ├── CrossImport │ │ │ ├── A.swiftcrossimport │ │ │ │ └── B.swiftoverlay │ │ │ ├── A.swiftinterface │ │ │ ├── B.swiftinterface │ │ │ ├── C.swiftinterface │ │ │ ├── Other.swiftcrossimport │ │ │ │ └── C.swiftoverlay │ │ │ ├── Other.swiftinterface │ │ │ ├── _ABAdditions.swiftcrossimport │ │ │ │ └── C.swiftoverlay │ │ │ ├── _ABAdditions.swiftinterface │ │ │ ├── _OtherCAdditions.swift │ │ │ └── __ABAdditionsCAdditions.swiftinterface │ │ ├── UnderscoredProto.swiftinterface │ │ ├── big_array.swift │ │ ├── build_session │ │ │ ├── Frameworks │ │ │ │ ├── Foo.framework │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── FooSub.h │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Foo.h │ │ │ │ │ └── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ └── FooHelper.framework │ │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooHelperSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooHelperSub.h │ │ │ │ │ ├── Headers │ │ │ │ │ ├── FooHelper.h │ │ │ │ │ └── FooHelperExplicit.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── Frameworks_modified │ │ │ │ ├── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── FooHelper.framework │ │ │ │ ├── Frameworks │ │ │ │ └── FooHelperSub.framework │ │ │ │ │ └── Headers │ │ │ │ │ └── FooHelperSub.h │ │ │ │ ├── Headers │ │ │ │ ├── FooHelper.h │ │ │ │ └── FooHelperExplicit.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── concurrency │ │ │ ├── gen_concurrency.swift │ │ │ ├── header_concurrency.h │ │ │ └── module.modulemap │ │ ├── forbid_typecheck_2.swift │ │ ├── forbid_typecheck_primary.swift │ │ ├── libIDE-mock-sdk │ │ │ ├── Bar.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Bar.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── BoolBridgingTests.framework │ │ │ │ ├── Headers │ │ │ │ │ └── BoolBridgingTests.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── FooHelper.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooHelperSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooHelperSub.h │ │ │ │ ├── Headers │ │ │ │ │ ├── FooHelper.h │ │ │ │ │ └── FooHelperExplicit.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Mixed.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Mixed.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── Mixed.swift │ │ │ ├── README.DO_NOT_MODIFY_FILES_DIRECTLY │ │ │ └── SwiftNameTests.framework │ │ │ │ ├── Headers │ │ │ │ └── SwiftNameTests.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── placeholders.swift │ │ ├── sourcekitd_path_sanitize.py │ │ └── vfs │ │ │ ├── CModule │ │ │ ├── CModule.h │ │ │ └── module.modulemap │ │ │ ├── README │ │ │ ├── SwiftModule │ │ │ └── SwiftModule.swift │ │ │ ├── other_file_in_target.swift │ │ │ └── other_file_in_target_2.swift │ ├── InterfaceGen │ │ ├── Inputs │ │ │ ├── Foo.swift │ │ │ ├── Foo2.swift │ │ │ ├── Foo3.swift │ │ │ ├── group.json │ │ │ ├── header.h │ │ │ ├── header2.h │ │ │ ├── header3.h │ │ │ ├── mock-sdk │ │ │ │ └── APINotesTests.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── APINotesTests.apinotes │ │ │ │ │ ├── APINotesTests.h │ │ │ │ │ ├── Decls.h │ │ │ │ │ └── Foo.h │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── module.modulemap │ │ │ ├── swift_mod.swift │ │ │ ├── swift_mod_syn.swift │ │ │ └── uses-cxx20.h │ │ ├── error_clang_module.swift │ │ ├── error_swift_module.swift │ │ ├── gen_clang_cxx_module.swift │ │ ├── gen_clang_cxx_module_with_cxx20.swift │ │ ├── gen_clang_cxx_module_with_unavailable.swift │ │ ├── gen_clang_libcxx_sdk_module.swift │ │ ├── gen_clang_mixed_lang_fmwk_cxx_module.swift │ │ ├── gen_clang_module.swift │ │ ├── gen_clang_module.swift.apinotes_swift3.response │ │ ├── gen_clang_module.swift.apinotes_swift4.response │ │ ├── gen_clang_module.swift.helper.explicit.response │ │ ├── gen_clang_module.swift.helper.response │ │ ├── gen_clang_module.swift.response │ │ ├── gen_clang_module.swift.sub.response │ │ ├── gen_custom_attributes.swift │ │ ├── gen_header.swift │ │ ├── gen_header.swift.header2.response │ │ ├── gen_header.swift.header3.response │ │ ├── gen_header.swift.response │ │ ├── gen_header_swift_args.swift │ │ ├── gen_mixed_module.swift │ │ ├── gen_module_group.swift │ │ ├── gen_objc_concurrency.swift │ │ ├── gen_public_module_name.swift │ │ ├── gen_stdlib.swift │ │ ├── gen_swift_module.swift │ │ ├── gen_swift_module.swift.from_swiftinterface.response │ │ ├── gen_swift_module.swift.response │ │ ├── gen_swift_module_cross_import.swift │ │ ├── gen_swift_module_cross_import.swift.A.response │ │ ├── gen_swift_module_cross_import.swift.Other.response │ │ ├── gen_swift_module_cross_import_common.swift │ │ ├── gen_swift_module_cross_import_common.swift.ClangFramework.response │ │ ├── gen_swift_module_cross_import_common.swift.OverlaidClangFramework.response │ │ ├── gen_swift_module_cross_import_common.swift.SwiftFramework.response │ │ ├── gen_swift_source.swift │ │ ├── gen_swift_source.swift.response │ │ ├── gen_swift_type.swift │ │ ├── gen_swiftonly_systemmodule.swift │ │ ├── gen_swiftonly_systemmodule.swift.response │ │ └── gen_vision_availability.swift │ ├── Macros │ │ ├── clang-overload-cursor-info.swift │ │ ├── diags.swift │ │ ├── diags.swift.response │ │ ├── expansion_decl_cursor_info.swift │ │ ├── macro_across_modules.swift │ │ ├── macro_basic.swift │ │ ├── macro_formatting.swift │ │ ├── macro_option_set.swift │ │ ├── macro_semantic_token.swift │ │ ├── syntactic_expansion.swift │ │ └── syntactic_expansion.swift.expected │ ├── MarkupXML │ │ ├── Input │ │ │ └── DocComment1.md │ │ ├── basic.swift │ │ └── basic.swift.DocComment1.response │ ├── Misc │ │ ├── Inputs │ │ │ ├── 10bytes.swift │ │ │ ├── custom-resource-stdlib.swift │ │ │ ├── errors-a.swift │ │ │ ├── errors-b.swift │ │ │ ├── errors-c.swift │ │ │ ├── main.swift │ │ │ ├── mymod │ │ │ │ ├── module.modulemap │ │ │ │ └── mymod.h │ │ │ └── version_request.json │ │ ├── cancellation.swift │ │ ├── compiler_version.swift │ │ ├── edit_range.swift │ │ ├── embedded_no_wmo.swift │ │ ├── handle-filelist-driver-args.swift │ │ ├── handle-filelists.swift │ │ ├── ignore_index_store_flag.swift │ │ ├── ignored-flags-sanitizers.swift │ │ ├── ignored-flags.swift │ │ ├── importing_objc_forward_declarations.swift │ │ ├── load-module-with-errors.swift │ │ ├── match-module-cache-with-compiler.swift │ │ ├── mixed_completion_sequence.swift │ │ ├── mixed_completion_sequence.swift.response │ │ ├── no-crash-reopen-with-different-compiler-args.swift │ │ ├── no-driver-outputs.swift │ │ ├── parser-cutoff.swift │ │ ├── print-response-as-json.swift │ │ ├── print-response-as-json.swift.response │ │ ├── print-response.swift │ │ ├── protocol_version.swift │ │ ├── rdar123405070.swift │ │ ├── rdar148130166.swift │ │ ├── rdar64304839.swift │ │ ├── rdar98880399.swift │ │ ├── repeat-request.swift │ │ ├── resource-dir-handling.swift │ │ ├── stats.swift │ │ ├── strange_interpolation.swift │ │ ├── time-request.swift │ │ ├── usage.swift │ │ └── wrong_arguments.swift │ ├── Mixed │ │ ├── Inputs │ │ │ ├── Mixed.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Mixed.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── header.h │ │ ├── complete_twice_bridging_header.swift │ │ ├── cursor_mixed.swift │ │ └── cursor_mixed_header.swift │ ├── NameTranslation │ │ ├── Inputs │ │ │ └── mock-sdk │ │ │ │ └── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ └── FooSub.framework │ │ │ │ │ └── Headers │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── basic.swift │ │ ├── enum.swift │ │ ├── init.swift │ │ └── swiftnames.swift │ ├── RangeInfo │ │ └── basic.swift │ ├── Refactoring │ │ ├── Inputs │ │ │ └── mock-sdk │ │ │ │ └── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ └── FooSub.framework │ │ │ │ │ └── Headers │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ ├── basic.swift │ │ ├── find-rename-ranges.swift │ │ ├── find-rename-ranges │ │ │ ├── bar.expected │ │ │ ├── bar.in.json │ │ │ ├── bar_add_param.expected │ │ │ ├── bar_add_param.in.json │ │ │ ├── bar_drop_param.expected │ │ │ ├── bar_drop_param.in.json │ │ │ ├── comment.expected │ │ │ ├── comment.in.json │ │ │ ├── empty.json │ │ │ ├── enum_case.expected │ │ │ ├── enum_case.in.json │ │ │ ├── foo.in.json │ │ │ ├── foo_arity1.expected │ │ │ ├── foo_remove.expected │ │ │ ├── foo_remove.in.json │ │ │ ├── init.expected │ │ │ ├── init.in.json │ │ │ ├── invalid.in.json │ │ │ ├── keywordbase.expected │ │ │ ├── keywordbase.in.json │ │ │ ├── rename-P.expected │ │ │ ├── rename-P.in.json │ │ │ ├── rename-layer.expected │ │ │ ├── rename-layer.in.json │ │ │ ├── rename-memberwise.expected │ │ │ ├── rename-memberwise.in.json │ │ │ ├── x.expected │ │ │ ├── x.in.json │ │ │ ├── z.expected │ │ │ └── z.in.json │ │ ├── find_rename_ranges_enum_case_with_label.swift │ │ ├── find_rename_ranges_enum_case_without_label.swift │ │ ├── find_rename_ranges_enum_case_without_underscore_as_first_name_label.swift │ │ ├── ordering.swift │ │ ├── ordering │ │ │ ├── ordering.expected │ │ │ └── ordering.in.json │ │ ├── rdar155549979.swift │ │ ├── rename-across-modules.swift │ │ ├── rename-mismatch.swift │ │ ├── rename-objc.swift │ │ ├── rename-with-location-directive.swift │ │ ├── semantic-refactoring │ │ │ ├── expand-default.swift │ │ │ ├── expand-default.swift.expected │ │ │ ├── extract-func-default.swift │ │ │ ├── extract-func-default.swift.expected │ │ │ ├── extract-func-with-args.swift │ │ │ ├── extract-func-with-args.swift.expected │ │ │ ├── extract-func.swift │ │ │ ├── extract-func.swift.expected │ │ │ ├── extract-repeated-expression.swift │ │ │ ├── extract-repeated-expression.swift.expected │ │ │ ├── fill-stub.swift │ │ │ ├── fill-stub.swift.expected │ │ │ ├── line-col-conversion.swift │ │ │ ├── local-rename-lazy.swift.expected │ │ │ ├── local-rename-ranges.swift.expected │ │ │ ├── local-rename.swift │ │ │ └── localize-string.swift │ │ └── shorthand_shadow.swift │ ├── RelatedIdents │ │ ├── implicit_vis.swift │ │ ├── invalid_loc.swift │ │ ├── multiple_occurrences_on_same_line.swift │ │ ├── operator.swift │ │ ├── pound_if.swift │ │ ├── related_idents.swift │ │ ├── run-parser-with-large-stack.swift │ │ ├── self.swift │ │ ├── system_symbol.swift │ │ └── two_invalid_decls_with_same_base_name.swift │ ├── Sema │ │ ├── Inputs │ │ │ ├── empty.swift │ │ │ └── top_level.swift │ │ ├── availability_define.swift │ │ ├── edit_nowait.swift │ │ ├── educational_note_diags.swift │ │ ├── enum-toraw │ │ │ ├── Inputs │ │ │ │ ├── t1.swift │ │ │ │ └── t2.swift │ │ │ ├── enum-toraw.swift │ │ │ └── enum-toraw.swift.response │ │ ├── injected_vfs.swift │ │ ├── injected_vfs_after_edit.swift │ │ ├── injected_vfs_sourcetext.swift │ │ ├── issue62848.swift │ │ ├── main.swift │ │ ├── nil_annotation_in_case.swift │ │ ├── objc_attr_without_import.swift │ │ ├── oslog.swift │ │ ├── placeholders.swift │ │ ├── placeholders.swift.placeholders.response │ │ ├── sema_big_array.swift │ │ ├── sema_big_array.swift.response │ │ ├── sema_build_session.swift │ │ ├── sema_config.swift │ │ ├── sema_config.swift.false.response │ │ ├── sema_config.swift.true.response │ │ ├── sema_diag_after_edit-2.swift │ │ ├── sema_diag_after_edit.swift │ │ ├── sema_diag_after_edit_fixit.swift │ │ ├── sema_dynamic_keypath.swift │ │ ├── sema_dynamic_keypath.swift.response │ │ ├── sema_edits.swift │ │ ├── sema_edits.swift.response │ │ ├── sema_forbid_typecheck.swift │ │ ├── sema_forbid_typecheck.swift.response │ │ ├── sema_lazy_var.swift │ │ ├── sema_lazy_var.swift.response │ │ ├── sema_module.swift │ │ ├── sema_playground.swift │ │ ├── sema_playground.swift.response │ │ ├── sema_protocol_stubs.swift │ │ ├── sema_regex.swift │ │ ├── sema_symlink.swift │ │ ├── sema_symlink.swift.response │ │ ├── sema_unavailable.swift │ │ └── sil_diags.swift │ ├── SemanticTokens │ │ ├── raw_identifiers.swift │ │ └── semantic_tokens.swift │ ├── Session │ │ └── info_after_open.swift │ ├── SyntaxMapData │ │ ├── Inputs │ │ │ ├── parse_error.swift │ │ │ ├── syntaxmap-edit-block-comment.swift │ │ │ ├── syntaxmap-edit-chained-comment.swift │ │ │ ├── syntaxmap-edit-del.swift │ │ │ ├── syntaxmap-edit-disjoint-effect.swift │ │ │ ├── syntaxmap-edit-multiline-string.swift │ │ │ ├── syntaxmap-edit-nested-token.swift │ │ │ ├── syntaxmap-edit-remove.swift │ │ │ ├── syntaxmap-edit.swift │ │ │ ├── syntaxmap-multiple-edits.swift │ │ │ ├── syntaxmap-partial-delete.swift │ │ │ └── syntaxmap.swift │ │ ├── await.swift │ │ ├── await.swift.response │ │ ├── consuming_borrowing.swift │ │ ├── diags.swift │ │ ├── diags.swift.response │ │ ├── syntaxmap-edit-block-comment.swift │ │ ├── syntaxmap-edit-chained-comment.swift │ │ ├── syntaxmap-edit-del.swift │ │ ├── syntaxmap-edit-del.swift.response │ │ ├── syntaxmap-edit-del.swift.response2 │ │ ├── syntaxmap-edit-disjoint-effect.swift │ │ ├── syntaxmap-edit-multiline-string.swift │ │ ├── syntaxmap-edit-nested-token.swift │ │ ├── syntaxmap-edit-remove.swift │ │ ├── syntaxmap-edit.swift │ │ ├── syntaxmap-edit.swift.libsyntax.response │ │ ├── syntaxmap-edit.swift.response │ │ ├── syntaxmap-multiple-edits.swift │ │ ├── syntaxmap-object-literals.swift │ │ ├── syntaxmap-object-literals.swift.response │ │ ├── syntaxmap-partial-delete.swift │ │ ├── syntaxmap-pound-keyword.swift │ │ ├── syntaxmap-pound-keyword.swift.response │ │ ├── syntaxmap.swift │ │ └── syntaxmap.swift.response │ ├── TypeContextInfo │ │ ├── typecontext_basic.swift │ │ ├── typecontext_basic.swift.response │ │ ├── typecontext_generics.swift │ │ ├── typecontext_generics.swift.response.1 │ │ ├── typecontext_generics.swift.response.2 │ │ ├── typecontext_generics.swift.response.3 │ │ ├── typecontext_generics.swift.response.4 │ │ ├── typecontext_generics.swift.response.5 │ │ ├── typecontext_generics.swift.response.6 │ │ ├── typecontext_generics.swift.response.7 │ │ └── typecontext_in_closure.swift │ ├── VariableType │ │ ├── basic.swift │ │ ├── case.swift │ │ ├── error.swift │ │ ├── if-let.swift │ │ ├── inout.swift │ │ ├── params.swift │ │ ├── ranged.swift │ │ └── unnamed.swift │ ├── lit.local.cfg │ └── test-change-modulemap-of-system-module.swift ├── StringProcessing │ ├── Frontend │ │ ├── disable-flag.swift │ │ └── enable-flag.swift │ ├── Parse │ │ ├── forward-slash-regex-disabled.swift │ │ ├── forward-slash-regex-skipping-allowed.swift │ │ ├── forward-slash-regex-skipping-invalid.swift │ │ ├── forward-slash-regex-skipping.swift │ │ ├── forward-slash-regex.swift │ │ ├── prefix-slash.swift │ │ ├── regex.swift │ │ ├── regex_parse_complete.swift │ │ ├── regex_parse_end_of_buffer.swift │ │ └── regex_parse_error.swift │ ├── Runtime │ │ └── regex_basic.swift │ ├── SILGen │ │ └── regex_literal_silgen.swift │ ├── Sema │ │ ├── Inputs │ │ │ ├── ShadowsStringProcessing.swift │ │ │ └── dummy.swift │ │ ├── regex_builder_already_imported.swift │ │ ├── regex_builder_fix_import_after_imports.swift │ │ ├── regex_builder_fix_import_decl.swift │ │ ├── regex_builder_fix_import_top_level.swift │ │ ├── regex_builder_unavailable.swift │ │ ├── regex_literal_availability.swift │ │ ├── regex_literal_diagnostics.swift │ │ ├── regex_literal_type_inference.swift │ │ ├── string_processing_import.swift │ │ └── string_processing_module_shadowing.swift │ └── lit.local.cfg ├── SymbolGraph │ ├── ClangImporter │ │ ├── BridgingHeader.swift │ │ ├── ClangExtensions.swift │ │ ├── EmitWhileBuilding.swift │ │ ├── ErrorEnum.swift │ │ ├── ExportedImport.swift │ │ ├── FactoryInit.swift │ │ ├── ForeignExtensions.swift │ │ ├── HeaderNameCollision.swift │ │ ├── ImportForwardDeclarationsTest.swift │ │ ├── Inputs │ │ │ ├── EmitWhileBuilding │ │ │ │ ├── EmitWhileBuilding.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── EmitWhileBuilding.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── EmitWhileBuilding.swiftmodule │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── ObjcProperty │ │ │ │ └── Extra.swift │ │ │ ├── ExportedImport │ │ │ │ ├── A.swift │ │ │ │ └── ObjcProperty.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── ObjcProperty.apinotes │ │ │ │ │ └── ObjcProperty.h │ │ │ │ │ ├── Modules │ │ │ │ │ ├── ObjcProperty.swiftmodule │ │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── ObjcProperty │ │ │ ├── FactoryInit │ │ │ │ └── FactoryInit.framework │ │ │ │ │ ├── FactoryInit │ │ │ │ │ ├── Headers │ │ │ │ │ └── FactoryInit.h │ │ │ │ │ └── Modules │ │ │ │ │ ├── FactoryInit.swiftmodule │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ ├── ForwardDeclarations │ │ │ │ └── ForwardDeclarations.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── ForwardDeclaredInterfaceFoo.h │ │ │ │ │ └── Modules │ │ │ │ │ ├── ForwardDeclarations.swiftmodule │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ ├── ObjcProperty │ │ │ │ └── ObjcProperty.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── ObjcProperty.h │ │ │ │ │ ├── Modules │ │ │ │ │ ├── ObjcProperty.swiftmodule │ │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── ObjcProperty │ │ │ ├── ObjcSynthesis │ │ │ │ └── ObjcSynthesis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── ObjcSynthesis.h │ │ │ │ │ ├── Modules │ │ │ │ │ ├── ObjcSynthesis.swiftmodule │ │ │ │ │ │ └── .keep │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── ObjcSynthesis │ │ │ └── Submodules │ │ │ │ ├── Mixed.h │ │ │ │ ├── Submodule.h │ │ │ │ └── module.modulemap │ │ ├── MinimumAccessLevel.swift │ │ ├── ObjCInitializer.swift │ │ ├── ObjcProperty.swift │ │ ├── ObjcSynthesis.swift │ │ ├── PartialSubmoduleExport.swift │ │ ├── ProtocolInitializer.swift │ │ ├── Submodules.swift │ │ ├── SubmodulesNoExport.swift │ │ ├── SwiftAttrExtension.swift │ │ ├── SwiftNameExtension.swift │ │ ├── TypedefStructUnderscore.swift │ │ ├── UmbrellaFramework.swift │ │ ├── UmbrellaNoExport.swift │ │ └── UmbrellaSubmodules.swift │ ├── EmitWhileBuilding.swift │ ├── EmptyExtension.swift │ ├── Inputs │ │ └── EmitWhileBuilding.output.json │ ├── Module │ │ ├── BasicExtension.swift │ │ ├── CrossImport.swift │ │ ├── DocAttrExportedImport.swift │ │ ├── DuplicateExportedImport.swift │ │ ├── ExportedImport.swift │ │ ├── ExportedImportExtensions.swift │ │ ├── FailedLoad.swift │ │ ├── Inputs │ │ │ ├── CrossImport │ │ │ │ ├── A.swift │ │ │ │ ├── A.swiftcrossimport │ │ │ │ │ └── B.swiftoverlay │ │ │ │ └── B.swift │ │ │ ├── DuplicateExportedImport │ │ │ │ └── A.swift │ │ │ ├── ExportedImport │ │ │ │ ├── A.swift │ │ │ │ └── B.swift │ │ │ ├── ExportedImportExtensions │ │ │ │ ├── A.swift │ │ │ │ └── B.swift │ │ │ ├── FailedLoad │ │ │ │ └── A.swift │ │ │ ├── NestedExtensions │ │ │ │ ├── A.swift │ │ │ │ ├── B.swift │ │ │ │ └── C.swift │ │ │ ├── QualifiedImportWithExtensions │ │ │ │ └── A.swift │ │ │ └── ThirdOrder │ │ │ │ ├── A.swift │ │ │ │ └── B.swift │ │ ├── Module.swift │ │ ├── NestedExportedImport.swift │ │ ├── NestedExtensions.swift │ │ ├── NoSourceInfo.swift │ │ ├── QualifiedImportWithExtensions.swift │ │ └── ThirdOrder.swift │ ├── Relationships │ │ ├── ConformsTo │ │ │ ├── Basic.swift │ │ │ ├── FilterImplicitlyPrivate.swift │ │ │ ├── Indirect.swift │ │ │ ├── Inputs │ │ │ │ ├── ExternalIndirect.swift │ │ │ │ └── ExternalUnderscored.swift │ │ │ └── Unavailable.swift │ │ ├── DefaultImplementationOf │ │ │ ├── Basic.swift │ │ │ ├── External.swift │ │ │ ├── Indirect.swift │ │ │ ├── Inputs │ │ │ │ └── RemoteP.swift │ │ │ └── Remote.swift │ │ ├── InheritsFrom │ │ │ ├── Basic.swift │ │ │ ├── ExtensionBlockSymbol.swift │ │ │ └── Inputs │ │ │ │ └── Base.swift │ │ ├── MemberOf │ │ │ ├── Basic.swift │ │ │ ├── Inputs │ │ │ │ └── ExternalTypealias.swift │ │ │ ├── ProtocolMemberWithoutRequirement.swift │ │ │ ├── Typealias.swift │ │ │ └── UnavailableExtension.swift │ │ ├── OptionalRequirementOf.swift │ │ ├── Overrides.swift │ │ ├── RequirementOf.swift │ │ ├── Synthesized │ │ │ ├── ConditionalConformance.swift │ │ │ ├── DefaultImplementation.swift │ │ │ ├── EnablingDeclaration.swift │ │ │ ├── HiddenTypeAlias.swift │ │ │ ├── HiddenTypeAliasRecursive.swift │ │ │ ├── InheritedDocs.swift │ │ │ ├── Inputs │ │ │ │ └── RemoteP.swift │ │ │ ├── PickBestCandidate.swift │ │ │ ├── RemoteInheritedDocs.swift │ │ │ └── SuperclassImplementation.swift │ │ └── TargetFallback.swift │ ├── Something │ │ ├── Inputs │ │ │ └── SomeProtocol.swift │ │ └── Something.swift │ ├── Symbols │ │ ├── AccessLevelFilter │ │ │ ├── IncludeInternal.swift │ │ │ ├── Inputs │ │ │ │ └── Internal.swift │ │ │ └── PublicDefault.swift │ │ ├── AccessLevels.swift │ │ ├── DocComment │ │ │ ├── ASCIIArt.swift │ │ │ ├── BatchMode.swift │ │ │ ├── Block.swift │ │ │ ├── IndentedBlock.swift │ │ │ ├── MultiSingleLine.swift │ │ │ ├── NoDocComment.swift │ │ │ └── SingleLine.swift │ │ ├── DocumentationAttr.swift │ │ ├── DocumentationMetadata.swift │ │ ├── Identifier.swift │ │ ├── Implicit.swift │ │ ├── Inputs │ │ │ └── ExternalNames.swift │ │ ├── Kinds │ │ │ ├── Actor.swift │ │ │ ├── AssociatedType.swift │ │ │ ├── Class.swift │ │ │ ├── DistributedActor.swift │ │ │ ├── Enum.swift │ │ │ ├── EnumCase.swift │ │ │ ├── Function.swift │ │ │ ├── GlobalVariable.swift │ │ │ ├── Init.swift │ │ │ ├── InstanceMethod.swift │ │ │ ├── InstanceProperty.swift │ │ │ ├── InstanceSubscript.swift │ │ │ ├── Operator.swift │ │ │ ├── Protocol.swift │ │ │ ├── Struct.swift │ │ │ ├── TypeAlias.swift │ │ │ ├── TypeMethod.swift │ │ │ ├── TypeProperty.swift │ │ │ └── TypeSubscript.swift │ │ ├── Macro.swift │ │ ├── Mixins │ │ │ ├── Availability │ │ │ │ ├── AvailabilityFilter.swift │ │ │ │ ├── Basic.swift │ │ │ │ ├── Duplicated │ │ │ │ │ ├── DeprecatedFilled.swift │ │ │ │ │ ├── DeprecatedReplaced.swift │ │ │ │ │ ├── IntroducedFilled.swift │ │ │ │ │ ├── IntroducedReplaced.swift │ │ │ │ │ ├── MessageLastWins.swift │ │ │ │ │ ├── ObsoletedFilled.swift │ │ │ │ │ └── ObsoletedReplaced.swift │ │ │ │ ├── Inherited │ │ │ │ │ ├── DeprecatedFilled.swift │ │ │ │ │ ├── DeprecatedReplaced.swift │ │ │ │ │ ├── IntroducedFilled.swift │ │ │ │ │ ├── IntroducedReplaced.swift │ │ │ │ │ ├── MessageFilled.swift │ │ │ │ │ ├── MessageReplaced.swift │ │ │ │ │ ├── ObsoletedFilled.swift │ │ │ │ │ ├── ObsoletedReplaced.swift │ │ │ │ │ ├── RenamedFilled.swift │ │ │ │ │ ├── RenamedNoVersion.swift │ │ │ │ │ ├── RenamedReplaced.swift │ │ │ │ │ ├── UnconditionallyDeprecated.swift │ │ │ │ │ └── UnconditionallyUnavailable.swift │ │ │ │ ├── PlatformAgnostic.swift │ │ │ │ ├── UnconditionallyDeprecated.swift │ │ │ │ └── UnconditionallyUnavailable.swift │ │ │ ├── DeclarationFragments │ │ │ │ ├── Full │ │ │ │ │ ├── CustomAttr.swift │ │ │ │ │ ├── Function.swift │ │ │ │ │ ├── Inputs │ │ │ │ │ │ └── stringify_macro.swift │ │ │ │ │ ├── Isolated.swift │ │ │ │ │ ├── Macros.swift │ │ │ │ │ ├── MultipleAttributes.swift │ │ │ │ │ ├── Never.swift │ │ │ │ │ ├── NominalTypes.swift │ │ │ │ │ ├── PrimaryAssocType.swift │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── ComputedProperties.swift │ │ │ │ │ │ ├── ProtocolRequirements.swift │ │ │ │ │ │ └── Subscripts.swift │ │ │ │ │ ├── SomeProtocol.swift │ │ │ │ │ └── TypeRepr.swift │ │ │ │ ├── Navigator │ │ │ │ │ └── Navigator.swift │ │ │ │ ├── SelfNotLinked.swift │ │ │ │ ├── Subheading │ │ │ │ │ ├── Function.swift │ │ │ │ │ └── NominalTypes.swift │ │ │ │ └── UnderscoreNotLinked.swift │ │ │ ├── DocComment │ │ │ │ ├── BlockStyle.swift │ │ │ │ ├── Extension.swift │ │ │ │ ├── LineStyle.swift │ │ │ │ └── SourceModule.swift │ │ │ ├── Extension │ │ │ │ ├── GetFromExtension.swift │ │ │ │ └── IgnoreInherited.swift │ │ │ ├── FunctionSignature.swift │ │ │ ├── Generics │ │ │ │ ├── Arguments.swift │ │ │ │ ├── ConstraintsOnLocalContext.swift │ │ │ │ ├── ConstraintsOnOuterContext.swift │ │ │ │ ├── Self.swift │ │ │ │ └── WhereClause.swift │ │ │ ├── Inputs │ │ │ │ └── SPIP.swift │ │ │ ├── Location.swift │ │ │ └── SPI.swift │ │ ├── Names.swift │ │ ├── OpaqueParams.swift │ │ ├── OriginallyDefinedInExtension.swift │ │ ├── PathComponents.swift │ │ ├── ProtocolClassInheritance.swift │ │ ├── SkipProtocolImplementations.swift │ │ ├── SkipsPublicUnderscore.swift │ │ ├── SkipsSPI.swift │ │ ├── Unavailable.swift │ │ ├── UnavailableOnAllPlatforms.swift │ │ └── UnderscoredProtocols.swift │ └── verbose.swift ├── SynthesizeInterfaceTool │ ├── Inputs │ │ ├── ExplicitSubmodule.h │ │ ├── ImplicitSubmodule.h │ │ ├── TopLevelModule.h │ │ ├── m1.h │ │ ├── mcxx.h │ │ └── module.modulemap │ ├── fully-qualified-types.swift │ ├── include-submodules.swift │ ├── synthesize-interface-cxx.swift │ ├── synthesize-interface-pcm.swift │ ├── synthesize-interface-swift.swift │ └── synthesize-interface.swift ├── TBD │ ├── Inputs │ │ ├── api_grab_bag.swift │ │ ├── custom-error.h │ │ ├── extension_types.swift │ │ ├── install-name-map-toasterkit.json │ │ ├── install-name-map.json │ │ ├── linker-directive.swift │ │ ├── module.modulemap │ │ ├── multi-file2.swift │ │ ├── objc_class_header.h │ │ └── subclass_super.swift │ ├── abi-version.swift │ ├── all-in-one.swift │ ├── app-extension.swift │ ├── arm64e-arch.swift │ ├── async-function-pointer.swift │ ├── class.swift │ ├── class_objc.swift.gyb │ ├── coroutine_accessors.swift │ ├── custom_objc_error.swift │ ├── distributed.swift │ ├── distributed_library_evolution.swift │ ├── dylib-version-truncation.swift │ ├── dylib-version.swift │ ├── embed-symbol.swift │ ├── emit-tbd-from-driver.swift │ ├── enum.swift │ ├── enum_case_protocol_witness.swift │ ├── extension.swift.gyb │ ├── function.swift │ ├── global.swift │ ├── implied_objc_symbols.swift │ ├── lazy-typecheck-errors.swift │ ├── lazy-typecheck.swift │ ├── linker-directives-ld-previous-ios.swift │ ├── linker-directives-ld-previous-macos.swift │ ├── linker-directives.swift │ ├── linking-with-tbd.swift │ ├── main.swift │ ├── move_to_extension.swift │ ├── move_to_extension_comove.swift │ ├── multi-file.swift │ ├── multimodule-implied-objc.swift │ ├── objc-entry-point.swift │ ├── omit-witness-table.swift │ ├── opaque_result_type.swift │ ├── package_symbol_with_default_arg.swift │ ├── private_import.swift │ ├── property_wrapper.swift │ ├── protocol.swift │ ├── rdar80485869.swift │ ├── rdar82045176.swift │ ├── resolve_imports.swift │ ├── sib-module.swift │ ├── specialization.swift │ ├── specialize_attr.swift │ ├── struct.swift │ ├── subclass.swift.gyb │ ├── subscript.swift │ └── zippered.swift ├── TypeCoercion │ ├── constructor_return.swift │ ├── constructor_return_type.swift │ ├── integer_literals.swift │ ├── interpolation.swift │ ├── overload_member.swift │ ├── overload_noncall.swift │ ├── overload_parens.swift │ ├── protocols.swift │ ├── protocols_library.swift │ ├── return_coercion.swift │ ├── subtyping.swift │ └── unknowable.swift ├── TypeDecoder │ ├── builtins.swift │ ├── clashing_abi_name.swift │ ├── concurrency.swift │ ├── constrained_existentials.swift │ ├── different_abi_name.swift │ ├── dynamic_self.swift │ ├── existentials.swift │ ├── extensions.swift │ ├── foreign_types.swift │ ├── generic_local_types.swift │ ├── generic_typealias.swift │ ├── generics.swift │ ├── invalid_types.swift │ ├── local_types.swift │ ├── lowered_function_types.swift │ ├── lowered_metatypes.swift │ ├── nominal_types.swift │ ├── objc_classes.swift │ ├── opaque_return_type.swift │ ├── reference_storage.swift │ ├── structural_types.swift │ ├── sugar.swift │ ├── typealias.swift │ └── variadic_nominal_types.swift ├── TypeRoundTrip │ ├── Inputs │ │ ├── RoundTrip │ │ │ ├── RoundTrip.cpp │ │ │ └── RoundTrip.swift │ │ └── testcases │ │ │ ├── builtins.swift │ │ │ ├── concurrency.swift │ │ │ ├── existentials.swift │ │ │ ├── extensions.swift │ │ │ ├── function_types.swift │ │ │ ├── generics.swift │ │ │ ├── nominal_types.swift │ │ │ ├── objc_classes.swift │ │ │ ├── opaque_return_type.swift │ │ │ ├── raw_identifiers.swift │ │ │ ├── reference_storage.swift │ │ │ ├── simd.swift │ │ │ ├── structural_types.swift │ │ │ └── typealiases.swift │ └── round-trip.swift ├── Unit │ ├── lit.cfg │ └── lit.site.cfg.in ├── Unsafe │ ├── Inputs │ │ ├── module.modulemap │ │ ├── safe_swift_decls.swift │ │ ├── unsafe_decls.h │ │ └── unsafe_swift_decls.swift │ ├── codable_synthesis.swift │ ├── hashable_synthesis.swift │ ├── interface_printing.swift │ ├── migrate.swift │ ├── module-interface.swift │ ├── module-trace.swift │ ├── preconcurrency_silence.swift │ ├── safe.swift │ ├── safe_argument_suppression.swift │ ├── unsafe-suppression.swift │ ├── unsafe.swift │ ├── unsafe_c_imports.swift │ ├── unsafe_command_line.swift │ ├── unsafe_concurrency.swift │ ├── unsafe_feature.swift │ ├── unsafe_imports.swift │ ├── unsafe_in_unsafe.swift │ ├── unsafe_nonstrict.swift │ ├── unsafe_stdlib.swift │ └── unsafe_withoutactuallyescaping.swift ├── Volatile │ ├── volatile-exec.swift │ ├── volatile-feature-flag.swift │ ├── volatile-ir.swift │ ├── volatile-null.swift │ └── volatile-repeat-loads.swift ├── abi │ ├── Inputs │ │ └── macOS │ │ │ ├── arm64 │ │ │ ├── builtin_float │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── concurrency │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── distributed │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── observation │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── regex-builder │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── stdlib │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ ├── string-processing │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ └── synchronization │ │ │ │ ├── baseline │ │ │ │ └── baseline-asserts │ │ │ └── x86_64 │ │ │ ├── builtin_float │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── concurrency │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── distributed │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── observation │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── regex-builder │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── stdlib │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ ├── string-processing │ │ │ ├── baseline │ │ │ └── baseline-asserts │ │ │ └── synchronization │ │ │ ├── baseline │ │ │ └── baseline-asserts │ └── macOS │ │ ├── arm64 │ │ ├── builtin_float-asserts.swift │ │ ├── builtin_float.swift │ │ ├── concurrency-asserts.swift │ │ ├── concurrency.swift │ │ ├── distributed-asserts.swift │ │ ├── distributed.swift │ │ ├── observation-asserts.swift │ │ ├── observation.swift │ │ ├── regex-builder-asserts.swift │ │ ├── regex-builder.swift │ │ ├── stdlib-asserts.swift │ │ ├── stdlib.swift │ │ ├── string-processing-asserts.swift │ │ ├── string-processing.swift │ │ ├── synchronization-asserts.swift │ │ └── synchronization.swift │ │ └── x86_64 │ │ ├── builtin_float-asserts.swift │ │ ├── builtin_float.swift │ │ ├── concurrency-asserts.swift │ │ ├── concurrency.swift │ │ ├── distributed-asserts.swift │ │ ├── distributed.swift │ │ ├── observation-asserts.swift │ │ ├── observation.swift │ │ ├── regex-builder-asserts.swift │ │ ├── regex-builder.swift │ │ ├── stdlib-asserts.swift │ │ ├── stdlib.swift │ │ ├── string-processing-asserts.swift │ │ ├── string-processing.swift │ │ ├── synchronization-asserts.swift │ │ └── synchronization.swift ├── api-digester │ ├── Inputs │ │ ├── APINotesLeft │ │ │ ├── APINotesTest.apinotes │ │ │ ├── APINotesTest.h │ │ │ └── module.modulemap │ │ ├── APINotesRight │ │ │ ├── APINotesTest.apinotes │ │ │ ├── APINotesTest.h │ │ │ └── module.modulemap │ │ ├── ClangCake │ │ │ ├── Cake.apinotes │ │ │ ├── Cake.h │ │ │ └── module.modulemap │ │ ├── ConstExtraction │ │ │ └── SimpleReferences.swift │ │ ├── Foo-new-version │ │ │ ├── foo.h │ │ │ └── module.modulemap │ │ ├── Foo-prot-allowlist.txt │ │ ├── Foo │ │ │ ├── foo.h │ │ │ └── module.modulemap │ │ ├── ImportedIUO │ │ │ ├── imported_iuo.h │ │ │ └── module.modulemap │ │ ├── cake.swift │ │ ├── cake_baseline │ │ │ ├── cake.swift │ │ │ └── color.swift │ │ ├── cake_current │ │ │ ├── cake.swift │ │ │ └── color.swift │ │ ├── macro-gen-left.swift │ │ ├── macro-gen-right.swift │ │ ├── mock-sdk-baseline.sdk │ │ │ └── System │ │ │ │ └── Library │ │ │ │ └── Frameworks │ │ │ │ ├── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── SwiftFoo.framework │ │ │ │ └── Modules │ │ │ │ └── SwiftFoo.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ ├── mock-sdk-modules.txt │ │ ├── mock-sdk.sdk │ │ │ └── System │ │ │ │ └── Library │ │ │ │ └── Frameworks │ │ │ │ ├── Foo.framework │ │ │ │ ├── Frameworks │ │ │ │ │ └── FooSub.framework │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── FooSub.h │ │ │ │ ├── Headers │ │ │ │ │ └── Foo.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── SwiftFoo.framework │ │ │ │ └── Modules │ │ │ │ └── SwiftFoo.swiftmodule │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ ├── stability-stdlib-abi-without-asserts-arm64.txt │ │ └── stability-stdlib-abi-without-asserts-x86_64.txt │ ├── Outputs │ │ ├── Cake-abi.txt │ │ ├── Cake-binary-vs-interface.txt │ │ ├── Cake.txt │ │ ├── Foo-diff.txt │ │ ├── apinotes-diags-3-4.txt │ │ ├── apinotes-diags.txt │ │ ├── apinotes-migrator-gen-revert.json │ │ ├── apinotes-migrator-gen.json │ │ ├── cake-abi.json │ │ ├── cake.json │ │ ├── clang-module-dump.txt │ │ ├── color.txt │ │ ├── color_vs_empty.txt │ │ ├── empty-baseline.json │ │ ├── macro-gen.def │ │ ├── macro-gen.json │ │ ├── mock-sdk-api.txt │ │ ├── stability-stdlib-source-arm64.swift.expected │ │ ├── stability-stdlib-source-base.swift.expected │ │ └── stability-stdlib-source-x86_64.swift.expected │ ├── apinotes-diags.swift │ ├── apinotes-migrator-gen.swift │ ├── breakage-allowlist.swift │ ├── clang-module-dump.swift │ ├── compare-clang-dump.swift │ ├── compare-dump-abi-parsable-interface.swift │ ├── compare-dump-abi.swift │ ├── compare-dump-binary-vs-interface.swift │ ├── compare-dump-parsable-interface.swift │ ├── compare-dump.swift │ ├── compare-two-sdks.swift │ ├── const_values.swift │ ├── const_values_simple_references.swift │ ├── deserialize-diff-items.swift │ ├── diagnostics.json │ ├── diagnostics.swift │ ├── diff-demangled-name.swift │ ├── dump-empty-baseline.swift │ ├── dump-module.swift │ ├── empty-abi-descriptor.swift │ ├── ignore-spi-by-given-group-name.swift │ ├── import-module-with-package-name.swift │ ├── imported_iuo.test │ ├── internal-extension.swift │ ├── lit.local.cfg │ ├── macro-gen-json.swift │ ├── macro-gen.swift │ ├── move-to-extension.swift │ ├── protocol-req-with-default-impl.swift │ ├── serialized-diagnostics.swift │ ├── stability-concurrency-abi.test │ ├── stability-stdlib-abi-with-array-cow-checks.test │ ├── stability-stdlib-abi-with-asserts.test │ ├── stability-stdlib-abi-without-asserts.test │ ├── stability-stdlib-source.swift │ └── use-interface-for.swift ├── attr │ ├── ApplicationMain │ │ ├── attr_NSApplicationMain.swift │ │ ├── attr_NSApplicationMain_generic.swift │ │ ├── attr_NSApplicationMain_inherited.swift │ │ ├── attr_NSApplicationMain_multi_file │ │ │ ├── another_delegate.swift │ │ │ └── delegate.swift │ │ ├── attr_NSApplicationMain_multiple.swift │ │ ├── attr_NSApplicationMain_not_NSApplicationDelegate.swift │ │ ├── attr_NSApplicationMain_swift6.swift │ │ ├── attr_NSApplicationMain_with_main │ │ │ ├── delegate.swift │ │ │ └── main.swift │ │ ├── attr_UIApplicationMain.swift │ │ ├── attr_UIApplicationMain_generic.swift │ │ ├── attr_UIApplicationMain_inherited.swift │ │ ├── attr_UIApplicationMain_multiple.swift │ │ ├── attr_UIApplicationMain_not_UIApplicationDelegate.swift │ │ ├── attr_UIApplicationMain_swift6.swift │ │ ├── attr_UIApplicationMain_with_main │ │ │ ├── delegate.swift │ │ │ └── main.swift │ │ ├── attr_main_arguments.swift │ │ ├── attr_main_class.swift │ │ ├── attr_main_class_extension.swift │ │ ├── attr_main_class_extension_external_main.swift │ │ ├── attr_main_class_extension_multi_module │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_class_extension_multi_module_external_main │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_classmethod.swift │ │ ├── attr_main_dynamicCallable.swift │ │ ├── attr_main_dynamicMemberLookup.swift │ │ ├── attr_main_enum.swift │ │ ├── attr_main_enum_extension.swift │ │ ├── attr_main_enum_extension_external_main.swift │ │ ├── attr_main_enum_extension_multi_module │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_enum_extension_multi_module_external_main │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_extension_multi_file │ │ │ ├── main1.swift │ │ │ └── main2.swift │ │ ├── attr_main_extension_nofunc.swift │ │ ├── attr_main_generic.swift │ │ ├── attr_main_implicitDynamicReplacement.swift │ │ ├── attr_main_inherited.swift │ │ ├── attr_main_instance.swift │ │ ├── attr_main_multi_file │ │ │ ├── main1.swift │ │ │ └── main2.swift │ │ ├── attr_main_multiple.swift │ │ ├── attr_main_protocol.swift │ │ ├── attr_main_resolves_types_nonthrowing.swift │ │ ├── attr_main_resolves_types_nonthrowing_2.swift │ │ ├── attr_main_resolves_types_throws.swift │ │ ├── attr_main_resolves_types_throws_2.swift │ │ ├── attr_main_return.swift │ │ ├── attr_main_struct.swift │ │ ├── attr_main_struct_available_future.swift │ │ ├── attr_main_struct_available_past.swift │ │ ├── attr_main_struct_extension.swift │ │ ├── attr_main_struct_extension_external_main.swift │ │ ├── attr_main_struct_extension_multi_module │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_struct_extension_multi_module_external_main │ │ │ ├── A.swift │ │ │ └── main.swift │ │ ├── attr_main_struct_from_protocol.swift │ │ ├── attr_main_struct_from_two_protocols_one_missing.swift │ │ ├── attr_main_throws.swift │ │ ├── attr_main_throws_prints_error.swift │ │ ├── attr_main_tuple_extension.swift │ │ └── attr_main_with_maindotswift │ │ │ ├── file.swift │ │ │ └── main.swift │ ├── Inputs │ │ ├── BackDeployHelper.swift │ │ ├── OldAndNew.swift │ │ ├── OpenHelpers.swift │ │ ├── PackageDescription.swift │ │ ├── SymbolMove │ │ │ ├── HighLevel.swift │ │ │ ├── HighlevelOriginal.swift │ │ │ └── LowLevel.swift │ │ ├── access-note-gen.py │ │ ├── attr_abi.h │ │ ├── attr_objcMembers_other.swift │ │ ├── attr_usableFromInline_protocol_hole_helper.swift │ │ ├── custom-modules │ │ │ ├── attr_objc_foo_clang_module.h │ │ │ ├── available_nsobject.h │ │ │ ├── module.modulemap │ │ │ ├── objc_async.h │ │ │ └── testable_clang.h │ │ ├── disabled_access_control_base.swift │ │ ├── dynamicReplacementA.swift │ │ ├── dynamicReplacementB.swift │ │ ├── dynamicReplacementC.swift │ │ └── warn_unqualified_access_other.swift │ ├── accessibility.swift │ ├── accessibility_multifile.swift │ ├── accessibility_print.swift │ ├── accessibility_print_inferred_type_witnesses.swift │ ├── accessibility_proto.swift │ ├── accessibility_where_clause.swift │ ├── attr_abi.swift │ ├── attr_abi_objc.swift │ ├── attr_addressable.swift │ ├── attr_alignment.swift │ ├── attr_alwaysEmitIntoClient.swift │ ├── attr_autoclosure.swift │ ├── attr_availability.swift │ ├── attr_availability_appext_unavailable.swift │ ├── attr_availability_async_rename.swift │ ├── attr_availability_async_rename_toplevel.swift │ ├── attr_availability_canonical_macos_version.swift │ ├── attr_availability_canonical_macos_version_introduction.swift │ ├── attr_availability_canonical_macos_version_introduction_appext.swift │ ├── attr_availability_custom_domains.swift │ ├── attr_availability_custom_domains_experimental_feature_required.swift │ ├── attr_availability_invalid_platform_versions.swift │ ├── attr_availability_ios_to_visionos_decl_remap.swift │ ├── attr_availability_maccatalyst.swift │ ├── attr_availability_narrow.swift │ ├── attr_availability_noasync.swift │ ├── attr_availability_objc.swift │ ├── attr_availability_osx.swift │ ├── attr_availability_swift.swift │ ├── attr_availability_swift_deserialize.swift │ ├── attr_availability_swift_v4.swift │ ├── attr_availability_swiftpm_deserialize.swift │ ├── attr_availability_swiftpm_v4.swift │ ├── attr_availability_transitive.swift │ ├── attr_availability_transitive_ios.swift │ ├── attr_availability_transitive_ios_appext.swift │ ├── attr_availability_transitive_nested.swift │ ├── attr_availability_transitive_osx.swift │ ├── attr_availability_transitive_osx_appext.swift │ ├── attr_availability_tvos.swift │ ├── attr_availability_types.swift │ ├── attr_availability_unavailable_query.swift │ ├── attr_availability_vision.swift │ ├── attr_availability_watchos.swift │ ├── attr_backDeployed.swift │ ├── attr_backDeployed_availability.swift │ ├── attr_backDeployed_availability_extension.swift │ ├── attr_backDeployed_availability_visionos.swift │ ├── attr_backDeployed_evolution.swift │ ├── attr_backDeployed_objc.swift │ ├── attr_borrowed.swift │ ├── attr_cdecl.swift │ ├── attr_cdecl_async.swift │ ├── attr_cdecl_official.swift │ ├── attr_cdecl_official_async.swift │ ├── attr_cdecl_official_rejected.swift │ ├── attr_cdecl_official_with_objc.swift │ ├── attr_compilerInitialized.swift │ ├── attr_concurrent.swift │ ├── attr_convention.swift │ ├── attr_discardableResult.swift │ ├── attr_dynamic.swift │ ├── attr_dynamic_callable.swift │ ├── attr_dynamic_infer.swift │ ├── attr_dynamic_member_lookup.swift │ ├── attr_escaping.swift │ ├── attr_expose.swift │ ├── attr_extern.swift │ ├── attr_extern_fixit.swift │ ├── attr_final.swift │ ├── attr_final_protocol_extension.swift │ ├── attr_fixed_layout.swift │ ├── attr_fixed_layout_class.swift │ ├── attr_fixed_layout_property_wrapper.swift │ ├── attr_hasMissingDesignatedInits.swift │ ├── attr_ibaction.swift │ ├── attr_ibaction_ios.swift │ ├── attr_iboutlet.swift │ ├── attr_ibsegueaction.swift │ ├── attr_implements.swift │ ├── attr_implements_bad_parse.swift │ ├── attr_implements_bad_types.swift │ ├── attr_implements_fp.swift │ ├── attr_implements_serial.swift │ ├── attr_implicitselfcapture.swift │ ├── attr_indirect.swift │ ├── attr_inheritActorContext.swift │ ├── attr_inlinable.swift │ ├── attr_inlinable_accessor_with_unavailable_storage.swift │ ├── attr_inlinable_close_match.swift │ ├── attr_inlinable_deinit.swift │ ├── attr_inlinable_dynamic.swift │ ├── attr_inlinable_global_actor.swift │ ├── attr_inlinable_old_spelling.swift │ ├── attr_inlinable_typealias.swift │ ├── attr_inlinable_typealias_swift6.swift │ ├── attr_inout.swift │ ├── attr_marker_protocol.swift │ ├── attr_native_dynamic.swift │ ├── attr_noescape.swift │ ├── attr_nonexhaustive.swift │ ├── attr_nonobjc.swift │ ├── attr_objc.swift │ ├── attr_objcMembers.swift │ ├── attr_objc_any.swift │ ├── attr_objc_async.swift │ ├── attr_objc_clang.swift │ ├── attr_objc_foreign.swift │ ├── attr_objc_overlays.swift │ ├── attr_objc_override.swift │ ├── attr_objc_resilience.swift │ ├── attr_objc_resilient_stubs.swift │ ├── attr_objc_simd.swift │ ├── attr_objc_swift4.swift │ ├── attr_objc_typealias_inside_protocol.swift │ ├── attr_originally_definedin_backward_compatibility.swift │ ├── attr_override.swift │ ├── attr_required.swift │ ├── attr_requires_stored_property_inits.swift │ ├── attr_result_builder.swift │ ├── attr_rethrows_protocol.swift │ ├── attr_semantics.swift │ ├── attr_silgen_name.swift │ ├── attr_specialize.swift │ ├── attr_static_exclusive_only.swift │ ├── attr_unavailable_in_embedded.swift │ ├── attr_usableFromInline.swift │ ├── attr_usableFromInline_protocol.swift │ ├── attr_usableFromInline_protocol_hole.swift │ ├── attr_weaklinked.swift │ ├── attributes.swift │ ├── closures.swift │ ├── conditional_attribute.swift │ ├── dynamicReplacement.swift │ ├── dynamicReplacement_library_evolution_implicit_dynamic.swift │ ├── escaping_inout_arugment.swift │ ├── execution_behavior_attrs.swift │ ├── feature_requirement.swift │ ├── global_actor.swift │ ├── hasInitialValue.swift │ ├── has_attribute.swift │ ├── implicit_dynamic.swift │ ├── lexical.swift │ ├── noimplicitcopy.swift │ ├── open.swift │ ├── open_objc.swift │ ├── open_swift4.swift │ ├── open_swift5.swift │ ├── override_with_disabled_access_control.swift │ ├── package-modifier-outside-of-package.swift │ ├── private_import.swift │ ├── rename_function_conversion.swift │ ├── require_explicit_availability.swift │ ├── require_explicit_availability_macos.swift │ ├── require_explicit_availability_non_darwin.swift │ ├── spi_available.swift │ ├── testable.swift │ ├── testable_invalid_decl.swift │ ├── typeEraser.swift │ ├── typed_throws_availability_osx.swift │ └── warn_unqualified_access.swift ├── benchmark │ ├── Benchmark_Driver.test-sh │ ├── Benchmark_O.test.md │ ├── benchmark-scripts.test-sh │ └── lit.local.cfg ├── cmake │ └── modules │ │ └── SwiftTestUtils.cmake ├── decl │ ├── Inputs │ │ ├── objc_override_multi_2.swift │ │ ├── objc_override_multi_3.swift │ │ └── objc_redeclaration_multi_2.swift │ ├── async │ │ └── objc.swift │ ├── circularity.swift │ ├── class │ │ ├── Inputs │ │ │ └── inheritance_protocol_multi_module_2.swift │ │ ├── actor │ │ │ ├── basic.swift │ │ │ ├── conformance.swift │ │ │ ├── global_actor_conformance.swift │ │ │ └── initializers.swift │ │ ├── circular_inheritance.swift │ │ ├── circular_inheritance_2.swift │ │ ├── classes.swift │ │ ├── constructor_search_outer.swift │ │ ├── effectful_properties.swift │ │ ├── effectful_properties_objc.swift │ │ ├── inheritance_across_modules.swift │ │ ├── inheritance_protocol_multi_module.swift │ │ ├── nonoverride.swift │ │ ├── override-implementationOnly.swift │ │ ├── override.swift │ │ └── typed_throws_override.swift │ ├── enum │ │ ├── Inputs │ │ │ └── objc_enum_multi_file_helper.swift │ │ ├── bool_raw_value.swift │ │ ├── derived_hashable_equatable.swift │ │ ├── derived_hashable_equatable_macos.swift │ │ ├── derived_hashable_equatable_macos_zippered.swift │ │ ├── enumtest.swift │ │ ├── frozen-nonresilient.swift │ │ ├── frozen.swift │ │ ├── invalid_raw_value.swift │ │ ├── objc_bool_raw_value.swift │ │ ├── objc_enum_Error.swift │ │ ├── objc_enum_multi_file.swift │ │ ├── recursive_enum_declaration.swift │ │ └── special_case_name.swift │ ├── ext │ │ ├── Inputs │ │ │ ├── extension-generic-objc-protocol.h │ │ │ ├── extension-inheritance-conformance-objc-multi-file-2.swift │ │ │ ├── extension-inheritance-conformance-objc.h │ │ │ ├── objc_implementation.h │ │ │ ├── objc_implementation_class_extension.h │ │ │ ├── objc_implementation_class_extension.modulemap │ │ │ ├── objc_implementation_class_extension_internal.h │ │ │ ├── objc_implementation_internal.h │ │ │ └── objc_implementation_private.modulemap │ │ ├── cdecl_implementation_features.swift │ │ ├── cdecl_official_implementation.swift │ │ ├── extension-generic-objc-protocol.swift │ │ ├── extension-generic-objc.swift │ │ ├── extension-inheritance-conformance-native.swift │ │ ├── extension-inheritance-conformance-objc-multi-file.swift │ │ ├── extension-inheritance-conformance-objc.swift │ │ ├── extensions.swift │ │ ├── forward_references.swift │ │ ├── generic.swift │ │ ├── issue-54900.swift │ │ ├── objc_implementation.swift │ │ ├── objc_implementation_class_extension.swift │ │ ├── objc_implementation_conflicts.swift │ │ ├── objc_implementation_deployment_target.swift │ │ ├── objc_implementation_direct_to_storage.swift │ │ ├── objc_implementation_early_adopter.swift │ │ ├── objc_implementation_features.swift │ │ ├── objc_implementation_impl_only.swift │ │ ├── ordering.swift │ │ ├── protocol.swift │ │ ├── protocol_as_witness.swift │ │ ├── protocol_objc.swift │ │ ├── specialize.swift │ │ └── typealias.swift │ ├── func │ │ ├── arg_rename.swift │ │ ├── async.swift │ │ ├── complete_object_init.swift │ │ ├── constructor.swift │ │ ├── debugger_function.swift │ │ ├── default-values-swift4.swift │ │ ├── default-values.swift │ │ ├── dynamic_self.swift │ │ ├── functions.swift │ │ ├── keyword-argument-defaults.swift │ │ ├── keyword-argument-labels.swift │ │ ├── local-function-overload.swift │ │ ├── operator.swift │ │ ├── operator_suggestions.swift │ │ ├── rethrows.swift │ │ ├── special_func_name.swift │ │ ├── static_func.swift │ │ ├── throwing_functions.swift │ │ ├── throwing_functions_without_try.swift │ │ ├── trailing_closures.swift │ │ ├── typed_throws.swift │ │ ├── typed_throws_availability.swift │ │ └── vararg.swift │ ├── import │ │ ├── Inputs │ │ │ └── inconsistent-implementation-only │ │ │ │ └── module.modulemap │ │ ├── import.swift │ │ ├── inconsistent-implementation-only.swift │ │ └── inconsistent-weaklinked-import.swift │ ├── inherit │ │ ├── inherit.swift │ │ ├── inherit_anyobject_protocol.swift │ │ ├── inherit_anyobject_protocol_swift5.swift │ │ ├── initializer.swift │ │ ├── objc_initializer.swift │ │ └── override.swift │ ├── init │ │ ├── Inputs │ │ │ ├── c-func-member-init.h │ │ │ ├── inherited-init-multifile-other.swift │ │ │ └── memberwise-init-multifile-other.swift │ │ ├── basic_init.swift │ │ ├── cf-types.swift │ │ ├── constructor-kind.swift │ │ ├── default-initialization.swift │ │ ├── delegate-to-c-func-imported-as-member.swift │ │ ├── failable.swift │ │ ├── inherited-init-multifile.swift │ │ ├── let-mutability.swift │ │ ├── memberwise-init-multifile.swift │ │ ├── nil.swift │ │ ├── nonnominal_init.swift │ │ ├── nonnull-delegate-to-nullable-in-base-class.swift │ │ ├── resilience-cross-module.swift │ │ ├── resilience.swift │ │ └── throwing.swift │ ├── nested │ │ ├── protocol.swift │ │ ├── reserved_name.swift │ │ ├── type_in_extension.swift │ │ ├── type_in_function.swift │ │ └── type_in_type.swift │ ├── objc_override.swift │ ├── objc_override_multi.swift │ ├── objc_redeclaration.swift │ ├── objc_redeclaration_multi.swift │ ├── operator │ │ ├── Inputs │ │ │ ├── lookup_moduleA.swift │ │ │ ├── lookup_moduleB.swift │ │ │ ├── lookup_moduleC.swift │ │ │ ├── lookup_moduleD.swift │ │ │ ├── lookup_module_exportsAC.swift │ │ │ ├── lookup_other.swift │ │ │ ├── lookup_other2.swift │ │ │ ├── lookup_other_compat.swift │ │ │ ├── lookup_other_noncompat.swift │ │ │ ├── redeclaration_other.swift │ │ │ └── redeclaration_other_compat.swift │ │ ├── declared_power_operator.swift │ │ ├── lookup.swift │ │ ├── lookup_compatibility.swift │ │ ├── power_operator_imported.swift │ │ ├── redeclaration.swift │ │ └── redeclaration_compatibility.swift │ ├── overload.swift │ ├── overload_swift4.swift │ ├── overload_swift5.swift │ ├── precedencegroup │ │ ├── Inputs │ │ │ └── ExternPrecedences.swift │ │ ├── circularity.swift │ │ └── parsing.swift │ ├── protocol │ │ ├── Inputs │ │ │ ├── deserialized_witness_mismatch_other.swift │ │ │ └── objc_error_convention_conflict.h │ │ ├── associated_type_availability.swift │ │ ├── associated_type_availability_resilient.swift │ │ ├── associated_type_overrides.swift │ │ ├── associated_type_overrides_conformances.swift │ │ ├── associated_type_overrides_conformances_cross_module.swift │ │ ├── associated_type_witness_availability.swift │ │ ├── associated_type_witness_availability_swift7.swift │ │ ├── async_requirements.swift │ │ ├── conforms │ │ │ ├── Inputs │ │ │ │ ├── fixit_stub_ambiguity_module.swift │ │ │ │ ├── fixit_stub_batch_mode_helper.swift │ │ │ │ ├── fixit_stub_mutability_proto_module.swift │ │ │ │ ├── placement_2.swift │ │ │ │ ├── placement_module_A.swift │ │ │ │ ├── placement_module_B.swift │ │ │ │ ├── redundant_conformance_A.swift │ │ │ │ └── redundant_conformance_B.swift │ │ │ ├── access_control_crash.swift │ │ │ ├── access_corner_case.swift │ │ │ ├── actor_derived.swift │ │ │ ├── associated_type.swift │ │ │ ├── circular_validation.swift │ │ │ ├── error_self_conformance.swift │ │ │ ├── failure.swift │ │ │ ├── fixit_stub.swift │ │ │ ├── fixit_stub_2.swift │ │ │ ├── fixit_stub_amiguity.swift │ │ │ ├── fixit_stub_batch_mode.swift │ │ │ ├── fixit_stub_generic.swift │ │ │ ├── fixit_stub_implied.swift │ │ │ ├── inherited.swift │ │ │ ├── init.swift │ │ │ ├── isolated_any.swift │ │ │ ├── near_miss_objc.swift │ │ │ ├── nscoding.swift │ │ │ ├── nscoding_availability_osx.swift │ │ │ ├── nscoding_stable_abi.swift │ │ │ ├── nsobject.swift │ │ │ ├── objc_async.swift │ │ │ ├── objc_from_witness_corner_case.swift │ │ │ ├── operator.swift │ │ │ ├── operator_local_conformance.swift │ │ │ ├── placement.swift │ │ │ ├── redundant_conformance.swift │ │ │ ├── redundant_conformance_same_conditions.swift │ │ │ ├── self.swift │ │ │ ├── self_same_type.swift │ │ │ ├── typed_throws.swift │ │ │ └── variadic_generic_type.swift │ │ ├── deserialized_witness_mismatch.swift │ │ ├── effectful_properties.swift │ │ ├── effectful_properties_objc.swift │ │ ├── existential_member_access │ │ │ ├── basic.swift │ │ │ ├── concrete.swift │ │ │ ├── constraint_failure.swift │ │ │ ├── covariant_erasure.swift │ │ │ ├── generic_fixit.swift │ │ │ ├── metatype.swift │ │ │ ├── misc.swift │ │ │ ├── opaque_result_type.swift │ │ │ └── storage.swift │ │ ├── fixits_missing_protocols_in_context.swift │ │ ├── indirectly_recursive_requirement.swift │ │ ├── inherited.swift │ │ ├── invalid_accessors_implementation.swift │ │ ├── issue-51275.swift │ │ ├── objc.swift │ │ ├── objc_error_convention_conflict.swift │ │ ├── operators_in_protocols.swift │ │ ├── override.swift │ │ ├── override_generic.swift │ │ ├── ownership_protocol.swift │ │ ├── protocol_enum_witness.swift │ │ ├── protocol_overload_selection.swift │ │ ├── protocol_with_default_args.swift │ │ ├── protocol_with_superclass.swift │ │ ├── protocol_with_superclass_objc.swift │ │ ├── protocol_with_superclass_where_clause.swift │ │ ├── protocols.swift │ │ ├── protocols_in_library.swift │ │ ├── recursive_requirement.swift │ │ ├── recursive_requirement_ok.swift │ │ ├── req │ │ │ ├── Inputs │ │ │ │ └── witness_fix_its_other_module.swift │ │ │ ├── associated_type_ambiguity.swift │ │ │ ├── associated_type_objc.swift │ │ │ ├── associated_type_typealias_implements.swift │ │ │ ├── class.swift │ │ │ ├── deprecated.swift │ │ │ ├── dynamic_self.swift │ │ │ ├── existentials_covariant_erasure.swift │ │ │ ├── func.swift │ │ │ ├── name_mismatch.swift │ │ │ ├── optional.swift │ │ │ ├── optional_visibility.swift │ │ │ ├── optionality.swift │ │ │ ├── properties.swift │ │ │ ├── recursion.swift │ │ │ ├── subscript.swift │ │ │ ├── unavailable.swift │ │ │ ├── unsatisfiable.swift │ │ │ ├── where_clause.swift │ │ │ ├── witness_derived_other_conformance.swift │ │ │ └── witness_fix_its.swift │ │ ├── resilient_defaults.swift │ │ ├── special │ │ │ ├── Actor.swift │ │ │ ├── DistributedActor.swift │ │ │ ├── Error.swift │ │ │ ├── Inputs │ │ │ │ ├── Error_other.swift │ │ │ │ └── case_iterable_other.swift │ │ │ ├── JSExport.swift │ │ │ ├── Sendable.swift │ │ │ ├── Sendable_swift6.swift │ │ │ ├── case_iterable │ │ │ │ ├── case_iterable_supported.swift │ │ │ │ └── case_iterable_unsupported.swift │ │ │ ├── coding │ │ │ │ ├── Inputs │ │ │ │ │ ├── class_codable_simple_multi1.swift │ │ │ │ │ ├── class_codable_simple_multi2.swift │ │ │ │ │ ├── class_missing_init_multi1.swift │ │ │ │ │ ├── class_missing_init_multi2.swift │ │ │ │ │ ├── enum_codable_simple_multi1.swift │ │ │ │ │ ├── enum_codable_simple_multi2.swift │ │ │ │ │ ├── enum_coding_key_extension_multi1.swift │ │ │ │ │ ├── enum_coding_key_extension_multi2.swift │ │ │ │ │ ├── enum_coding_key_extension_multi3.swift │ │ │ │ │ ├── enum_coding_key_multi1.swift │ │ │ │ │ ├── enum_coding_key_multi2.swift │ │ │ │ │ ├── property_wrappers_codable_multifile_other.swift │ │ │ │ │ ├── struct_codable_simple_multi1.swift │ │ │ │ │ └── struct_codable_simple_multi2.swift │ │ │ │ ├── class_codable_codingkeys_typealias.swift │ │ │ │ ├── class_codable_computed_vars.swift │ │ │ │ ├── class_codable_default_initializer.swift │ │ │ │ ├── class_codable_excluded_optional_properties.swift │ │ │ │ ├── class_codable_failure_diagnostics.swift │ │ │ │ ├── class_codable_ignore_nonconforming_property.swift │ │ │ │ ├── class_codable_inheritance.swift │ │ │ │ ├── class_codable_inheritance_diagnostics.swift │ │ │ │ ├── class_codable_inherited.swift │ │ │ │ ├── class_codable_invalid_codingkeys.swift │ │ │ │ ├── class_codable_member_lookup.swift │ │ │ │ ├── class_codable_member_type_lookup.swift │ │ │ │ ├── class_codable_non_strong_vars.swift │ │ │ │ ├── class_codable_nonconforming_property.swift │ │ │ │ ├── class_codable_simple.swift │ │ │ │ ├── class_codable_simple_conditional.swift │ │ │ │ ├── class_codable_simple_conditional_final.swift │ │ │ │ ├── class_codable_simple_conditional_final_separate.swift │ │ │ │ ├── class_codable_simple_conditional_separate.swift │ │ │ │ ├── class_codable_simple_extension.swift │ │ │ │ ├── class_codable_simple_extension_final.swift │ │ │ │ ├── class_codable_simple_multi.swift │ │ │ │ ├── class_missing_init_multi.swift │ │ │ │ ├── codable_immutable_property_with_initial_value.swift │ │ │ │ ├── codable_parameter_pack.swift │ │ │ │ ├── enum_codable_case_identifier_overloads.swift │ │ │ │ ├── enum_codable_codingkeys_typealias.swift │ │ │ │ ├── enum_codable_conflicting_parameter_identifier.swift │ │ │ │ ├── enum_codable_exclude_element.swift │ │ │ │ ├── enum_codable_excluded_optional_properties.swift │ │ │ │ ├── enum_codable_failure_diagnostics.swift │ │ │ │ ├── enum_codable_ignore_nonconforming_property.swift │ │ │ │ ├── enum_codable_invalid_codingkeys.swift │ │ │ │ ├── enum_codable_member_type_lookup.swift │ │ │ │ ├── enum_codable_nonconforming_property.swift │ │ │ │ ├── enum_codable_reordered_codingkeys.swift │ │ │ │ ├── enum_codable_simple.swift │ │ │ │ ├── enum_codable_simple_conditional.swift │ │ │ │ ├── enum_codable_simple_conditional_separate.swift │ │ │ │ ├── enum_codable_simple_extension.swift │ │ │ │ ├── enum_codable_simple_extension_flipped.swift │ │ │ │ ├── enum_codable_simple_multi.swift │ │ │ │ ├── enum_coding_key.swift │ │ │ │ ├── enum_coding_key_empty.swift │ │ │ │ ├── enum_coding_key_extension.swift │ │ │ │ ├── enum_coding_key_extension_multi.swift │ │ │ │ ├── enum_coding_key_int_raw_type.swift │ │ │ │ ├── enum_coding_key_multi.swift │ │ │ │ ├── enum_coding_key_no_raw_type.swift │ │ │ │ ├── enum_coding_key_partial_implementation.swift │ │ │ │ ├── enum_coding_key_string_raw_type.swift │ │ │ │ ├── enum_coding_key_unavailable_element.swift │ │ │ │ ├── immutable_property.swift │ │ │ │ ├── iuo_crash.swift │ │ │ │ ├── property_wrappers_codable.swift │ │ │ │ ├── property_wrappers_codable_multifile.swift │ │ │ │ ├── struct_codable_codingkeys_typealias.swift │ │ │ │ ├── struct_codable_computed_vars.swift │ │ │ │ ├── struct_codable_excluded_optional_properties.swift │ │ │ │ ├── struct_codable_failure_diagnostics.swift │ │ │ │ ├── struct_codable_ignore_nonconforming_property.swift │ │ │ │ ├── struct_codable_invalid_codingkeys.swift │ │ │ │ ├── struct_codable_member_name_confusion.swift │ │ │ │ ├── struct_codable_member_type_lookup.swift │ │ │ │ ├── struct_codable_memberwise_initializer.swift │ │ │ │ ├── struct_codable_non_strong_vars.swift │ │ │ │ ├── struct_codable_nonconforming_property.swift │ │ │ │ ├── struct_codable_simple.swift │ │ │ │ ├── struct_codable_simple_conditional.swift │ │ │ │ ├── struct_codable_simple_conditional_separate.swift │ │ │ │ ├── struct_codable_simple_extension.swift │ │ │ │ ├── struct_codable_simple_extension_flipped.swift │ │ │ │ └── struct_codable_simple_multi.swift │ │ │ └── comparable │ │ │ │ ├── comparable_supported.swift │ │ │ │ └── comparable_unsupported.swift │ │ ├── substituted_aliases.swift │ │ ├── typealias_inference.swift │ │ ├── typed_throws.swift │ │ └── warn_override.swift │ ├── result_builder_fixits.swift │ ├── subscript │ │ ├── addressors.swift │ │ ├── generic.swift │ │ ├── noescape_accessors.swift │ │ ├── static.swift │ │ └── subscripting.swift │ ├── typealias │ │ ├── associated_types.swift │ │ ├── dependent_types.swift │ │ ├── fully_constrained.swift │ │ ├── generic.swift │ │ ├── on_constrained_protocol.swift │ │ ├── protocol.swift │ │ ├── protocol_cycle.swift │ │ ├── redeclaration.swift │ │ └── typealias.swift │ └── var │ │ ├── Inputs │ │ ├── imported_init_accessor.swift │ │ ├── lazy_properties_batch_mode_b.swift │ │ ├── lazy_properties_multi_file_2.swift │ │ └── property_wrappers_multi_file_2.swift │ │ ├── NSCopying.swift │ │ ├── NSManaged_properties.swift │ │ ├── async_let.swift │ │ ├── default_init.swift │ │ ├── didset_cycle.swift │ │ ├── didset_oldvalue.swift │ │ ├── effectful_properties_global.swift │ │ ├── effectful_property_wrapper.swift │ │ ├── init_accessors.swift │ │ ├── init_accessors_multi_file.swift │ │ ├── lazy_properties.swift │ │ ├── lazy_properties_batch_mode.swift │ │ ├── lazy_properties_effects.swift │ │ ├── lazy_properties_multi_file.swift │ │ ├── lazy_self_capture.swift │ │ ├── nan_comparisons.swift │ │ ├── properties.swift │ │ ├── property_wrapper_aliases.swift │ │ ├── property_wrapper_generic_aliases.swift │ │ ├── property_wrapper_generic_aliases_invalid.swift │ │ ├── property_wrappers.swift │ │ ├── property_wrappers_default_init.swift │ │ ├── property_wrappers_invalid.swift │ │ ├── property_wrappers_library_evolution.swift │ │ ├── property_wrappers_multi_file.swift │ │ ├── property_wrappers_opaque.swift │ │ ├── property_wrappers_synthesis.swift │ │ ├── property_wrappers_top_level.swift │ │ ├── result_builders.swift │ │ ├── result_builders_availability.swift │ │ ├── static_var.swift │ │ ├── usage.swift │ │ └── variables.swift ├── diagnostics │ ├── Inputs │ │ ├── RenamedObjc.h │ │ ├── TestablePrintASTLocationsModule.swift │ │ ├── extra-newlines-2.swift │ │ ├── module.modulemap │ │ └── slash.swift │ ├── Localization │ │ ├── Inputs │ │ │ ├── en.strings │ │ │ └── fr.strings │ │ ├── en_debug_diagnostic_name.swift │ │ ├── en_localization.swift │ │ ├── fr_debug_diagnostic_name.swift │ │ ├── fr_localization.swift │ │ ├── no_localization_files_and_wrong_path.swift │ │ └── not_available_locale_code.swift │ ├── ambiguity-across-modules.swift │ ├── bad-generated-filenames.swift │ ├── diagnostic-group-serialization.swift │ ├── educational_notes_serialization.swift │ ├── extra-newlines.swift │ ├── loc-directive-diagnostics.swift │ ├── multi-module-diagnostics.swift │ ├── no_warnings_as_errors.swift │ ├── package-name-diagnostics.swift │ ├── pretty-printed-diagnostics-eof.swift │ ├── pretty-printed-diagnostics.swift │ ├── pretty-printed-source-loc-directive-diags.swift │ ├── print-diagnostic-groups.swift │ ├── sil-opt-verifier.sil │ ├── test-docs │ │ └── nominal-types.md │ ├── testable-printast-locations.swift │ └── warnings_as_errors_rules.swift ├── embedded │ ├── Inputs │ │ ├── MyCustomMessage.swift │ │ ├── MyCustomMessage2.swift │ │ ├── debug-malloc.c │ │ ├── executor.c │ │ ├── linux-rng-support.c │ │ ├── print.c │ │ └── unbuffered-putchar.c │ ├── accessor-unavailable.swift │ ├── anyobject-error-no-stdlib.swift │ ├── array-builtins-exec.swift │ ├── array-builtins-no-stdlib.swift │ ├── array-to-pointer.swift │ ├── array-zero-size-struct.swift │ ├── arrays-enums.swift │ ├── arrays.swift │ ├── attr-unavailable-in-embedded.swift │ ├── availability-code-removal.swift │ ├── availability-macos.swift │ ├── availability.swift │ ├── avr │ │ └── testStdlibFunctioning.swift │ ├── basic-errors-no-stdlib.swift │ ├── basic-irgen-no-stdlib.swift │ ├── basic-modules-generics-no-stdlib.swift │ ├── basic-modules-no-stdlib.swift │ ├── basic-modules-validation-no-stdlib.swift │ ├── builtin-float.swift │ ├── builtins-misc.swift │ ├── class-func.swift │ ├── classes-arrays.swift │ ├── classes-generic-no-stdlib.swift │ ├── classes-indirect-return.swift │ ├── classes-methods-no-stdlib.swift │ ├── classes-multi-module.swift │ ├── classes-no-stdlib.swift │ ├── classes-non-final-method-no-stdlib.swift │ ├── classes-optional.swift │ ├── classes-stack-promotion.swift │ ├── classes.swift │ ├── closures-heap.swift │ ├── closures.swift │ ├── collection-difference.swift │ ├── collection.swift │ ├── compeval-print.swift │ ├── compeval-print2.swift │ ├── concurrency-actors.swift │ ├── concurrency-async-let.swift │ ├── concurrency-builtins.swift │ ├── concurrency-continuations.swift │ ├── concurrency-currenttask.swift │ ├── concurrency-deleted-method.swift │ ├── concurrency-discardingtaskgroup.swift │ ├── concurrency-leaks.swift │ ├── concurrency-modules.swift │ ├── concurrency-simple.swift │ ├── concurrency-stream.swift │ ├── concurrency-taskgroup.swift │ ├── concurrency-typed-throws.swift │ ├── conditionals.swift │ ├── coroutines-and-testing.swift │ ├── custom-executor.swift │ ├── custom-print.swift │ ├── cxx-import-reference.swift │ ├── cxx-no-metadata.swift │ ├── cxxshim.swift │ ├── darwin-bridging-header.swift │ ├── darwin.swift │ ├── debuginfo-dwarf-types.swift │ ├── debuginfo.swift │ ├── default-arguments.swift │ ├── deinit-release.swift │ ├── deinit-release2.swift │ ├── dependencies-concurrency-custom-executor.swift │ ├── dependencies-concurrency-custom-executor2.swift │ ├── dependencies-concurrency.swift │ ├── dependencies-concurrency2.swift │ ├── dependencies-no-allocations.swift │ ├── dependencies-print.swift │ ├── dependencies-random.swift │ ├── dependencies.swift │ ├── deserialize-vtables.swift │ ├── devirt_generic_class_methods.swift │ ├── dict-init.swift │ ├── dictionary-runtime.swift │ ├── duration.swift │ ├── dynamic-self.swift │ ├── empty-box.swift │ ├── evolution-with-embedded-diag.swift │ ├── existential-class-bound1.swift │ ├── existential-class-bound2.swift │ ├── existential-class-bound3.swift │ ├── existential-class-bound4.swift │ ├── existential-class-bound5.swift │ ├── existential-class-bound6.swift │ ├── existential-class-bound7.swift │ ├── existential-class-bound8.swift │ ├── existential-class-bound9.swift │ ├── existential-composition.swift │ ├── existential-default-method.swift │ ├── existential-generic-error.swift │ ├── extensions.swift │ ├── failable-crash.swift │ ├── float-abi-hard.swift │ ├── floatingpoint.swift │ ├── fno-builtin.swift │ ├── fragile-reference.swift │ ├── generic-autoclosure.swift │ ├── generic-class-multi-module.swift │ ├── generic-classes-debuginfo.swift │ ├── generic-classes.swift │ ├── generic-classes2.swift │ ├── generic-error.swift │ ├── generic-modules.swift │ ├── globals.swift │ ├── hello.swift │ ├── import-vtables.swift │ ├── init-failable-generic.swift │ ├── init-failable.swift │ ├── init-throwing.swift │ ├── internalize-no-stdlib.swift │ ├── keypath-crash.swift │ ├── keypaths.swift │ ├── keypaths2.swift │ ├── keypaths3.swift │ ├── keypaths4.swift │ ├── lazy-collections.swift │ ├── linkage-custom-entry-point.swift │ ├── linkage-mergeable-dead-strip.swift │ ├── linkage-mergeable.swift │ ├── linkage-mergeable2.swift │ ├── linkage-mergeable3.swift │ ├── linkage-mergeable4.swift │ ├── linkage-public-exports.swift │ ├── lit.local.cfg │ ├── lto-multiple-object-files.swift │ ├── lto.swift │ ├── managed-buffer.swift │ ├── managed-buffer2.swift │ ├── metatype-type-hint.swift │ ├── metatype-type-hint2.swift │ ├── metatypes.swift │ ├── min-pointer-value-option.swift │ ├── mirror.swift │ ├── modules-class-bound-existential.swift │ ├── modules-classes.swift │ ├── modules-empty-object.swift │ ├── modules-extern.swift │ ├── modules-globals-exec.swift │ ├── modules-globals-many.swift │ ├── modules-globals.swift │ ├── modules-print-exec.swift │ ├── modules-subclasses.swift │ ├── modules-used.swift │ ├── modules-used2.swift │ ├── multi-module-debug-info.swift │ ├── no-allocations-print.swift │ ├── no-allocations.swift │ ├── no-autolink.swift │ ├── non-copyable-deinit.swift │ ├── noncopyable-captures.swift │ ├── objc-with-embedded-diag.swift │ ├── once-dependent.swift │ ├── once-multithreaded.swift │ ├── once.swift │ ├── opaque-return-types.swift │ ├── optionset.swift │ ├── optionset2.swift │ ├── osize-genericspecializer.swift │ ├── osize-releasedevirt.swift │ ├── ouroboros-bug.swift │ ├── ptr-auth-irgen-verify-no-stdlib.swift │ ├── ptrauth-fieldptr1.swift │ ├── ptrauth-fieldptr2.swift │ ├── ptrauth-none-macho.swift │ ├── refcounting-leak.swift │ ├── runtime-release.swift │ ├── runtime.swift │ ├── sensitive.swift │ ├── set-runtime.swift │ ├── shared-linkage.swift │ ├── simd.swift │ ├── specialize-attrs.swift │ ├── specialize-attrs2.swift │ ├── specialize-opt-none.swift │ ├── static-object-non-darwin.swift │ ├── static-object.swift │ ├── static-string-interpolation.swift │ ├── stdlib-array.swift │ ├── stdlib-basic.swift │ ├── stdlib-dictionary.swift │ ├── stdlib-parsing.swift │ ├── stdlib-random.swift │ ├── stdlib-set.swift │ ├── stdlib-strings-append.swift │ ├── stdlib-strings-datatables.swift │ ├── stdlib-strings-interpolation.swift │ ├── stdlib-strings-interpolation2.swift │ ├── stdlib-strings-interpolation3.swift │ ├── stdlib-strings-lossless-convertible.swift │ ├── stdlib-strings-osize.swift │ ├── stdlib-strings-print.swift │ ├── stdlib-strings-unicode.swift │ ├── stdlib-types-riscv.swift │ ├── stdlib-types.swift │ ├── string-interpolation-types.swift │ ├── string-switch.swift │ ├── string-switch2.swift │ ├── string-to-pointer.swift │ ├── synchronization.swift │ ├── throw-trap-stdlib.swift │ ├── throw-trap.swift │ ├── throw-typed.swift │ ├── traps-fatalerror-exec.swift │ ├── traps-fatalerror-exec2.swift │ ├── traps-fatalerror-ir.swift │ ├── traps-mergeable.swift │ ├── traps-multiple-preconditions-ir.swift │ ├── traps-precondition-exec.swift │ ├── traps-preconditionfailure-exec.swift │ ├── traps-string-interpolations.swift │ ├── traps-unique.swift │ ├── typeof.swift │ ├── unicode-dead-strip1.swift │ ├── unicode-dead-strip2.swift │ ├── unicode-dead-strip3.swift │ ├── value-type-deinits.swift │ ├── volatile-exec.swift │ ├── volatile-ir.swift │ ├── wasm │ │ └── classes.swift │ ├── weak-unowned.swift │ ├── without-actually-escaping.swift │ ├── wmo-with-embedded-diag.swift │ └── wrong-linkage.swift ├── expr │ ├── capture │ │ ├── dynamic_self.swift │ │ ├── generic_params.swift │ │ ├── inout.swift │ │ ├── local_lazy.swift │ │ ├── nested.swift │ │ ├── nested_class.swift │ │ ├── noescape-error.swift │ │ └── top-level-guard.swift │ ├── cast │ │ ├── array_bridge.swift │ │ ├── array_coerce.swift │ │ ├── array_downcast.swift │ │ ├── array_downcast_Foundation.swift │ │ ├── array_iteration.swift │ │ ├── as_coerce.swift │ │ ├── bridged.swift │ │ ├── cf.swift │ │ ├── chains.swift │ │ ├── dictionary_bridge.swift │ │ ├── dictionary_coerce.swift │ │ ├── dictionary_downcast.swift │ │ ├── generic.swift │ │ ├── literals_downcast.swift │ │ ├── literals_downcast_bridge.swift │ │ ├── metatype_casts.swift │ │ ├── nil_value_to_optional.swift │ │ ├── objc_coerce_array.swift │ │ ├── optional.swift │ │ ├── precedence.swift │ │ ├── set_bridge.swift │ │ ├── set_coerce.swift │ │ └── set_downcast.swift │ ├── closure │ │ ├── anonymous.swift │ │ ├── basic.swift │ │ ├── closures.swift │ │ ├── closures_swift6.swift │ │ ├── default_args.swift │ │ ├── implicit_weak_capture.swift │ │ ├── inference.swift │ │ ├── let.swift │ │ ├── multi_statement.swift │ │ ├── nested_inner_closures.swift │ │ ├── single_expr.swift │ │ ├── single_expr_ifdecl.swift │ │ ├── trailing.swift │ │ └── typed_throws.swift │ ├── conversions │ │ └── RawRepresentable_fixits.swift │ ├── delayed-ident │ │ ├── enum.swift │ │ ├── member_chains.swift │ │ ├── nested_type.swift │ │ ├── optional_overload.swift │ │ ├── specialize.swift │ │ ├── static_func.swift │ │ └── static_var.swift │ ├── dynamic_lookup.swift │ ├── edge-contraction │ │ ├── array_base_optimization.swift │ │ ├── dictionary-literal.swift │ │ └── paren-expr.swift │ ├── expressions.swift │ ├── postfix │ │ ├── call │ │ │ ├── construction.swift │ │ │ ├── default_args.swift │ │ │ ├── forward_trailing_closure.swift │ │ │ ├── forward_trailing_closure_ambiguity.swift │ │ │ ├── forward_trailing_closure_errors.swift │ │ │ ├── forward_trailing_closure_fuzzy.swift │ │ │ └── forward_trailing_closure_unresolved_member.swift │ │ ├── dot │ │ │ ├── dot_keywords.swift │ │ │ ├── init_ref_delegation.swift │ │ │ ├── optional_context_member.swift │ │ │ └── optional_context_member_enum.swift │ │ └── init │ │ │ └── unqualified.swift │ ├── primary │ │ ├── keypath │ │ │ ├── keypath-objc.swift │ │ │ ├── keypath-observe-objc.swift │ │ │ └── swift-keypath-objc-optional-component.swift │ │ ├── literal │ │ │ ├── boolean.swift │ │ │ ├── collection_upcast_opt.swift │ │ │ ├── context.swift │ │ │ ├── int.swift │ │ │ └── string.swift │ │ ├── selector │ │ │ ├── Inputs │ │ │ │ ├── fixits_helper.swift │ │ │ │ └── property_helper.swift │ │ │ ├── fixits.swift │ │ │ ├── property.swift │ │ │ └── selector.swift │ │ ├── super │ │ │ ├── closures.swift │ │ │ ├── invalid_context.swift │ │ │ └── unsupported.swift │ │ └── unqualified_name.swift │ ├── print │ │ ├── callexpr.swift │ │ ├── conditions.swift │ │ ├── discard.swift │ │ ├── func_closures.swift │ │ ├── literals.swift │ │ ├── misc_expr.swift │ │ ├── protocol.swift │ │ └── switch.swift │ └── unary │ │ ├── async_await.swift │ │ ├── do_expr.swift │ │ ├── do_expr_disabled.swift │ │ ├── do_expr_implicit_last_expr.swift │ │ ├── if_expr.swift │ │ ├── if_expr_global_self_ref.swift │ │ ├── if_expr_reasync.swift │ │ ├── keypath │ │ ├── keypath-availability.swift │ │ ├── keypath-mutation.swift │ │ ├── keypath-unsupported-methods.swift │ │ ├── keypath.swift │ │ ├── rdar85236369.swift │ │ └── salvage-with-other-type-errors.swift │ │ ├── single_value_stmt_expr_source_breaks.swift │ │ ├── switch_expr.swift │ │ ├── switch_expr_global_self_ref.swift │ │ └── switch_expr_reasync.swift ├── lit.cfg ├── lit.site.cfg.in ├── lit.swift-features.cfg.inc ├── multifile │ ├── Inputs │ │ ├── batch_mode_external_definitions.h │ │ ├── batch_mode_external_uses_1.swift │ │ ├── batch_mode_external_uses_2.swift │ │ ├── conditional-conformance-catch22.swift │ │ ├── default-witness.swift │ │ ├── external-protocol-conformance │ │ │ └── A.swift │ │ ├── external_lazy_property.swift │ │ ├── finalize-nested-types-other.swift │ │ ├── for_each_conformance_crashB.swift │ │ ├── inherited-inits-other.swift │ │ ├── inlinable-other.swift │ │ ├── issue-42907-other.swift │ │ ├── issue-53324a.swift │ │ ├── issue-53324b.swift │ │ ├── issue-53859.swift │ │ ├── issue-54868.swift │ │ ├── nested_types_defs.swift │ │ ├── objc-escape │ │ │ ├── DangerousEscaper.swift │ │ │ ├── Escaper.h │ │ │ └── Escaper.m │ │ ├── objc-protocol-bridging.h │ │ ├── objc-protocol-other.swift │ │ ├── outlined-thunks-other.swift │ │ ├── overrideB.swift │ │ ├── overrideC.swift │ │ ├── protocol-conformance-issue-49388-other.swift │ │ ├── protocol-conformance-issue-53408-other.swift │ │ ├── protocol-conformance-let-other.swift │ │ ├── protocol-conformance-member-helper.swift │ │ ├── protocol-conformance-objc-other.swift │ │ ├── protocol-conformance-rdar39805133-other.swift │ │ ├── protocol-conformance-redundant-def.swift │ │ ├── protocol-conformance-redundant-ext.swift │ │ ├── protocol-conformance │ │ │ ├── A.swift │ │ │ ├── broken.swift │ │ │ └── rdar31302713.swift │ │ ├── protocol-extension-init-helper.swift │ │ ├── protocol-override-other.swift │ │ ├── rdar-34584596-A.swift │ │ ├── rdar-34584596-B.swift │ │ ├── rdar-34584596-C.swift │ │ ├── rdar51725203.swift │ │ ├── rdar61229365.swift │ │ ├── rdar67842221-other.swift │ │ ├── require-finalize-witness-other.swift │ │ ├── require-layout-call-result-primary.swift │ │ ├── require-layout-enum-other.swift │ │ ├── require-layout-error-other.swift │ │ ├── require-layout-generic-class.swift │ │ ├── require-member-layout-dynamic-bridging.h │ │ ├── require-member-layout-dynamic-other.swift │ │ ├── requirement-signature.swift │ │ ├── resilient-module-2.swift │ │ ├── resilient-witness-2.swift │ │ └── result_builder_definition.swift │ ├── batch_mode_external_definitions.swift │ ├── class-layout │ │ └── final-stored-property │ │ │ ├── Inputs │ │ │ └── library.swift │ │ │ └── main.swift │ ├── conditional-conformance.swift │ ├── constant-struct-with-padding │ │ ├── Inputs │ │ │ └── other.swift │ │ └── main.swift │ ├── constant-tuple-with-padding │ │ ├── Inputs │ │ │ └── other.swift │ │ └── main.swift │ ├── default-arguments │ │ ├── one-module │ │ │ ├── Inputs │ │ │ │ ├── invalid-magic-literals-other.swift │ │ │ │ ├── library.swift │ │ │ │ └── mismatched-magic-literals-other.swift │ │ │ ├── invalid-magic-literals.swift │ │ │ ├── main.swift │ │ │ └── mismatched-magic-literals.swift │ │ └── two-modules │ │ │ ├── Inputs │ │ │ ├── library1.swift │ │ │ └── library2.swift │ │ │ └── main.swift │ ├── default-witness.swift │ ├── error-type │ │ ├── imported │ │ │ ├── Inputs │ │ │ │ ├── library.swift │ │ │ │ └── objc_enum_errortype.h │ │ │ └── main.swift │ │ ├── one-module │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ └── two-modules │ │ │ ├── Inputs │ │ │ └── library.swift │ │ │ └── main.swift │ ├── extensions │ │ ├── one-module │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ └── two-modules │ │ │ ├── Inputs │ │ │ └── library.swift │ │ │ └── main.swift │ ├── external-protocol-conformance.swift │ ├── finalize-nested-types.swift │ ├── for_each_conformance_crash.swift │ ├── imported-conformance │ │ └── option-set │ │ │ ├── Inputs │ │ │ └── library.swift │ │ │ └── main.swift │ ├── inherited-inits.swift │ ├── inlinable.swift │ ├── lazy.swift │ ├── multiconformanceimpls │ │ ├── Inputs │ │ │ ├── A.swift │ │ │ ├── B.swift │ │ │ └── C.swift │ │ └── main.swift │ ├── nested_types.swift │ ├── nested_types │ │ └── main.swift │ ├── objc-protocol.swift │ ├── objc_closure_escape │ │ └── main.swift │ ├── outlined-thunks.swift │ ├── override.swift │ ├── property-wrappers-issue-53324.swift │ ├── property-wrappers-issue-53859.swift │ ├── property-wrappers-issue-54868.swift │ ├── property-wrappers-rdar51725203.swift │ ├── property-wrappers-rdar61229365.swift │ ├── protocol-conformance-broken-2.swift │ ├── protocol-conformance-broken.swift │ ├── protocol-conformance-issue-42907.swift │ ├── protocol-conformance-issue-49388.swift │ ├── protocol-conformance-issue-53408.swift │ ├── protocol-conformance-let.swift │ ├── protocol-conformance-member.swift │ ├── protocol-conformance-objc.swift │ ├── protocol-conformance-rdar-34584596.swift │ ├── protocol-conformance-rdar31302713.swift │ ├── protocol-conformance-rdar39805133.swift │ ├── protocol-conformance-redundant.swift │ ├── protocol-conformance.swift │ ├── protocol-extension-init.swift │ ├── protocol-override.swift │ ├── rdar67842221.swift │ ├── require-finalize-witness.swift │ ├── require-layout-call-result.swift │ ├── require-layout-enum.swift │ ├── require-layout-error.swift │ ├── require-layout-generic-arg-closure.swift │ ├── require-layout-generic-arg-subscript.swift │ ├── require-layout-generic-arg.swift │ ├── require-layout │ │ └── main.swift │ ├── require-layout2 │ │ └── main.swift │ ├── require-layout3 │ │ └── main.swift │ ├── require-member-layout-dynamic.swift │ ├── requirement-signature.swift │ ├── resilient-module.swift │ ├── resilient-witness.swift │ ├── result_builder_multifile.swift │ ├── synthesized-accessors │ │ ├── invalid │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ ├── materialize-for-set-1 │ │ │ ├── Inputs │ │ │ │ ├── counter.h │ │ │ │ ├── library.swift │ │ │ │ └── module.modulemap │ │ │ └── main.swift │ │ ├── materialize-for-set-2 │ │ │ ├── Inputs │ │ │ │ ├── counter.h │ │ │ │ ├── library1.swift │ │ │ │ ├── library2.swift │ │ │ │ └── module.modulemap │ │ │ └── main.swift │ │ ├── one-module-imported │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ ├── one-module-internal │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ ├── one-module-public │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ ├── two-modules-imported │ │ │ ├── Inputs │ │ │ │ └── library.swift │ │ │ └── main.swift │ │ └── two-modules │ │ │ ├── Inputs │ │ │ └── library.swift │ │ │ └── main.swift │ └── typealias │ │ ├── one-module │ │ ├── Inputs │ │ │ └── library.swift │ │ └── main.swift │ │ └── two-modules │ │ ├── Inputs │ │ └── library.swift │ │ └── main.swift ├── refactoring │ ├── AddCodableImplementation │ │ ├── Outputs │ │ │ ├── access │ │ │ │ ├── open.swift.expected │ │ │ │ ├── private.swift.expected │ │ │ │ └── public.swift.expected │ │ │ ├── basic │ │ │ │ ├── codable.swift.expected │ │ │ │ ├── decodable.swift.expected │ │ │ │ └── encodable.swift.expected │ │ │ ├── empty │ │ │ │ └── codable.swift.expected │ │ │ ├── enum │ │ │ │ ├── codable.swift.expected │ │ │ │ ├── decodable.swift.expected │ │ │ │ └── encodable.swift.expected │ │ │ ├── existing │ │ │ │ ├── has_decodable.swift.expected │ │ │ │ └── has_encodable.swift.expected │ │ │ ├── extension │ │ │ │ ├── basic.swift.expected │ │ │ │ ├── conditional.swift.expected │ │ │ │ └── nested.swift.expected │ │ │ ├── has_error │ │ │ │ └── invalid_member.swift.expected │ │ │ └── nested │ │ │ │ ├── inner.swift.expected │ │ │ │ └── outer.swift.expected │ │ ├── access.swift │ │ ├── basic.swift │ │ ├── empty.swift │ │ ├── enum.swift │ │ ├── existing.swift │ │ ├── extension.swift │ │ ├── has_error.swift │ │ └── nested.swift │ ├── AddEquatableConformance │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── first.swift.expected │ │ │ │ ├── second.swift.expected │ │ │ │ └── third.swift.expected │ │ └── basic.swift │ ├── CollapseNestedIf │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L15-3.swift.expected │ │ │ │ ├── L21-3.swift.expected │ │ │ │ ├── L3-3.swift.expected │ │ │ │ └── L9-3.swift.expected │ │ └── basic.swift │ ├── ConvertAsync │ │ ├── Inputs │ │ │ ├── convert_bool_objc.h │ │ │ └── module.modulemap │ │ ├── async_attribute_added.swift │ │ ├── basic.swift │ │ ├── check_compiles.swift │ │ ├── convert_async_attributed_renames.swift │ │ ├── convert_async_renames.swift │ │ ├── convert_async_wrapper.swift │ │ ├── convert_bool.swift │ │ ├── convert_function.swift │ │ ├── convert_invalid.swift │ │ ├── convert_params_multi.swift │ │ ├── convert_params_single.swift │ │ ├── convert_pattern.swift │ │ ├── convert_result.swift │ │ ├── convert_to_continuation.swift │ │ ├── errors.swift │ │ ├── handler_position.swift │ │ ├── labeled_closure_params.swift │ │ ├── path_classification.swift │ │ ├── variable_as_callback.swift │ │ └── void_handler.swift │ ├── ConvertForceTryToTryCatch │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ └── L5.swift.expected │ │ │ ├── basic_in_func │ │ │ │ └── L5.swift.expected │ │ │ ├── for_loop │ │ │ │ └── L5.swift.expected │ │ │ ├── in_if_clause │ │ │ │ └── L5.swift.expected │ │ │ ├── in_if_clause_nested │ │ │ │ └── L5.swift.expected │ │ │ ├── in_if_clause_with_let_binding │ │ │ │ └── L5.swift.expected │ │ │ └── inside_constructor │ │ │ │ └── L5.swift.expected │ │ ├── basic.swift │ │ ├── basic_in_func.swift │ │ ├── for_loop.swift │ │ ├── in_if_clause.swift │ │ ├── in_if_clause_nested.swift │ │ ├── in_if_clause_with_let_binding.swift │ │ └── inside_constructor.swift │ ├── ConvertStringsConcatenationToInterpolation │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ └── L4.swift.expected │ │ │ └── func_calls │ │ │ │ └── L5.swift.expected │ │ ├── basic.swift │ │ └── func_calls.swift │ ├── ConvertToComputedProperty │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L10-3.swift.expected │ │ │ │ ├── L11-3.swift.expected │ │ │ │ ├── L12-3.swift.expected │ │ │ │ ├── L13-3.swift.expected │ │ │ │ ├── L14-3.swift.expected │ │ │ │ ├── L2-3.swift.expected │ │ │ │ ├── L3-3.swift.expected │ │ │ │ ├── L4-3.swift.expected │ │ │ │ ├── L5-3.swift.expected │ │ │ │ └── L6-3.swift.expected │ │ └── basic.swift │ ├── ConvertToGuard │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L15-3.swift.expected │ │ │ │ ├── L2-3.swift.expected │ │ │ │ ├── L23-3.swift.expected │ │ │ │ └── L8-3.swift.expected │ │ └── basic.swift │ ├── ConvertToIfLet │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L17-3.swift.expected │ │ │ │ ├── L2-3.swift.expected │ │ │ │ └── L9-3.swift.expected │ │ └── basic.swift │ ├── ConvertToSwitchStmt │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ ├── L108-3.swift.expected │ │ │ │ ├── L118-3.swift.expected │ │ │ │ ├── L128-3.swift.expected │ │ │ │ ├── L20-3.swift.expected │ │ │ │ ├── L29-3.swift.expected │ │ │ │ ├── L39-3.swift.expected │ │ │ │ ├── L50-3.swift.expected │ │ │ │ ├── L54-3.swift.expected │ │ │ │ ├── L60-3.swift.expected │ │ │ │ ├── L64-3.swift.expected │ │ │ │ ├── L71-3.swift.expected │ │ │ │ ├── L82-3.swift.expected │ │ │ │ ├── L9-3.swift.expected │ │ │ │ └── L99-3.swift.expected │ │ │ └── enum_with_raw_value │ │ │ │ └── L8-3.swift.expected │ │ ├── basic.swift │ │ └── enum_with_raw_value.swift │ ├── ConvertToTernaryExpr │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L14-3.swift.expected │ │ │ │ ├── L15-3.swift.expected │ │ │ │ ├── L4-3.swift.expected │ │ │ │ └── L5-3.swift.expected │ │ └── basic.swift │ ├── ExpandDefault │ │ ├── Outputs │ │ │ └── basic │ │ │ │ └── L15.swift.expected │ │ └── basic.swift │ ├── ExpandSwitchCases │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ └── L10.swift.expected │ │ │ ├── no_space_between_braces │ │ │ │ └── L10.swift.expected │ │ │ ├── partially_handled │ │ │ │ └── L11.swift.expected │ │ │ └── with_default │ │ │ │ └── L10.swift.expected │ │ ├── basic.swift │ │ ├── no_space_between_braces.swift │ │ ├── partially_handled.swift │ │ └── with_default.swift │ ├── ExpandTernaryExpr │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L17-3.swift.expected │ │ │ │ ├── L24-3.swift.expected │ │ │ │ ├── L4-3.swift.expected │ │ │ │ └── L9-3.swift.expected │ │ └── basic.swift │ ├── ExtractExpr │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ ├── C13-18.swift.expected │ │ │ │ ├── C13-26.swift.expected │ │ │ │ └── C13-35.swift.expected │ │ │ ├── contextual_type │ │ │ │ └── C7-10.swift.expected │ │ │ └── name_collision │ │ │ │ └── C13-22.swift.expected │ │ ├── basic.swift │ │ ├── contextual_type.swift │ │ └── name_collision.swift │ ├── ExtractFunction │ │ ├── Outputs │ │ │ ├── await │ │ │ │ ├── async1.swift.expected │ │ │ │ ├── async2.swift.expected │ │ │ │ └── consumes_async.swift.expected │ │ │ ├── basic │ │ │ │ ├── L2-5.swift.expected │ │ │ │ ├── L3-4.swift.expected │ │ │ │ └── L3-5.swift.expected │ │ │ ├── extract_attributes │ │ │ │ └── L5-6.swift.expected │ │ │ ├── extract_from_accessor │ │ │ │ ├── ExplicitGetter.swift.expected │ │ │ │ └── ImplicitGetter.swift.expected │ │ │ ├── extract_init │ │ │ │ └── L5-6.swift.expected │ │ │ ├── extract_local │ │ │ │ └── AvoidFilePrivate.swift.expected │ │ │ ├── extract_subscript │ │ │ │ ├── FromGetter.swift.expected │ │ │ │ └── FromSetter.swift.expected │ │ │ ├── extract_sugar │ │ │ │ └── L2-5.swift.expected │ │ │ ├── extract_switch │ │ │ │ ├── Int.swift.expected │ │ │ │ └── Void.swift.expected │ │ │ ├── extract_with_comments │ │ │ │ └── L6-7.swift.expected │ │ │ ├── name_correction │ │ │ │ └── L5-6.swift.expected │ │ │ ├── static │ │ │ │ ├── L3-5.swift.expected │ │ │ │ └── L9-11.swift.expected │ │ │ ├── throw_errors │ │ │ │ ├── L10-12.swift.expected │ │ │ │ ├── L13-17.swift.expected │ │ │ │ ├── L8-8.swift.expected │ │ │ │ └── L9-9.swift.expected │ │ │ ├── throw_errors2 │ │ │ │ └── L7-11.swift.expected │ │ │ └── throw_errors3 │ │ │ │ ├── consumes_err.swift.expected │ │ │ │ └── rethrows_err.swift.expected │ │ ├── await.swift │ │ ├── basic.swift │ │ ├── extract_attributes.swift │ │ ├── extract_from_accessor.swift │ │ ├── extract_init.swift │ │ ├── extract_local.swift │ │ ├── extract_subscript.swift │ │ ├── extract_sugar.swift │ │ ├── extract_switch.swift │ │ ├── extract_with_comments.swift │ │ ├── name_correction.swift │ │ ├── static.swift │ │ ├── throw_errors.swift │ │ ├── throw_errors2.swift │ │ └── throw_errors3.swift │ ├── ExtractRepeat │ │ ├── Outputs │ │ │ ├── await │ │ │ │ ├── one.swift.expected │ │ │ │ └── two.swift.expected │ │ │ └── basic │ │ │ │ ├── foo-one.swift.expected │ │ │ │ ├── one-plus-two.swift.expected │ │ │ │ └── two.swift.expected │ │ ├── await.swift │ │ └── basic.swift │ ├── FillStubs │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── P11-8.swift.expected │ │ │ │ ├── P18-8.swift.expected │ │ │ │ ├── P19-8.swift.expected │ │ │ │ ├── P23-8.swift.expected │ │ │ │ ├── P27-8.swift.expected │ │ │ │ ├── P38-12.swift.expected │ │ │ │ ├── P39-12.swift.expected │ │ │ │ ├── P5-8.swift.expected │ │ │ │ ├── P51-12.swift.expected │ │ │ │ ├── P54-12.swift.expected │ │ │ │ ├── P59-12.swift.expected │ │ │ │ ├── P62-12.swift.expected │ │ │ │ ├── P71-12.swift.expected │ │ │ │ ├── P8-8.swift.expected │ │ │ │ └── P88-12.swift.expected │ │ └── basic.swift │ ├── LocalizeString │ │ ├── Outputs │ │ │ ├── basic │ │ │ │ └── L4.swift.expected │ │ │ └── callexpr │ │ │ │ └── L2.swift.expected │ │ ├── basic.swift │ │ └── callexpr.swift │ ├── LongNumber │ │ ├── Outputs │ │ │ ├── Float.expected │ │ │ ├── Integer.expected │ │ │ ├── NegativeInteger.expected │ │ │ └── PositiveInteger.expected │ │ └── basic.swift │ ├── MemberwiseInit │ │ ├── Outputs │ │ │ └── generate_memberwise │ │ │ │ ├── class_members.swift.expected │ │ │ │ ├── only_computed_members.swift.expected │ │ │ │ └── struct_members.swift.expected │ │ └── generate_memberwise.swift │ ├── MoveMembersToExtension │ │ ├── Outputs │ │ │ ├── L2-5.swift.expected │ │ │ ├── L24-27.swift.expected │ │ │ ├── L3-13.swift.expected │ │ │ ├── L3-5.swift.expected │ │ │ └── L6-8.swift.expected │ │ └── basic.swift │ ├── RefactoringKind │ │ ├── basic.swift │ │ ├── convert_to_switch_statement.swift │ │ ├── crashers.swift │ │ ├── extract.swift │ │ ├── simplify_long_number.swift │ │ └── trailingclosure.swift │ ├── ReplaceBodiesWithFatalError │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L12-14.swift.expected │ │ │ │ ├── L16-49.swift.expected │ │ │ │ ├── L19-22.swift.expected │ │ │ │ ├── L3-5.swift.expected │ │ │ │ ├── L30-44.swift.expected │ │ │ │ ├── L51-59.swift.expected │ │ │ │ ├── L7-10.swift.expected │ │ │ │ └── L8.swift.expected │ │ ├── basic.swift │ │ └── requires-env-var.swift │ ├── SyntacticRename │ │ ├── Outputs │ │ │ ├── backticks-noncollapsible-separate-arglabel.swift.expected │ │ │ ├── backticks-noncollapsible.swift.expected │ │ │ ├── backticks-separate-arglabel.swift.expected │ │ │ ├── backticks.swift.expected │ │ │ ├── call-as-function-base.swift.expected │ │ │ ├── call-as-function-paren-arg.swift.expected │ │ │ ├── call-as-function.swift.expected │ │ │ ├── callsites │ │ │ │ ├── defaults.swift.expected │ │ │ │ ├── mixed.swift.expected │ │ │ │ ├── trailing.swift.expected │ │ │ │ ├── trailing_only.swift.expected │ │ │ │ ├── varargs.swift.expected │ │ │ │ └── varargs2.swift.expected │ │ │ ├── custom-attrs │ │ │ │ ├── Foo.swift.expected │ │ │ │ ├── Other.swift.expected │ │ │ │ └── wrapped.swift.expected │ │ │ ├── functions │ │ │ │ ├── arg-label.swift.expected │ │ │ │ ├── bar.swift.expected │ │ │ │ ├── import.swift.expected │ │ │ │ ├── infix-operator.swift.expected │ │ │ │ ├── init.swift.expected │ │ │ │ ├── memberwise-x.swift.expected │ │ │ │ ├── method.swift.expected │ │ │ │ ├── nested.swift.expected │ │ │ │ ├── no-args.swift.expected │ │ │ │ ├── no-label.swift.expected │ │ │ │ ├── param-label.swift.expected │ │ │ │ ├── prefix-operator.swift.expected │ │ │ │ ├── referenced.swift.expected │ │ │ │ ├── sub.swift.expected │ │ │ │ ├── varargs.swift.expected │ │ │ │ └── whitespace-labels.swift.expected │ │ │ ├── init.swift.expected │ │ │ ├── multiple-trailing-closures-defaulted.swift.expected │ │ │ ├── multiple-trailing-closures.swift.expected │ │ │ ├── objc-keypath │ │ │ │ ├── array.swift.expected │ │ │ │ ├── dict.swift.expected │ │ │ │ ├── inner.swift.expected │ │ │ │ ├── namedtuple.swift.expected │ │ │ │ ├── outer.swift.expected │ │ │ │ ├── outerprop.swift.expected │ │ │ │ ├── prop.swift.expected │ │ │ │ └── tuple.swift.expected │ │ │ ├── property-wrapper-init │ │ │ │ ├── body.swift.expected │ │ │ │ └── init.swift.expected │ │ │ ├── property-wrapper-split │ │ │ │ ├── someValue.swift.expected │ │ │ │ └── split.swift.expected │ │ │ ├── textual │ │ │ │ └── foo.swift.expected │ │ │ ├── types │ │ │ │ ├── alias-FuncType.swift.expected │ │ │ │ ├── associated-Item.swift.expected │ │ │ │ ├── case-another.swift.expected │ │ │ │ ├── case-one.swift.expected │ │ │ │ ├── case-other.swift.expected │ │ │ │ ├── case-qrCode.swift.expected │ │ │ │ ├── class-Animal.swift.expected │ │ │ │ ├── class-Bar.swift.expected │ │ │ │ ├── class-Foo.swift.expected │ │ │ │ ├── enum-Barcode.swift.expected │ │ │ │ ├── enum-WithValue.swift.expected │ │ │ │ ├── generic-T.swift.expected │ │ │ │ ├── generic-U.swift.expected │ │ │ │ └── protocol-Proto.swift.expected │ │ │ └── variables │ │ │ │ ├── ivar-x.swift.expected │ │ │ │ ├── lazy.swift.expected │ │ │ │ ├── pattern-a.swift.expected │ │ │ │ ├── pattern-b.swift.expected │ │ │ │ ├── var-j.swift.expected │ │ │ │ └── var-y.swift.expected │ │ ├── arg_labels_in_comment.swift │ │ ├── backticks-noncollapsible-separate-arglabel.swift │ │ ├── backticks-noncollapsible.swift │ │ ├── backticks-separate-arglabel.swift │ │ ├── backticks.swift │ │ ├── call-as-function-base.swift │ │ ├── call-as-function-paren-arg.swift │ │ ├── call-as-function.swift │ │ ├── callsites.swift │ │ ├── custom-attrs.swift │ │ ├── fixed_crashes.swift │ │ ├── functions.swift │ │ ├── init.swift │ │ ├── invalid-newname.swift │ │ ├── macro-definition.swift │ │ ├── multiple-trailing-closures-defaulted.swift │ │ ├── multiple-trailing-closures.swift │ │ ├── objc-keypath.swift │ │ ├── operator.swift │ │ ├── property-wrapper-init.swift │ │ ├── property-wrapper-split.swift │ │ ├── textual.swift │ │ ├── types.swift │ │ └── variables.swift │ ├── TrailingClosure │ │ ├── Outputs │ │ │ └── basic │ │ │ │ ├── L10.swift.expected │ │ │ │ ├── L13.swift.expected │ │ │ │ ├── L14.swift.expected │ │ │ │ ├── L19.swift.expected │ │ │ │ ├── L7.swift.expected │ │ │ │ ├── L8.swift.expected │ │ │ │ └── L9.swift.expected │ │ ├── basic.swift │ │ └── rdar81106400.swift │ ├── lit.local.cfg │ └── rename │ │ ├── Outputs │ │ ├── basic_ranges │ │ │ ├── C1.swift.expected │ │ │ ├── E1.swift.expected │ │ │ ├── S1.swift.expected │ │ │ ├── SLocal.swift.expected │ │ │ ├── SLocal_init.swift.expected │ │ │ ├── SP1.swift.expected │ │ │ ├── foo4.swift.expected │ │ │ ├── local.swift.expected │ │ │ └── top_level.swift.expected │ │ ├── enum │ │ │ ├── first.swift.expected │ │ │ └── second.swift.expected │ │ ├── local │ │ │ ├── captured_variable.swift.expected │ │ │ ├── casebind_1.swift.expected │ │ │ ├── casebind_2.swift.expected │ │ │ ├── catch_1.swift.expected │ │ │ ├── catch_2.swift.expected │ │ │ ├── ifbind_1.swift.expected │ │ │ ├── ifbind_2.swift.expected │ │ │ ├── localvar_1.swift.expected │ │ │ ├── localvar_2.swift.expected │ │ │ ├── param_1.swift.expected │ │ │ └── param_2.swift.expected │ │ ├── localEnum │ │ │ └── north.swift.expected │ │ ├── prefix_operator │ │ │ └── refactor.swift.expected │ │ └── property │ │ │ └── computed_property.swift.expected │ │ ├── basic.swift │ │ ├── enum.swift │ │ ├── local.swift │ │ ├── localEnum.swift │ │ ├── prefix_operator.swift │ │ ├── property.swift │ │ └── shorthand_shadow.swift ├── remote-run │ ├── Inputs │ │ └── upload │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ └── BAD.txt │ ├── custom-options.test-sh │ ├── download.test-sh │ ├── dry-run-remote.test-sh │ ├── dry-run.test-sh │ ├── env.test-sh │ ├── exit-code.test-sh │ ├── identity.test-sh │ ├── lit.local.cfg │ ├── port.test-sh │ ├── run-only.test-sh │ ├── stderr.test-sh │ ├── upload-and-download.test-sh │ ├── upload-stderr.test-sh │ └── upload.test-sh ├── reproducible-builds │ ├── swiftc-emit-assembly.swift │ ├── swiftc-emit-bc.swift │ ├── swiftc-emit-ir.swift │ ├── swiftc-emit-module.swift │ ├── swiftc-emit-sib.swift │ ├── swiftc-emit-sibgen.swift │ ├── swiftc-emit-silgen.swift │ └── swiftc-emit-tbd.swift ├── sil-func-extractor │ ├── basic.sil │ ├── basic.swift │ ├── functions_to_preserve │ ├── load-serialized-sil.swift │ └── multiple-functions.sil ├── sil-llvm-gen │ └── alloc.sil ├── sil-nm │ └── basic.sil ├── sil-opt │ ├── Inputs │ │ └── guaranteed-normal-args.swift │ ├── emit-sib.swift │ ├── sil-opt.swift │ ├── swift-version.sil │ └── upcoming-feature.sil ├── sil-passpipeline-dump │ └── basic.test-sh ├── stdlib │ ├── AllocRounding.swift │ ├── AnyHashableCasts.swift.gyb │ ├── ArrayBridge.swift.gyb │ ├── ArrayBuffer_CopyContents.swift │ ├── ArrayDiagnostics.swift │ ├── ArrayFilter.swift │ ├── ArrayTypedThrows.swift │ ├── AutoreleasingUnsafeMutablePointer.swift │ ├── AutoreleasingUnsafeMutablePointerDiagnostics.swift │ ├── AutoreleasingUnsafeMutablePointerDiagnostics_warning.swift │ ├── BinaryIntegerRequirements.swift │ ├── BridgeEquatableToObjC.swift │ ├── BridgeIdAsAny.swift.gyb │ ├── BridgeNonVerbatim.swift │ ├── BridgeStorage.swift │ ├── Bridgeable.swift │ ├── BridgedArrayNonContiguous.swift │ ├── BridgedObjectDebuggerSupport.swift │ ├── Builtins.swift │ ├── Bundle.swift │ ├── CRTWinAPIs.swift │ ├── CaseIterableTests.swift │ ├── Character.swift │ ├── CharacterProperties.swift │ ├── CharacterRecognizer.swift │ ├── CharacterTraps.swift │ ├── CodableEnumUnavailableElement.swift │ ├── CodableMultifile.swift │ ├── CodableTests.swift │ ├── CollectionOfOne.swift │ ├── Compatibility50Linking.c │ ├── Concurrency.swift │ ├── DarwinAPI.swift │ ├── DebuggerSupport.swift │ ├── DefaultIndices.swift │ ├── DictionaryCompactMapValues.swift │ ├── DictionaryTraps.swift │ ├── DictionaryUnchecked.swift │ ├── Diffing.swift │ ├── DispatchData.swift │ ├── DispatchDeprecationMacOS.swift │ ├── DispatchDeprecationWatchOS.swift │ ├── DispatchRenames.swift │ ├── DispatchTypes.swift │ ├── Duration.swift │ ├── EmptyCollectionSingletonRealization.swift │ ├── EnumComparableTests.swift │ ├── Error.swift │ ├── ErrorBridged.swift │ ├── Filter.swift │ ├── FixedPointTruncation.swift │ ├── FlatMapDeprecation.swift │ ├── FlattenDistanceFromTo.swift │ ├── Float.swift │ ├── FloatConstants.swift │ ├── FloatingPoint.swift.gyb │ ├── FloatingPointDiagnostics.swift │ ├── FloatingPointIR.swift │ ├── FloatingPointIR_FP80.swift │ ├── ForEachField.swift │ ├── Foundation_NewGenericAPIs.swift │ ├── Identifiable.swift │ ├── ImplicitlyUnwrappedOptional.swift │ ├── IndexDistanceRemoval.swift │ ├── IndexOfRenaming.swift │ ├── InlineArray.swift │ ├── InputStream.swift.gyb │ ├── Inputs │ │ ├── ArrayBridge │ │ │ ├── ArrayBridge.h │ │ │ ├── ArrayBridge.m │ │ │ └── module.modulemap │ │ ├── CodableMultifileOther.swift │ │ ├── CommandLineStressTest │ │ │ ├── CommandLineStressTest.c │ │ │ ├── CommandLineStressTest.h │ │ │ └── CommandLineStressTest.swift │ │ ├── CommonArrayTests.gyb │ │ ├── DictionaryKeyValueTypes.swift │ │ ├── DictionaryKeyValueTypesObjC.swift │ │ ├── ErrorBridgedStaticImpl.h │ │ ├── ErrorBridgedStaticImpl.m │ │ ├── FloatingPointConversion.swift.gyb │ │ ├── FoundationBridge │ │ │ ├── FoundationBridge.h │ │ │ ├── FoundationBridge.m │ │ │ └── module.modulemap │ │ ├── GraphemeBreakTest.txt │ │ ├── KeyPathMultiFile_b.swift │ │ ├── KeyPathMultiModule_b.swift │ │ ├── Mirror │ │ │ ├── Mirror.h │ │ │ ├── Mirror.mm │ │ │ ├── MirrorOther.swift │ │ │ └── module.modulemap │ │ ├── NSSlowString │ │ │ ├── NSSlowString.h │ │ │ ├── NSSlowString.m │ │ │ └── module.modulemap │ │ ├── NSSlowTaggedLocalizedString │ │ │ ├── NSSlowTaggedLocalizedString.h │ │ │ ├── NSSlowTaggedLocalizedString.m │ │ │ └── module.modulemap │ │ ├── NormalizationTest.txt │ │ ├── NormalizationTest16.txt │ │ ├── ObjCEvilClassInitialization │ │ │ ├── EvilClass.h │ │ │ ├── EvilClass.m │ │ │ └── module.modulemap │ │ ├── PrintTestTypes.swift │ │ ├── RuntimeRetroactiveConformance │ │ │ ├── A.swift │ │ │ └── B.swift │ │ ├── SegmentAlignment.swift │ │ ├── SlurpFastEnumeration │ │ │ ├── SlurpFastEnumeration.h │ │ │ ├── SlurpFastEnumeration.m │ │ │ └── module.modulemap │ │ ├── SwiftNativeNSBase │ │ │ └── SwiftNativeNSBase.m │ │ ├── SwiftObjectNSObject │ │ │ └── SwiftObjectNSObject.m │ │ ├── SwiftValueNSObject │ │ │ └── SwiftValueNSObject.m │ │ ├── UIViewControllerAdditions │ │ │ ├── View5Controller.nib │ │ │ ├── View6.nib │ │ │ ├── _TtC4main15View1Controller.nib │ │ │ ├── _TtC4main15View2.nib │ │ │ ├── main.View3Controller.nib │ │ │ └── main.View4.nib │ │ ├── Unicode.rsp │ │ ├── VariadicBool │ │ │ ├── module.modulemap │ │ │ ├── variadicBool.c │ │ │ └── variadicBool.h │ │ ├── WordBreakTest.txt │ │ ├── dlopen_race_dylib.swift │ │ ├── flatMap.gyb │ │ ├── shuffle.jpg │ │ └── tail_allocated_c_array.h │ ├── Int128.swift │ ├── IntegerCompatibility.swift │ ├── IntegerDiagnostics.swift │ ├── Integers.swift.gyb │ ├── IntervalTraps.swift │ ├── KVO.swift │ ├── KVOKeyPaths.swift │ ├── KeyPath.swift │ ├── KeyPathAppending.swift │ ├── KeyPathMultiFile.swift │ ├── KeyPathMultiModule.swift │ ├── KeyPathObjC.swift │ ├── KeyValuePairs.swift │ ├── LazySlice.swift │ ├── Leak.swift │ ├── LifetimeManagement.swift │ ├── ManagedBuffer.swift │ ├── Map.swift │ ├── MapFilterLayerFoldingCompatibilty.swift │ ├── MathConstants.swift │ ├── MetadataPruning.swift │ ├── Mirror.swift │ ├── MirrorWithPacks.swift │ ├── MultipliedFullWidth.swift │ ├── NSArrayAPI.swift │ ├── NSDictionary.swift │ ├── NSEnumeratorAPI.swift │ ├── NSError.swift │ ├── NSItemProvider.swift │ ├── NSKeyedArchival.swift │ ├── NSObject-hashing.swift │ ├── NSObject.swift │ ├── NSSetAPI.swift │ ├── NSSlowString.swift │ ├── NSSlowTaggedLocalizedString.swift │ ├── NSValueBridging.swift.gyb │ ├── Never.swift │ ├── NewString.swift │ ├── NewStringAppending.swift │ ├── Nil.swift │ ├── NoFoundation.swift │ ├── Noncopyables │ │ └── MemoryLayout.swift │ ├── NumericParsing.swift.gyb │ ├── NumericParsing2.swift.gyb │ ├── OSLogExecutionTest.swift │ ├── ObjCEvilClassInitialization.swift │ ├── Observation │ │ ├── Inputs │ │ │ ├── ObservableClass.swift │ │ │ └── ObservableClass2.swift │ │ ├── Observable.swift │ │ ├── ObservableAvailabilityCycle.swift │ │ ├── ObservableAvailabilityCycle2.swift │ │ ├── ObservableDiagnostics.swift │ │ └── ObservableDidSetWillSet.swift │ ├── OptionSetTest.swift │ ├── Optional.swift │ ├── OptionalBridge.swift │ ├── OptionalGeneralizations.swift │ ├── OptionalTraps.swift │ ├── POSIX.swift │ ├── Print.swift │ ├── PrintArray.swift │ ├── PrintBoolean.swift │ ├── PrintClass.swift │ ├── PrintDiagnostics.swift │ ├── PrintDictionary.swift │ ├── PrintFloat.swift.gyb │ ├── PrintFloat16.swift │ ├── PrintFloatLocale.swift.gyb │ ├── PrintInteger.swift │ ├── PrintPointer.swift │ ├── PrintSet.swift │ ├── PrintString.swift │ ├── PrintStruct.swift │ ├── PrintTuple.swift │ ├── Random.swift │ ├── RangeContainsInlining.swift │ ├── RangeDiagnostics.swift │ ├── RangeReplaceableFilterCompatibility.swift │ ├── RangeTraps.swift │ ├── RawRepresentable-tricky-hashing.swift │ ├── Reduce.swift │ ├── Reflection.swift │ ├── ReflectionHashing.swift │ ├── Reflection_jit.swift │ ├── Reflection_objc.swift │ ├── RemoveElements.swift │ ├── Repeat.swift │ ├── Result.swift │ ├── ReverseCompatibility.swift │ ├── Runtime.swift.gyb │ ├── RuntimeObjC.swift │ ├── RuntimeRetroactiveConformance.swift │ ├── SIMD-nontrivial.swift │ ├── SIMD.swift │ ├── SIMDConcreteFP.swift.gyb │ ├── SIMDConcreteIntegers.swift.gyb │ ├── SIMDConcreteMasks.swift.gyb │ ├── SIMDFloatComparisons.swift.gyb │ ├── SIMDFloatInitializers.swift.gyb │ ├── SIMDMaskInitializers.swift.gyb │ ├── SIMDSignedInitializers.swift.gyb │ ├── SIMDUnsignedInitializers.swift.gyb │ ├── SIMD_as_AdditiveArithmetic.swift │ ├── SegmentAlignment.c │ ├── Set.swift │ ├── SetTraps.swift │ ├── SetTrapsObjC.swift │ ├── SmallString.swift │ ├── Span │ │ ├── ArraySpanProperties.swift │ │ ├── BridgedStringUTF8ViewSpanTests.swift │ │ ├── InlineSpanProperties.swift │ │ ├── MutableRawSpanTests.swift │ │ ├── MutableSpanTests.swift │ │ ├── OutputRawSpanTests.swift │ │ ├── OutputSpanTests.swift │ │ ├── RawSpanTests.swift │ │ ├── SmallStringCompatibility.swift │ │ ├── SpanBytesProperty.swift │ │ ├── SpanTests.swift │ │ └── StringUTF8SpanProperty.swift │ ├── StaticBigInt.swift │ ├── StaticPrint.swift │ ├── StaticPrintDisabled.swift │ ├── StaticString.swift │ ├── StdlibUnittestOverrelease.swift │ ├── Strideable.swift │ ├── StringAPI.swift │ ├── StringAPICString.swift │ ├── StringAPICStringDiagnostics.swift │ ├── StringBridge.swift │ ├── StringCompatibility.swift │ ├── StringCompatibilityDiagnostics.swift │ ├── StringCompatibilityDiagnostics4.swift │ ├── StringCreate.swift │ ├── StringDeconstruction.swift │ ├── StringDescribing.swift │ ├── StringDiagnostics.swift │ ├── StringDiagnostics_without_Foundation.swift │ ├── StringFlatMap.swift │ ├── StringIndex.swift │ ├── StringIndex_bincompat.swift │ ├── StringOrderRelation.swift │ ├── StringReallocation.swift │ ├── StringSwitch.swift │ ├── StringTraps.swift │ ├── SwiftObjectNSObject.swift │ ├── SwiftValueNSObject.swift │ ├── Synchronization │ │ ├── Atomics │ │ │ ├── AtomicLazyReference.swift │ │ │ ├── Basics │ │ │ │ ├── AtomicBool.swift.gyb │ │ │ │ ├── AtomicInt.swift.gyb │ │ │ │ ├── AtomicInt16.swift.gyb │ │ │ │ ├── AtomicInt32.swift.gyb │ │ │ │ ├── AtomicInt64.swift.gyb │ │ │ │ ├── AtomicInt8.swift.gyb │ │ │ │ ├── AtomicMutablePointer.swift.gyb │ │ │ │ ├── AtomicMutableRawPointer.swift.gyb │ │ │ │ ├── AtomicOptionalMutablePointer.swift.gyb │ │ │ │ ├── AtomicOptionalMutableRawPointer.swift.gyb │ │ │ │ ├── AtomicOptionalPointer.swift.gyb │ │ │ │ ├── AtomicOptionalRawPointer.swift.gyb │ │ │ │ ├── AtomicOptionalRawRepresentable.swift.gyb │ │ │ │ ├── AtomicOptionalUnmanaged.swift.gyb │ │ │ │ ├── AtomicPointer.swift.gyb │ │ │ │ ├── AtomicRawPointer.swift.gyb │ │ │ │ ├── AtomicRawRepresentable.swift.gyb │ │ │ │ ├── AtomicUInt.swift.gyb │ │ │ │ ├── AtomicUInt16.swift.gyb │ │ │ │ ├── AtomicUInt32.swift.gyb │ │ │ │ ├── AtomicUInt64.swift.gyb │ │ │ │ ├── AtomicUInt8.swift.gyb │ │ │ │ ├── AtomicUnmanaged.swift.gyb │ │ │ │ ├── AtomicWordPair.swift.gyb │ │ │ │ └── Tests.gyb-template │ │ │ ├── LockFreeSingleConsumerStack.swift │ │ │ └── WordPair.swift │ │ └── Mutex │ │ │ └── LockSingleConsumerStack.swift │ ├── TemporaryAllocation.swift │ ├── TestNSNumberBridging.swift │ ├── TestScanner.swift │ ├── ThreadLocalStorage.swift │ ├── Tuple.swift.gyb │ ├── TypeName.swift │ ├── TypeNameInterpolation.swift │ ├── URLSession.swift │ ├── UTF8EncodingErrorTests.swift │ ├── UTF8SpanIteratorTests.swift │ ├── UTF8SpanQueriesComparisons.swift │ ├── UnavailableStringAPIs.swift.gyb │ ├── Unicode.swift │ ├── UnicodeMetadata.swift │ ├── UnicodeScalarDiagnostics.swift │ ├── UnicodeScalarPropertiesTests.swift │ ├── Unmanaged.swift │ ├── UnsafePointer.swift.gyb │ ├── UnsafePointerDiagnostics.swift │ ├── UnsafePointerDiagnostics_warning.swift │ ├── UnsafeRawBufferPointer.swift │ ├── UnsafeRawPointer.swift │ ├── VarArgs.swift │ ├── WASILibcAPI.swift │ ├── WeakMirror.swift │ ├── WinExceptionSuppression.swift │ ├── builtin-ifdef.swift │ ├── collection-combinatorics.swift.gyb │ ├── conditional_collections.swift │ ├── dlopen_race.swift │ ├── freestanding-check-size1.swift │ ├── freestanding-check-size2.swift │ ├── freestanding-check-symbols.test-sh │ ├── freestanding_diags_nostdlib.swift │ ├── freestanding_diags_stdlib.swift │ ├── freestanding_diags_stdlib2.swift │ ├── freestanding_nodiags.swift │ ├── integer_comparison_typeinference.swift │ ├── integer_conversions.swift │ ├── llvm-support-odr-violation-static.test-sh │ ├── llvm-support-odr-violation.test-sh │ ├── mmap.swift │ ├── move_function.swift │ ├── objc-array-slice.swift │ ├── run_inline.swift │ ├── run_inline_die.swift │ ├── runtime_autorelease_optimization.txt │ ├── simd_diagnostics.swift │ ├── sort_integers.swift │ ├── subString.swift │ ├── swap.swift │ ├── symbol-visibility-darwin.test-sh │ ├── symbol-visibility-linux.test-sh │ ├── test_runtime_function_counters.swift │ ├── tgmath.swift.gyb │ ├── tgmath_optimized.swift │ └── unmanaged_rc.swift ├── stmt │ ├── Inputs │ │ └── Foundation-with-NSError.swift │ ├── async.swift │ ├── c_style_for.swift │ ├── defer.swift │ ├── errors.swift │ ├── errors_async.swift │ ├── errors_nonobjc.swift │ ├── errors_objc.swift │ ├── foreach.swift │ ├── if_unexpected_else.swift │ ├── if_while_var.swift │ ├── nonexhaustive_switch_stmt_editor.swift │ ├── pack_iteration.swift │ ├── print │ │ └── then_stmt.swift │ ├── rdar40400251.swift │ ├── statements.swift │ ├── switch_nil.swift │ ├── switch_stmt1.swift │ ├── switch_stmt2.swift │ ├── then_stmt.swift │ ├── then_stmt_disabled.swift │ ├── then_stmt_exec.swift │ ├── typed_throws.swift │ ├── typed_throws_ast.swift │ └── yield.swift ├── swift_test.py └── type │ ├── Inputs │ └── RuntimeAttrs.swift │ ├── array.swift │ ├── builtin_types.swift │ ├── dictionary.swift │ ├── explicit_existential.swift │ ├── explicit_existential_cyclic_protocol.swift │ ├── explicit_existential_diagnostic_group.swift │ ├── explicit_existential_multimodule1.swift │ ├── explicit_existential_multimodule2.swift │ ├── explicit_existential_protocol_typealias.swift │ ├── function │ └── labels.swift │ ├── implicit_some │ ├── explicit_existential.swift │ ├── opaque_parameters.swift │ └── opaque_return.swift │ ├── infer │ ├── closures.swift │ ├── global_variables.swift │ ├── instance_variables.swift │ └── local_variables.swift │ ├── inline_array.swift │ ├── inline_array_disabled.swift │ ├── metatype │ └── metatypes.swift │ ├── nested_types.swift │ ├── objc_direct.swift │ ├── opaque.swift │ ├── opaque_availability.swift │ ├── opaque_constraint_order.swift │ ├── opaque_generic_superclass_constraint.swift │ ├── opaque_parameterized_existential.swift │ ├── opaque_parameters.swift │ ├── opaque_return_dynamic_self.swift │ ├── opaque_return_named.swift │ ├── opaque_return_non_direct.swift │ ├── opaque_return_property.swift │ ├── opaque_return_structural.swift │ ├── opaque_return_type_obc_protocol.swift │ ├── opaque_with_conditional_availability.swift │ ├── pack_expansion.swift │ ├── parameterized_existential.swift │ ├── parameterized_protocol.swift │ ├── protocol_composition.swift │ ├── protocol_types.swift │ ├── protocol_types_swift7.swift │ ├── self.swift │ ├── subclass_composition.swift │ ├── subclass_composition_objc.swift │ ├── tuple │ └── labels.swift │ └── types.swift ├── toolchain-linux.sh ├── toolchain-osx.sh ├── tools ├── CMakeLists.txt ├── SourceKit │ ├── CMakeLists.txt │ ├── README.txt │ ├── bindings │ │ └── python │ │ │ └── sourcekitd │ │ │ ├── __init__.py │ │ │ ├── capi.py │ │ │ └── request.py │ ├── cmake │ │ ├── FlatFrameworkInfo.plist.in │ │ ├── MacOSXFrameworkInfo.plist.in │ │ ├── XPCServiceInfo.plist.in │ │ └── modules │ │ │ └── AddSwiftSourceKit.cmake │ ├── docs │ │ ├── Protocol.md │ │ └── SwiftSupport.txt │ ├── include │ │ ├── CMakeLists.txt │ │ └── SourceKit │ │ │ ├── CMakeLists.txt │ │ │ ├── Config │ │ │ └── config.h.cmake │ │ │ ├── Core │ │ │ ├── CMakeLists.txt │ │ │ ├── Context.h │ │ │ ├── LLVM.h │ │ │ ├── LangSupport.h │ │ │ ├── NotificationCenter.h │ │ │ └── ProtocolUIDs.def.gyb │ │ │ ├── Support │ │ │ ├── CancellationToken.h │ │ │ ├── Concurrency.h │ │ │ ├── FileSystemProvider.h │ │ │ ├── ImmutableTextBuffer.h │ │ │ ├── Logging.h │ │ │ ├── Statistic.h │ │ │ ├── ThreadSafeRefCntPtr.h │ │ │ ├── Tracing.h │ │ │ └── UIdent.h │ │ │ └── SwiftLang │ │ │ └── Factory.h │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── Core │ │ │ ├── CMakeLists.txt │ │ │ ├── Context.cpp │ │ │ ├── LangSupport.cpp │ │ │ └── NotificationCenter.cpp │ │ ├── Support │ │ │ ├── CMakeLists.txt │ │ │ ├── Concurrency-libdispatch.cpp │ │ │ ├── ImmutableTextBuffer.cpp │ │ │ ├── Logging.cpp │ │ │ ├── ThreadSafeRefCntPtr.cpp │ │ │ ├── Tracing.cpp │ │ │ └── UIDRegistry.cpp │ │ └── SwiftLang │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeCompletion.h │ │ │ ├── CodeCompletionOrganizer.cpp │ │ │ ├── CodeCompletionOrganizer.h │ │ │ ├── SwiftASTManager.cpp │ │ │ ├── SwiftASTManager.h │ │ │ ├── SwiftCompile.cpp │ │ │ ├── SwiftCompletion.cpp │ │ │ ├── SwiftConformingMethodList.cpp │ │ │ ├── SwiftDocSupport.cpp │ │ │ ├── SwiftEditor.cpp │ │ │ ├── SwiftEditorDiagConsumer.h │ │ │ ├── SwiftEditorInterfaceGen.cpp │ │ │ ├── SwiftIndexing.cpp │ │ │ ├── SwiftInterfaceGenContext.h │ │ │ ├── SwiftInvocation.h │ │ │ ├── SwiftLangSupport.cpp │ │ │ ├── SwiftLangSupport.h │ │ │ ├── SwiftMangling.cpp │ │ │ ├── SwiftSourceDocInfo.cpp │ │ │ ├── SwiftStatistics.def │ │ │ ├── SwiftSyntacticMacroExpansion.cpp │ │ │ └── SwiftTypeContextInfo.cpp │ └── tools │ │ ├── CMakeLists.txt │ │ ├── complete-test │ │ ├── CMakeLists.txt │ │ └── complete-test.cpp │ │ ├── sourcekitd-repl │ │ ├── CMakeLists.txt │ │ └── sourcekitd-repl.cpp │ │ ├── sourcekitd-test │ │ ├── CMakeLists.txt │ │ ├── Options.td │ │ ├── TestOptions.cpp │ │ ├── TestOptions.h │ │ └── sourcekitd-test.cpp │ │ └── sourcekitd │ │ ├── CMakeLists.txt │ │ ├── bin │ │ ├── CMakeLists.txt │ │ ├── InProc │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeCompletionSwiftInterop.cpp │ │ │ ├── CodeCompletionSwiftInterop.h │ │ │ ├── module.modulemap │ │ │ ├── sourcekitdInProc-darwin.exports │ │ │ ├── sourcekitdInProc.cpp │ │ │ └── sourcekitdInProc.exports │ │ └── XPC │ │ │ ├── CMakeLists.txt │ │ │ ├── Client │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist │ │ │ ├── module.modulemap │ │ │ ├── sourcekitd.cpp │ │ │ └── sourcekitd.exports │ │ │ └── Service │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist │ │ │ └── XPCService.cpp │ │ ├── include │ │ └── sourcekitd │ │ │ ├── CodeCompletionResultsArray.h │ │ │ ├── CompactArray.h │ │ │ ├── DeclarationsArray.h │ │ │ ├── DictionaryKeys.h │ │ │ ├── DocStructureArray.h │ │ │ ├── DocSupportAnnotationArray.h │ │ │ ├── ExpressionTypeArray.h │ │ │ ├── Internal-XPC.h │ │ │ ├── Internal.h │ │ │ ├── Logging.h │ │ │ ├── RawData.h │ │ │ ├── RequestResponsePrinterBase.h │ │ │ ├── Service.h │ │ │ ├── TokenAnnotationsArray.h │ │ │ ├── VariableTypeArray.h │ │ │ ├── module.modulemap │ │ │ ├── plugin.h │ │ │ ├── sourcekitd.h │ │ │ └── sourcekitdInProc-Internal.h │ │ └── lib │ │ ├── API │ │ ├── CMakeLists.txt │ │ ├── CodeCompletionResultsArray.cpp │ │ ├── CompactArray.cpp │ │ ├── DeclarationsArray.cpp │ │ ├── DocStructureArray.cpp │ │ ├── DocSupportAnnotationArray.cpp │ │ ├── ExpressionTypeArray.cpp │ │ ├── RawData.cpp │ │ ├── TokenAnnotationsArray.cpp │ │ ├── UIDHandling.cpp │ │ ├── VariableTypeArray.cpp │ │ ├── sourcekitdAPI-Common.cpp │ │ ├── sourcekitdAPI-InProc.cpp │ │ └── sourcekitdAPI-XPC.cpp │ │ ├── CMakeLists.txt │ │ └── Service │ │ ├── CMakeLists.txt │ │ └── Requests.cpp ├── driver │ ├── CMakeLists.txt │ └── driver.cpp ├── libMockPlugin │ ├── CMakeLists.txt │ ├── MockPlugin.cpp │ ├── c-include-check.c │ └── libMockPlugin.exports ├── libStaticMirror │ ├── CMakeLists.txt │ ├── c-include-check.c │ ├── libStaticMirror.cpp │ └── libStaticMirror.exports ├── lldb-moduleimport-test │ ├── CMakeLists.txt │ └── lldb-moduleimport-test.cpp ├── swift-ast-script │ ├── ASTScript.h │ ├── ASTScriptConfiguration.cpp │ ├── ASTScriptConfiguration.h │ ├── ASTScriptEvaluator.cpp │ ├── ASTScriptParser.cpp │ ├── CMakeLists.txt │ └── swift-ast-script.cpp ├── swift-compatibility-symbols │ ├── CMakeLists.txt │ └── swift-compatibility-symbols.cpp ├── swift-def-to-strings-converter │ ├── CMakeLists.txt │ └── swift-def-to-strings-converter.cpp ├── swift-demangle-fuzzer │ ├── CMakeLists.txt │ └── swift-demangle-fuzzer.cpp ├── swift-demangle-yamldump │ ├── CMakeLists.txt │ └── swift-demangle-yamldump.cpp ├── swift-demangle │ ├── CMakeLists.txt │ └── swift-demangle.cpp ├── swift-ide-test │ ├── CMakeLists.txt │ ├── ModuleAPIDiff.cpp │ ├── ModuleAPIDiff.h │ ├── XMLValidator.cpp │ ├── XMLValidator.h │ └── swift-ide-test.cpp ├── swift-inspect │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── AndroidCLib │ │ │ ├── heap.c │ │ │ └── include │ │ │ │ ├── heap.h │ │ │ │ └── module.modulemap │ │ ├── SwiftInspectClient │ │ │ └── SwiftInspectClient.cpp │ │ ├── SwiftInspectClientInterface │ │ │ ├── SwiftInspectClientInterface.h │ │ │ └── module.modulemap │ │ ├── SwiftInspectLinux │ │ │ ├── ElfFile.swift │ │ │ ├── LinkMap.swift │ │ │ ├── MemoryMap.swift │ │ │ ├── PTrace.swift │ │ │ ├── ProcFS.swift │ │ │ ├── Process.swift │ │ │ ├── RegisterSet.swift │ │ │ ├── SymbolCache.swift │ │ │ └── SystemHeaders │ │ │ │ ├── _auxvec.h │ │ │ │ ├── _elf.h │ │ │ │ ├── _errno.h │ │ │ │ ├── _link.h │ │ │ │ ├── _mman.h │ │ │ │ ├── _ptrace.h │ │ │ │ ├── _signal.h │ │ │ │ ├── _uio.h │ │ │ │ ├── _unistd.h │ │ │ │ ├── _wait.h │ │ │ │ └── module.modulemap │ │ ├── SymbolicationShims │ │ │ ├── SymbolicationShims.h │ │ │ └── module.modulemap │ │ └── swift-inspect │ │ │ ├── AndroidRemoteProcess.swift │ │ │ ├── Backtrace.swift │ │ │ ├── Cleanup.swift │ │ │ ├── DarwinRemoteProcess.swift │ │ │ ├── LinuxRemoteProcess.swift │ │ │ ├── Operations │ │ │ ├── DumpArray.swift │ │ │ ├── DumpCacheNodes.swift │ │ │ ├── DumpConcurrency.swift │ │ │ ├── DumpConformanceCache.swift │ │ │ ├── DumpGenericMetadata.swift │ │ │ └── DumpRawMetadata.swift │ │ │ ├── Process.swift │ │ │ ├── RemoteMirror+Extensions.swift │ │ │ ├── RemoteProcess.swift │ │ │ ├── String+Extensions.swift │ │ │ ├── Symbolication+Extensions.swift │ │ │ ├── WinSDK+Extentions.swift │ │ │ ├── WindowsRemoteProcess.swift │ │ │ └── main.swift │ ├── Tests │ │ ├── LinuxMain.swift │ │ └── swiftInspectTests │ │ │ ├── XCTestManifests.swift │ │ │ └── swiftInspectTests.swift │ └── build_script_helper.py ├── swift-plugin-server │ ├── CMakeLists.txt │ ├── Package.swift │ └── Sources │ │ ├── SwiftInProcPluginServer │ │ └── InProcPluginServer.swift │ │ └── swift-plugin-server │ │ └── swift-plugin-server.swift ├── swift-refactor │ ├── CMakeLists.txt │ └── swift-refactor.cpp ├── swift-reflection-dump │ ├── CMakeLists.txt │ └── swift-reflection-dump.cpp ├── swift-reflection-fuzzer │ ├── CMakeLists.txt │ └── swift-reflection-fuzzer.cpp ├── swift-remoteast-test │ ├── CMakeLists.txt │ ├── messages.h │ └── swift-remoteast-test.cpp ├── swift-scan-test │ ├── CMakeLists.txt │ └── swift-scan-test.cpp ├── swift-serialize-diagnostics │ ├── CMakeLists.txt │ └── swift-serialize-diagnostics.cpp └── swift-stdlib-tool │ ├── CMakeLists.txt │ └── swift-stdlib-tool.cpp ├── unittests ├── AST │ ├── ASTDumperTests.cpp │ ├── ASTWalkerTests.cpp │ ├── ArithmeticEvaluator.cpp │ ├── ArithmeticEvaluatorTypeIDZone.def │ ├── AvailabilityContextTests.cpp │ ├── AvailabilityDomainTests.cpp │ ├── CMakeLists.txt │ ├── DiagnosticBehaviorTests.cpp │ ├── DiagnosticConsumerTests.cpp │ ├── DiagnosticFormattingTests.cpp │ ├── DiagnosticGroupsTests.cpp │ ├── DiagnosticInfoTests.cpp │ ├── ImportTests.cpp │ ├── IndexSubsetTests.cpp │ ├── SourceLocTests.cpp │ ├── TestContext.cpp │ ├── TestContext.h │ ├── TypeMatchTests.cpp │ └── VersionRangeTests.cpp ├── Basic │ ├── BlocklistTest.cpp │ ├── BlotMapVectorTest.cpp │ ├── CMakeLists.txt │ ├── CacheTest.cpp │ ├── ClangImporterOptionsTest.cpp │ ├── ClusteredBitVectorTest.cpp │ ├── DemangleTest.cpp │ ├── DiverseStackTest.cpp │ ├── EditorPlaceholderTest.cpp │ ├── EncodedSequenceTest.cpp │ ├── EnumMapTest.cpp │ ├── ExponentialGrowthAppendingBinaryByteStreamTests.cpp │ ├── FileSystemTest.cpp │ ├── FileTypes.cpp │ ├── FixedBitSetTest.cpp │ ├── FrozenMultiMapTest.cpp │ ├── ImmutablePointerSetTest.cpp │ ├── JSONSerialization.cpp │ ├── ManglingTestData.def │ ├── MultiMapCacheTest.cpp │ ├── OptionSetTest.cpp │ ├── Options.cpp │ ├── OwnedStringTest.cpp │ ├── PointerIntEnumTest.cpp │ ├── PrefixMapTest.cpp │ ├── RangeTest.cpp │ ├── STLExtrasTest.cpp │ ├── SmallMapTest.cpp │ ├── SourceManagerTest.cpp │ ├── StableHasher.cpp │ ├── StringExtrasTest.cpp │ ├── SuccessorMapTest.cpp │ ├── TaggedUnionTest.cpp │ ├── ThreadSafeRefCntPointerTest.cpp │ ├── TransformRangeTest.cpp │ ├── TypeLookupError.cpp │ ├── UnicodeGraphemeBreakTest.cpp.gyb │ └── UnicodeTest.cpp ├── CMakeLists.txt ├── ClangImporter │ ├── CMakeLists.txt │ └── ClangImporterTests.cpp ├── DependencyScan │ ├── CMakeLists.txt │ ├── Features.cpp │ ├── ModuleDeps.cpp │ ├── PrintTarget.cpp │ ├── ScanFixture.cpp │ └── ScanFixture.h ├── Frontend │ ├── ArgParsingTest.cpp │ ├── ArgParsingTest.h │ ├── CMakeLists.txt │ ├── FeatureParsingTest.cpp │ ├── FeatureParsingTest.h │ ├── IsFeatureEnabledTests.cpp │ └── StrictConcurrencyTests.cpp ├── FrontendTool │ ├── CMakeLists.txt │ ├── FrontendToolTests.cpp │ └── ModuleLoadingTests.cpp ├── IDE │ ├── CMakeLists.txt │ ├── CodeCompletionToken.cpp │ ├── FuzzyStringMatcherTest.cpp │ └── Placeholders.cpp ├── Localization │ ├── CMakeLists.txt │ ├── DefToStringsConverterTests.cpp │ ├── LocalizationTest.h │ └── SerializationTests.cpp ├── Parse │ ├── BuildConfigTests.cpp │ ├── CMakeLists.txt │ ├── LexerTests.cpp │ └── TokenizerTests.cpp ├── Reflection │ ├── CMakeLists.txt │ └── TypeRef.cpp ├── Remangler │ ├── CMakeLists.txt │ └── RemangleTest.cpp ├── SIL │ ├── CMakeLists.txt │ └── SILBitfieldTest.cpp ├── SILOptimizer │ ├── CMakeLists.txt │ └── PartitionUtilsTest.cpp ├── Sema │ ├── BindingInferenceTests.cpp │ ├── CMakeLists.txt │ ├── ConstraintGenerationTests.cpp │ ├── ConstraintSimplificationTests.cpp │ ├── ConstraintSystemDumpTests.cpp │ ├── KeypathFunctionConversionTests.cpp │ ├── PlaceholderTypeInferenceTests.cpp │ ├── SemaFixture.cpp │ ├── SemaFixture.h │ ├── SolutionFilteringTests.cpp │ └── UnresolvedMemberLookupTests.cpp ├── SourceKit │ ├── CMakeLists.txt │ ├── Support │ │ ├── CMakeLists.txt │ │ └── ImmutableTextBufferTest.cpp │ └── SwiftLang │ │ ├── CMakeLists.txt │ │ ├── CloseTest.cpp │ │ ├── CursorInfoTest.cpp │ │ ├── EditingTest.cpp │ │ └── NullEditorConsumer.h ├── SwiftDemangle │ ├── CMakeLists.txt │ └── DemangleTest.cpp ├── Threading │ ├── CMakeLists.txt │ ├── ConditionVariable.cpp │ ├── Fatal.cpp │ ├── LinuxUlock.cpp │ ├── LockingHelpers.h │ ├── Mutex.cpp │ ├── Once.cpp │ └── ThreadingHelpers.h └── runtime │ ├── Actor.cpp │ ├── Array.cpp │ ├── CMakeLists.txt │ ├── CompatibilityOverrideConcurrency.cpp │ ├── CompatibilityOverrideRuntime.cpp │ ├── Concurrent.cpp │ ├── Enum.cpp │ ├── ExtendedExistential.cpp │ ├── Heap.cpp │ ├── LongTests │ ├── CMakeLists.txt │ └── LongRefcounting.cpp │ ├── Metadata.cpp │ ├── MetadataObjectBuilder.h │ ├── ObjectBuilder.h │ ├── PrebuiltStringMap.cpp │ ├── Refcounting.cpp │ ├── Refcounting.mm │ ├── SpecifierDSL.h │ ├── StackAllocator.cpp │ ├── Stdlib.cpp │ ├── TaskStatus.cpp │ ├── ThreadingHelpers.h │ ├── TypeLayoutChecks.cpp │ └── weak.mm ├── userdocs ├── CMakeLists.txt └── diagnostics │ ├── .gitignore │ ├── actor-isolated-call.md │ ├── availability-unrecognized-name.md │ ├── clang-declaration-import.md │ ├── compilation-caching.md │ ├── conformance-isolation.md │ ├── deprecated-declaration.md │ ├── diagnostic-descriptions.md │ ├── diagnostic-groups.md │ ├── diagnostics.md │ ├── dynamic-callable-requirements.md │ ├── error-in-future-swift-version.md │ ├── existential-any.md │ ├── existential-member-access-limitations.md │ ├── implementation-only-deprecated.md │ ├── isolated-conformances.md │ ├── member-import-visibility.md │ ├── missing-module-on-known-paths.md │ ├── multiple-inheritance.md │ ├── mutable-global-variable.md │ ├── nominal-types.md │ ├── nonisolated-nonsending-by-default.md │ ├── opaque-type-inference.md │ ├── preconcurrency-import.md │ ├── property-wrapper-requirements.md │ ├── protocol-type-non-conformance.md │ ├── result-builder-methods.md │ ├── sendable-closure-captures.md │ ├── sendable-metatypes.md │ ├── sending-closure-risks-data-race.md │ ├── sending-risks-data-race.md │ ├── strict-language-features.md │ ├── strict-memory-safety.md │ ├── string-interpolation-conformance.md │ ├── temporary-pointers.md │ ├── trailing-closure-matching.md │ ├── unknown-warning-group.md │ └── upcoming-language-features.md ├── utils ├── 80+-check ├── CMakeLists.txt ├── GYBUnicodeDataUtils.py ├── PathSanitizingFileCheck ├── SwiftAtomics.py ├── SwiftFloatingPointTypes.py ├── SwiftIntTypes.py ├── UnicodeData │ ├── COPYRIGHT.txt │ ├── GraphemeBreakProperty.txt │ ├── GraphemeBreakTest.txt │ └── confusables.txt ├── WindowsSDKVFSOverlay.yaml.in ├── analyze_code_size.py ├── analyze_deps.rb ├── android │ ├── __init__.py │ ├── adb │ │ ├── __init__.py │ │ └── commands.py │ ├── adb_clean.py │ ├── adb_push_built_products.py │ ├── adb_push_built_products │ │ ├── __init__.py │ │ └── main.py │ ├── adb_test_runner.py │ └── adb_test_runner │ │ ├── __init__.py │ │ └── main.py ├── api_checker │ ├── CMakeLists.txt │ ├── FrameworkABIBaseline │ │ ├── README │ │ ├── Swift │ │ │ ├── ABI │ │ │ │ └── macos.json │ │ │ └── API │ │ │ │ └── macos.json │ │ ├── _Concurrency │ │ │ └── ABI │ │ │ │ └── macos.json │ │ └── nil.json │ ├── dump-sdk.sh │ ├── sdk-module-lists │ │ ├── create-module-lists.sh │ │ ├── fixed-clang-modules-appletvos.txt │ │ ├── fixed-clang-modules-common.txt │ │ ├── fixed-clang-modules-iosmac.txt │ │ ├── fixed-clang-modules-iphoneos.txt │ │ ├── fixed-clang-modules-macosx.txt │ │ ├── fixed-clang-modules-watchos.txt │ │ ├── fixed-swift-modules-appletvos.txt │ │ ├── fixed-swift-modules-common.txt │ │ ├── fixed-swift-modules-iosmac.txt │ │ ├── fixed-swift-modules-iphoneos.txt │ │ ├── fixed-swift-modules-macosx.txt │ │ ├── fixed-swift-modules-watchos.txt │ │ └── infer-imports.py │ └── swift-api-checker.py ├── apply-fixit-edits.py ├── availability-macros.def ├── backtrace-check ├── bug_reducer │ ├── README.md │ ├── bug_reducer │ │ ├── __init__.py │ │ ├── bug_reducer.py │ │ ├── func_bug_reducer.py │ │ ├── list_reducer.py │ │ ├── opt_bug_reducer.py │ │ ├── random_bug_finder.py │ │ ├── subprocess_utils.py │ │ └── swift_tools.py │ └── tests │ │ ├── __init__.py │ │ ├── test_funcbugreducer.py │ │ ├── test_optbugreducer.py │ │ ├── testfuncbugreducer_testbasic.swift │ │ ├── testoptbugreducer_testbasic.swift │ │ ├── testoptbugreducer_testreducefunction.swift │ │ └── testoptbugreducer_testsuffixinneedofprefix.swift ├── build-presets.ini ├── build-script ├── build-script-impl ├── build-toolchain ├── build-tooling-libs ├── build-windows-toolchain.bat ├── build.cmd ├── build.ps1 ├── build_swift │ ├── README.md │ ├── __init__.py │ ├── build_swift │ │ ├── __init__.py │ │ ├── argparse │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── parser.py │ │ │ └── types.py │ │ ├── cache_utils.py │ │ ├── class_utils.py │ │ ├── constants.py │ │ ├── defaults.py │ │ ├── driver_arguments.py │ │ ├── migration.py │ │ ├── presets.py │ │ ├── shell.py │ │ ├── versions.py │ │ └── wrappers │ │ │ ├── __init__.py │ │ │ └── xcrun.py │ ├── resources │ │ └── SwiftPM-Unified-Build.xcworkspace │ │ │ ├── .gitignore │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── run_tests.py │ └── tests │ │ ├── __init__.py │ │ ├── build_swift │ │ ├── __init__.py │ │ ├── argparse │ │ │ ├── __init__.py │ │ │ ├── test_actions.py │ │ │ ├── test_parser.py │ │ │ └── test_types.py │ │ ├── test_cache_utils.py │ │ ├── test_constants.py │ │ ├── test_defaults.py │ │ ├── test_driver_arguments.py │ │ ├── test_migration.py │ │ ├── test_presets.py │ │ ├── test_shell.py │ │ ├── test_versions.py │ │ └── wrappers │ │ │ ├── __init__.py │ │ │ └── test_xcrun.py │ │ ├── expected_options.py │ │ └── utils.py ├── check-incremental ├── check_freestanding_dependencies.py ├── check_freestanding_size.py ├── chex.py ├── cmpcodesize │ ├── .gitignore │ ├── cmpcodesize.py │ ├── cmpcodesize │ │ ├── __init__.py │ │ ├── compare.py │ │ └── main.py │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ └── test_list_function_sizes.py ├── coverage │ ├── coverage-build-db │ ├── coverage-generate-data │ ├── coverage-query-db │ └── coverage-touch-tests ├── create-filecheck-test.py ├── darwin-installer-scripts │ └── postinstall ├── deserialize-incremental-syntax-tree.swift ├── dev-scripts │ ├── at-to-filelist │ ├── blockifyasm │ ├── csvcolumn_to_scurve.py │ ├── emacs-compile │ ├── scurve_printer.py │ └── split-cmdline ├── download-unpublished-toolchains.py ├── dtrace │ ├── runtime.d │ └── runtime_statistics.d ├── embedded-test-support │ ├── arm-qemu-stm32f1 │ │ ├── linkerscript.ld │ │ └── support.c │ ├── arm-qemu-stm32f4 │ │ ├── linkerscript.ld │ │ └── support.c │ ├── avr-qemu-atmega2560 │ │ ├── linkerscript.ld │ │ └── support.c │ ├── demo.c │ ├── embedded-test-support.py │ ├── libc.c │ └── riscv32-qemu-virt │ │ ├── linkerscript.ld │ │ └── support.c ├── find-overlay-dependencies-loop.sh ├── find-overlay-dependencies.sh ├── find-overlay-deps-closure.sh ├── find-unused-diagnostics.sh ├── gen-unicode-data │ ├── .gitignore │ ├── Data │ │ └── 16 │ │ │ ├── Apple │ │ │ ├── DerivedCoreProperties.txt │ │ │ └── UnicodeData.txt │ │ │ ├── CaseFolding.txt │ │ │ ├── DerivedAge.txt │ │ │ ├── DerivedBinaryProperties.txt │ │ │ ├── DerivedCoreProperties.txt │ │ │ ├── DerivedGeneralCategory.txt │ │ │ ├── DerivedName.txt │ │ │ ├── DerivedNormalizationProps.txt │ │ │ ├── DerivedNumericType.txt │ │ │ ├── DerivedNumericValues.txt │ │ │ ├── GraphemeBreakProperty.txt │ │ │ ├── IndicSyllabicCategory.txt │ │ │ ├── NameAliases.txt │ │ │ ├── PropList.txt │ │ │ ├── ScriptExtensions.txt │ │ │ ├── Scripts.txt │ │ │ ├── SpecialCasing.txt │ │ │ ├── UnicodeData.txt │ │ │ ├── WordBreakProperty.txt │ │ │ └── emoji-data.txt │ ├── Input │ │ ├── CaseData.h │ │ ├── GraphemeData.h │ │ ├── NormalizationData.h │ │ ├── ScalarPropData.h │ │ ├── ScriptData.h │ │ └── WordData.h │ ├── Output │ │ └── Common │ │ │ └── GraphemeData.h │ ├── Package.swift │ ├── README.md │ └── Sources │ │ ├── GenCaseFolding │ │ └── main.swift │ │ ├── GenGraphemeBreakProperty │ │ └── main.swift │ │ ├── GenNormalization │ │ ├── CCC.swift │ │ ├── Comp.swift │ │ ├── Decomp.swift │ │ ├── NFX_QC.swift │ │ ├── NormData.swift │ │ └── main.swift │ │ ├── GenScalarProps │ │ ├── Age.swift │ │ ├── BinProps.swift │ │ ├── GeneralCategory.swift │ │ ├── Mappings.swift │ │ ├── NameAlias.swift │ │ ├── Names.swift │ │ ├── Numeric.swift │ │ └── main.swift │ │ ├── GenScripts │ │ └── main.swift │ │ ├── GenUtils │ │ ├── BitArray.swift │ │ ├── Emit.swift │ │ ├── Files.swift │ │ ├── Flatten.swift │ │ ├── Formatting.swift │ │ ├── Hashing.swift │ │ └── Mph.swift │ │ └── GenWordBreak │ │ └── main.swift ├── generate-doc-index.swift ├── generate-xcode ├── generate_confusables.py ├── get-task-allow.plist ├── gyb ├── gyb.py ├── gyb_foundation_support.py ├── gyb_sourcekit_support │ ├── UIDs.py │ └── __init__.py ├── gyb_stdlib_support.py ├── inferior-swift-mode.el ├── jobstats │ ├── __init__.py │ └── jobstats.py ├── line-directive ├── lldb │ ├── CMakeLists.txt │ ├── lldb-check-expect.in │ ├── lldb-with-tools.in │ ├── lldbCheckExpect.py │ ├── lldbSwiftDataFormatters.py │ └── lldbToolBox.py ├── lsan_leaks_suppression_list.txt ├── merge-features.py ├── optimizer_counters_to_sql.py ├── parser-lib │ ├── darwin-extract-symbols │ └── profile-input.swift ├── pass-pipeline │ ├── README.rst │ ├── scripts │ │ ├── pipeline_generator.py │ │ └── pipelines_build_script.py │ └── src │ │ ├── pass_pipeline.py │ │ ├── pass_pipeline_library.py │ │ └── passes.py ├── process-stats-dir.py ├── process-stats-lost-variables ├── profdata_merge_simple ├── protocol_graph.py ├── pygments │ ├── README.txt │ └── swift.py ├── python_format.py ├── python_lint.py ├── recursive-lipo ├── refactor-check-compiles.py ├── remote-run ├── resolve-crashes.py ├── round-trip-syntax-test ├── rth ├── run-test ├── rusage.py ├── sanitize-address.py ├── scale-test ├── sil-mode.el ├── sil-opt-verify-all-modules.py ├── sourcekit_fuzzer │ └── sourcekit_fuzzer.swift ├── split_file.py ├── submit-benchmark-results ├── swift-abi-symbol-checker.py ├── swift-api-dump.py ├── swift-autocomplete.bash ├── swift-bench.py ├── swift-darwin-postprocess.py ├── swift-mode.el ├── swift-project-settings.el ├── swift-rpathize.py ├── swift-xcodegen │ ├── .gitignore │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── SwiftXcodeGen │ │ │ ├── BuildArgs │ │ │ │ ├── BuildArgs.swift │ │ │ │ ├── ClangBuildArgsProvider.swift │ │ │ │ ├── CommandArgTree.swift │ │ │ │ ├── RunnableTargets.swift │ │ │ │ └── SwiftTargets.swift │ │ │ ├── Command │ │ │ │ ├── Command.swift │ │ │ │ ├── CommandParser.swift │ │ │ │ ├── CompileCommands.swift │ │ │ │ ├── CompileLanguage.swift │ │ │ │ ├── FlagSpec.swift │ │ │ │ └── KnownCommand.swift │ │ │ ├── Concurrency │ │ │ │ ├── Lock.swift │ │ │ │ └── MutexBox.swift │ │ │ ├── Error.swift │ │ │ ├── Generator │ │ │ │ ├── ClangTarget.swift │ │ │ │ ├── ClangTargetSource.swift │ │ │ │ ├── GeneratedProject.swift │ │ │ │ ├── ProjectGenerator.swift │ │ │ │ ├── ProjectSpec.swift │ │ │ │ ├── SchemeGenerator.swift │ │ │ │ ├── SwiftTarget.swift │ │ │ │ ├── SwiftTargetSource.swift │ │ │ │ └── WorkspaceGenerator.swift │ │ │ ├── Logging │ │ │ │ ├── AnsiColor.swift │ │ │ │ └── Logger.swift │ │ │ ├── Ninja │ │ │ │ ├── BuildConfiguration.swift │ │ │ │ ├── NinjaBuildDir.swift │ │ │ │ ├── NinjaBuildFile.swift │ │ │ │ ├── NinjaParser.swift │ │ │ │ └── RepoBuildDir.swift │ │ │ ├── Path │ │ │ │ ├── AbsolutePath.swift │ │ │ │ ├── AnyPath.swift │ │ │ │ ├── DirectoryCache.swift │ │ │ │ ├── FileExtension.swift │ │ │ │ ├── PathProtocol.swift │ │ │ │ └── RelativePath.swift │ │ │ ├── Repo.swift │ │ │ ├── Scanner │ │ │ │ ├── Byte.swift │ │ │ │ └── ByteScanner.swift │ │ │ ├── Utils.swift │ │ │ └── Xcodeproj │ │ │ │ ├── PropertyList.swift │ │ │ │ ├── PropertyListEncoder.swift │ │ │ │ ├── README.md │ │ │ │ ├── XcodeProjectModel.swift │ │ │ │ └── XcodeProjectModelSerialization.swift │ │ └── swift-xcodegen │ │ │ ├── Options.swift │ │ │ └── SwiftXcodegen.swift │ ├── Tests │ │ └── SwiftXcodeGenTest │ │ │ ├── CompileCommandsTests.swift │ │ │ ├── NinjaParserTests.swift │ │ │ ├── PathTests.swift │ │ │ └── ScannerTests.swift │ └── swift-xcodegen ├── swift_build_sdk_interfaces.py ├── swift_build_support │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── run_tests.py │ ├── swift_build_support │ │ ├── __init__.py │ │ ├── build_graph.py │ │ ├── build_script_invocation.py │ │ ├── cmake.py │ │ ├── compiler_stage.py │ │ ├── host_specific_configuration.py │ │ ├── productpipeline_list_builder.py │ │ ├── products │ │ │ ├── __init__.py │ │ │ ├── benchmarks.py │ │ │ ├── cmake_product.py │ │ │ ├── cmark.py │ │ │ ├── curl.py │ │ │ ├── earlyswiftdriver.py │ │ │ ├── foundation.py │ │ │ ├── foundationtests.py │ │ │ ├── indexstoredb.py │ │ │ ├── libcxx.py │ │ │ ├── libdispatch.py │ │ │ ├── libxml2.py │ │ │ ├── llbuild.py │ │ │ ├── lldb.py │ │ │ ├── llvm.py │ │ │ ├── minimalstdlib.py │ │ │ ├── ninja.py │ │ │ ├── playgroundsupport.py │ │ │ ├── product.py │ │ │ ├── skstresstester.py │ │ │ ├── sourcekitlsp.py │ │ │ ├── staticswiftlinux.py │ │ │ ├── stdlib_docs.py │ │ │ ├── swift.py │ │ │ ├── swift_testing.py │ │ │ ├── swift_testing_macros.py │ │ │ ├── swiftdocc.py │ │ │ ├── swiftdoccrender.py │ │ │ ├── swiftdriver.py │ │ │ ├── swiftformat.py │ │ │ ├── swiftfoundationtests.py │ │ │ ├── swiftinspect.py │ │ │ ├── swiftpm.py │ │ │ ├── swiftsyntax.py │ │ │ ├── tsan_libdispatch.py │ │ │ ├── wasisysroot.py │ │ │ ├── wasmkit.py │ │ │ ├── wasmstdlib.py │ │ │ ├── wasmswiftsdk.py │ │ │ ├── xctest.py │ │ │ └── zlib.py │ │ ├── shell.py │ │ ├── targets.py │ │ ├── toolchain.py │ │ ├── utils.py │ │ └── workspace.py │ └── tests │ │ ├── __init__.py │ │ ├── mock-distcc │ │ ├── mock-distcc.cmd │ │ ├── products │ │ ├── __init__.py │ │ ├── test_cmark.py │ │ ├── test_earlyswiftdriver.py │ │ ├── test_llvm.py │ │ ├── test_llvm_linux_cross_compile.py │ │ ├── test_ninja.py │ │ └── test_swift.py │ │ ├── test_build_graph.py │ │ ├── test_cmake.py │ │ ├── test_host_specific_configuration.py │ │ ├── test_shell.py │ │ ├── test_targets.py │ │ ├── test_toolchain.py │ │ └── test_workspace.py ├── swift_snapshot_tool │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── swift_snapshot_tool │ │ │ ├── bisect_toolchains.swift │ │ │ ├── download_toolchain.swift │ │ │ ├── get_tags.swift │ │ │ ├── github_repository.swift │ │ │ ├── list_snapshots.swift │ │ │ ├── logging.swift │ │ │ ├── misc_global_strings.swift │ │ │ ├── run_toolchain.swift │ │ │ └── swift_snapshot_tool.swift │ └── Tests │ │ └── swift_snapshot_toolTests │ │ └── swift_snapshot_toolTests.swift ├── symbolicate-linux-fatal ├── test-clustered-bit-vector │ ├── Makefile │ ├── generator.cpp │ └── test.cpp ├── test-header-footer-layout │ ├── Makefile │ └── TestHeaderFooterLayout.cpp ├── test-prefix-map │ ├── Makefile │ └── main.cpp ├── test-priority-queue │ ├── Makefile │ └── TestPriorityQueue.cpp ├── test-successor-map │ ├── Makefile │ └── main.cpp ├── toolchain-codesign ├── toolchain-installer ├── type-layout-fuzzer.py ├── update-checkout ├── update-checkout.cmd ├── update_checkout │ ├── __init__.py │ ├── run_tests.py │ ├── tests │ │ ├── __init__.py │ │ ├── scheme_mock.py │ │ ├── test_clone.py │ │ ├── test_dump.py │ │ ├── test_merge_config.py │ │ └── test_update_worktree.py │ ├── update-checkout-config.json │ └── update_checkout │ │ ├── __init__.py │ │ └── update_checkout.py ├── viewcfg ├── vim │ ├── CMakeLists.txt │ ├── ftdetect │ │ ├── sil.vim │ │ ├── swift.vim │ │ └── swiftgyb.vim │ ├── ftplugin │ │ ├── swift.vim │ │ └── swiftgyb.vim │ └── syntax │ │ ├── sil.vim │ │ ├── swift.vim │ │ └── swiftgyb.vim ├── wasm-run.py ├── windows-llvm-lit-test-overrides.txt └── windows-swift-android-lit-test-overrides.txt └── validation-test ├── BuildSystem ├── LTO │ ├── host-libraries-do-have-bitcode.test-sh │ ├── lto-object-files-only-have-line-tables.test-sh │ ├── object-files-do-have-bitcode.test-sh │ └── target-libraries-do-not-have-bitcode.test-sh ├── android_cross_compile.test ├── build_lld.test ├── build_worktree.test ├── clean_install_destroot.test ├── cmark_crosscompile_using_toolchain_always.test ├── core_lipo_and_non_core_epilogue_opts.test ├── default_build_still_performs_epilogue_opts_after_split.test ├── dsymutil_jobs.test ├── extra_dsymutil_args.test ├── extra_dsymutil_args_empty.test ├── extractsymbols-darwin-symroot-path-filters.test ├── extractsymbols-default-behaviour.test ├── extractsymbols-dry-run-does-not-fail.test ├── infer-cross-compile-hosts-on-darwin-linux.test ├── infer-cross-compile-hosts-on-darwin-macosx.test ├── infer_dumps_deps_if_verbose_build.test ├── infer_implies_install_all.test ├── install_all.test ├── install_all_linux.test ├── lit.local.cfg ├── llvm-build-compiler-rt-on-linux.test ├── llvm-build-compiler-rt-on-macosx.test ├── llvm-build-compiler-rt-with-use-runtimes.test ├── llvm-targets-options-for-cross-compile-hosts.test ├── llvm-targets-options.test ├── reconfigure-passed-to-build-script-impl.test ├── relocate_xdg_cache_home_under_build_subdir.test ├── skip-local-build.test-sh ├── skip_clean_corelibs.test ├── skip_clean_llbuild.test ├── skip_cmark_swift_llvm.test ├── swift-xcodegen.test ├── test_early_swift_driver_and_infer.swift └── test_skip_early_swift_driver.test ├── Casting ├── BoxingCasts-4.test ├── BoxingCasts-4none.test ├── BoxingCasts-5.test ├── BoxingCasts-5none.test └── Inputs │ └── BoxingCasts.swift.gyb ├── ClangImporter ├── Inputs │ ├── bridging-header-reentrancy │ │ ├── A.h │ │ ├── App-Bridging-Header.h │ │ ├── B.h │ │ ├── C.h │ │ ├── CoincidentalNameCollision.h │ │ ├── CoincidentalNameCollision.swift │ │ ├── D.h │ │ ├── E.h │ │ ├── F.h │ │ ├── G.h │ │ ├── H.h │ │ ├── I.h │ │ ├── J.h │ │ ├── K.h │ │ ├── L.h │ │ ├── M.h │ │ ├── Main-Bridging-Header.h │ │ ├── N.h │ │ ├── O.h │ │ ├── P.h │ │ ├── Q.h │ │ ├── R.h │ │ ├── S.h │ │ ├── T.h │ │ ├── U.h │ │ ├── V.h │ │ ├── W.h │ │ ├── X.h │ │ ├── Y.h │ │ ├── Z.h │ │ └── module.modulemap │ ├── explicit-system-framework-path │ │ ├── override │ │ │ ├── Test.framework │ │ │ │ ├── Headers │ │ │ │ │ └── Test.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── TestUser.framework │ │ │ │ ├── Headers │ │ │ │ └── TestUser.h │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── sdkroot │ │ │ └── Library │ │ │ └── Frameworks │ │ │ └── Test.framework │ │ │ ├── Headers │ │ │ └── Test.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── macros-repeatedly-redefined │ │ ├── A.h │ │ ├── B.h │ │ ├── C.h │ │ ├── D.h │ │ ├── E.h │ │ ├── F.h │ │ └── module.modulemap ├── bridging-header-reentrancy.swift ├── cfobject-conformances.swift ├── explicit-system-framework-path.swift ├── macros-repeatedly-redefined.swift └── memcmp-definitions.swift ├── Concurrency └── rdar107275872.swift ├── Driver ├── Inputs │ └── clang_rt-helper.h ├── clang_rt.swift └── many-inputs.swift ├── Evolution ├── Inputs │ ├── backward_deploy_always_emit_into_client.swift │ ├── backward_deploy_class.swift │ ├── backward_deploy_conformance.swift │ ├── backward_deploy_enum.swift │ ├── backward_deploy_protocol.swift │ ├── backward_deploy_struct.swift │ ├── backward_deploy_top_level.swift │ ├── bitwise_takable.swift │ ├── change_default_argument_to_magic.swift │ ├── class_add_convenience_init.swift │ ├── class_add_deinit.swift │ ├── class_add_property.swift │ ├── class_add_property_attribute.swift │ ├── class_add_property_subclass.swift │ ├── class_change_lazy_to_computed.swift │ ├── class_change_size.swift │ ├── class_change_stored_to_computed.swift │ ├── class_change_stored_to_observed.swift │ ├── class_fixed_layout_add_virtual_method.swift │ ├── class_fixed_layout_add_virtual_method_subclass.swift │ ├── class_fixed_layout_superclass_reorder_methods.swift │ ├── class_insert_superclass.swift │ ├── class_remove_property.swift │ ├── class_resilient_add_override.swift │ ├── class_resilient_add_virtual_method.swift │ ├── class_resilient_add_virtual_method_subclass.swift │ ├── class_resilient_superclass_methods.swift │ ├── class_resilient_superclass_properties.swift │ ├── class_resilient_superclass_reorder_methods.swift │ ├── conformance_reference.swift │ ├── enum_add_cases.swift │ ├── enum_add_cases_trap.swift │ ├── enum_change_size.swift │ ├── enum_reorder_cases.swift │ ├── function_change_transparent_body.swift │ ├── generic_resilient_struct_add_property.swift │ ├── global_change_size.swift │ ├── global_stored_to_computed.swift │ ├── keypath_default_argument.swift │ ├── keypaths.swift.gyb │ ├── keypaths_gyb.py │ ├── move_method_to_extension.swift │ ├── opaque_archetypes_change_underlying_type.swift │ ├── protocol_add_requirements.swift │ ├── protocol_reorder_requirements.swift │ ├── rth.swift │ ├── struct_add_initializer.swift │ ├── struct_add_property.swift │ ├── struct_add_property_attribute.swift │ ├── struct_change_lazy_to_computed.swift │ ├── struct_change_size.swift │ ├── struct_change_stored_to_computed.swift │ ├── struct_change_stored_to_computed_static.swift │ ├── struct_change_stored_to_observed.swift │ ├── struct_fixed_layout_add_conformance.swift │ ├── struct_fixed_layout_remove_conformance.swift │ ├── struct_remove_property.swift │ ├── struct_resilient_add_conformance.swift │ ├── struct_resilient_remove_conformance.swift │ └── struct_static_stored_to_computed.swift ├── README.md ├── test_backward_deploy_always_emit_into_client.swift ├── test_backward_deploy_class.swift ├── test_backward_deploy_conformance.swift ├── test_backward_deploy_enum.swift ├── test_backward_deploy_protocol.swift ├── test_backward_deploy_struct.swift ├── test_backward_deploy_top_level.swift ├── test_bitwise_takable.swift ├── test_change_default_argument_to_magic.swift ├── test_class_add_convenience_init.swift ├── test_class_add_deinit.swift ├── test_class_add_property.swift ├── test_class_add_property_attribute.swift ├── test_class_add_property_subclass.swift ├── test_class_change_lazy_to_computed.swift ├── test_class_change_size.swift ├── test_class_change_stored_to_computed.swift ├── test_class_change_stored_to_observed.swift ├── test_class_fixed_layout_add_virtual_method.swift ├── test_class_fixed_layout_add_virtual_method_subclass.swift ├── test_class_fixed_layout_superclass_reorder_methods.swift ├── test_class_insert_superclass.swift ├── test_class_remove_property.swift ├── test_class_resilient_add_override.swift ├── test_class_resilient_add_virtual_method.swift ├── test_class_resilient_add_virtual_method_subclass.swift ├── test_class_resilient_superclass_methods.swift ├── test_class_resilient_superclass_properties.swift ├── test_class_resilient_superclass_reorder_methods.swift ├── test_conformance_reference.swift ├── test_enum_add_cases.swift ├── test_enum_add_cases_trap.swift ├── test_enum_change_size.swift ├── test_enum_reorder_cases.swift ├── test_function_change_transparent_body.swift ├── test_generic_resilient_struct_add_property.swift ├── test_global_change_size.swift ├── test_global_stored_to_computed.swift ├── test_keypath_default_argument.swift ├── test_keypaths.swift.gyb ├── test_move_method_to_extension.swift ├── test_opaque_archetypes_change_underlying_type.swift ├── test_protocol_add_requirements.swift ├── test_protocol_reorder_requirements.swift ├── test_rth.swift ├── test_struct_add_initializer.swift ├── test_struct_add_property.swift ├── test_struct_add_property_attribute.swift ├── test_struct_change_lazy_to_computed.swift ├── test_struct_change_size.swift ├── test_struct_change_stored_to_computed.swift ├── test_struct_change_stored_to_computed_static.swift ├── test_struct_change_stored_to_observed.swift ├── test_struct_fixed_layout_add_conformance.swift ├── test_struct_fixed_layout_remove_conformance.swift ├── test_struct_remove_property.swift ├── test_struct_resilient_add_conformance.swift ├── test_struct_resilient_remove_conformance.swift └── test_struct_static_stored_to_computed.swift ├── IDE ├── complete_from_cocoa.swift ├── complete_from_cocoa_2.swift ├── complete_repl_from_cocoa.swift ├── complete_sdk_is_symlink.swift ├── complete_sdk_platform.swift ├── crashers │ ├── 0798f041dcc07b.swift │ ├── 10223dd7c9d04e.swift │ ├── 10b243ac3f1f8d7b.swift │ ├── 1118c1956154924d.swift │ ├── 15d1c6f76ad86540.swift │ ├── 1ac322cbf02c111.swift │ ├── 2310a05b9a395ec4.swift │ ├── 23da5344b07b939.swift │ ├── 27fbd11892a31ee.swift │ ├── 2b1c3dd8eaf1b69.swift │ ├── 34e0183b6ceafde.swift │ ├── 3b831ad3cd6afbc3.swift │ ├── 3d85becf2d330a5.swift │ ├── 488be7ca295930f4.swift │ ├── 4c8b451fbe19cd6.swift │ ├── 524ea7a5cd78074.swift │ ├── 57152fc126fa3fd.swift │ ├── 587183a047cbcead.swift │ ├── 63cae8d8f799869.swift │ ├── 64cbd48634eb9eac.swift │ ├── 700c7172dd0e486.swift │ ├── 7361e81dcc17636c.swift │ ├── 73f3b9a72697ee92.swift │ ├── 78f1273d34b9916a.swift │ ├── 7b2825e90bfce47.swift │ ├── 7d168ea6c6715a7c.swift │ ├── 7dfd3dd444f43abb.swift │ ├── 81f0b4a8709d344d.swift │ ├── 8447838e019fde.swift │ ├── 8659dc98be5856f6.swift │ ├── 8668a3eb11f2baf.swift │ ├── 8681205caefae96e.swift │ ├── 88724bf42982b346.swift │ ├── 96faa1ddefcb57f.swift │ ├── 9949f94be543b413.swift │ ├── 9a6a167b9c9fe2e.swift │ ├── 9b90cd875bff6ab4.swift │ ├── a41cd43f2f603f31.swift │ ├── a51bc03e2023ede5.swift │ ├── acb013ae9149246.swift │ ├── af7ab366b78927.swift │ ├── b72ab48c2f29a3a.swift │ ├── bf2a1e697e134b1b.swift │ ├── c65ac26afb25b40.swift │ ├── c9107b491555f468.swift │ ├── ce6e7a44344828a0.swift │ ├── d02ac29b7ce07e7d.swift │ ├── d3a218e4a4e3b8e.swift │ ├── d7b68d1c9ccf2f4.swift │ ├── dac216ff43c557e.swift │ ├── e6f077eee83be8a7.swift │ ├── ebec93dfd96612ef.swift │ ├── f03bb3278d3341d9.swift │ ├── f1328ad669bd7cf8.swift │ ├── f13530ddd8d62d26.swift │ ├── f75dad9059dcd5e4.swift │ ├── f98762f9df9ed0fa.swift │ ├── fa71279755a2cb53.swift │ ├── fd1bd523c6eba84d.swift │ └── lit.local.cfg ├── crashers_2_fixed │ ├── 0001-complete-typeloc-in-generic-signature.swift │ ├── 0002-complete-unbound-generic-type.swift │ ├── 0003-complete-default-argument-closure.swift │ ├── 0004-unmapped-dependent-type.swift │ ├── 0005-should-have-found-non-type-context-by-now.swift │ ├── 0006-crazy-associated-types.swift │ ├── 0007-archetype-not-in-context.swift │ ├── 0008-must-conform-to-literal-protocol.swift │ ├── 0009-protocol-extension-self-assign.swift │ ├── 0010-reference-to-self-in-extension-init.swift │ ├── 0011-complete-protocol-with-initializer.swift │ ├── 0012-protocol-where-clause.swift │ ├── 0013-unmapped-dependent-type-2.swift │ ├── 0014-issue-47137.swift │ ├── 0015-pound-if-without-endif.swift │ ├── 0016-operator-unresolved-dot.swift │ ├── 0017-editorplacehoder-at-eof.swift │ ├── 0018-rdar38189778.swift │ ├── 0019-rdar39909829.swift │ ├── 0020-rdar42056741.swift │ ├── 0021-lexer-commentlength.swift │ ├── 0022-rdar42678836.swift │ ├── 0023-rdar41331096.swift │ ├── 0024-complete_repl_decl_conformance.swift │ ├── 0025-complete_repl_extension_where.swift │ ├── 0026-completion-type-not-part-of-solution.swift │ ├── 0027-autoclosure-curry-thunk.swift │ ├── 0028-member-reference-error-type.swift │ ├── 0029-closure-implicit-return.swift │ ├── 0030-arg-completion-no-locator.swift │ ├── 0031-fallback-typecheck-call-arg.swift │ ├── 0032-constructor-call-in-result-builder.swift │ ├── 0033-dont-optimize-constraints-for-ignored-args.swift │ ├── 0033-trailing-closure-arg-label-matching.swift │ ├── 0034-closure-solution-application-target-applied-twice.swift │ ├── 0035-closure-solution-application-target-applied-twice-2.swift │ ├── 0036-callee-locator-with-null-anchor.swift │ ├── 0036-conformingmethodlist-already-typechecked.swift │ ├── 0037-constructor-with-error-type.swift │ ├── 0038-setTypeForArgumentIgnoredForCompletion.swift │ ├── 0039-not-all-primary-assoc-types-specified.swift │ ├── issue-50992.swift │ ├── issue-51072.swift │ ├── issue-51086.swift │ ├── issue-51504.swift │ ├── issue-56849.swift │ ├── issue-57037.swift │ ├── issue-57043.swift │ ├── issue-57054.swift │ ├── issue-57059.swift │ ├── issue-57089.swift │ ├── issue-57105.swift │ ├── issue-57807.swift │ ├── pr-82147.swift │ ├── rdar102958462.swift │ ├── rdar103300572.swift │ ├── rdar119408961.swift │ ├── rdar126923558.swift │ ├── rdar128661960.swift │ ├── rdar41224316.swift │ ├── rdar42098113.swift │ ├── rdar42639255.swift │ ├── rdar42828673.swift │ ├── rdar43625800.swift │ ├── rdar48648877.swift │ ├── rdar48896424.swift │ ├── rdar52105899.swift │ ├── rdar56834798.swift │ ├── rdar58470999.swift │ ├── rdar64141399-complete_generic_property_wrapper_initialization.swift │ ├── rdar64265821.swift │ ├── rdar65556791.swift │ ├── rdar67102611.swift │ ├── rdar69246891.swift │ ├── rdar71566576.swift │ ├── rdar75200446.swift │ ├── rdar75219757.swift │ ├── rdar75299825.swift │ ├── rdar75366814.swift │ ├── rdar76686564.swift │ ├── rdar78017503.swift │ ├── rdar78781163.swift │ ├── rdar85609548.swift │ └── rdar91765262.swift ├── crashers_fixed │ ├── 001-swift-ide-removecodecompletiontokens.swift │ ├── 002-swift-diagnosticengine-emitdiagnostic.swift │ ├── 003-swift-typebase-getcanonicaltype.swift │ ├── 004-swift-typebase-getmembersubstitutions.swift │ ├── 005-swift-typechecker-gettypeofexpressionwithoutapplying.swift │ ├── 006-swift-declcontext-getprotocolself.swift │ ├── 007-swift-configureimplicitself.swift │ ├── 008-swift-typechecker-typecheckfunctionbodyuntil.swift │ ├── 009-swift-performdelayedparsing.swift │ ├── 010-swift-archetypebuilder-addrequirement.swift │ ├── 011-swift-lookupvisibledecls.swift │ ├── 012-swift-mangle-mangler-manglecontext.swift │ ├── 013-swift-constraints-constraintgraph-addconstraint.swift │ ├── 014-swift-parser-parsedeclvar.swift │ ├── 015-swift-typechecker-lookupunqualified.swift │ ├── 016-swift-mangle-mangler-mangleidentifier.swift │ ├── 017-swift-expr-walk.swift │ ├── 018-swift-type-transform.swift │ ├── 019-swift-vardecl-emitlettovarnoteifsimple.swift │ ├── 020-swift-typechecker-validategenericfuncsignature.swift │ ├── 021-swift-typechecker-resolveidentifiertype.swift │ ├── 022-swift-typechecker-applygenericarguments.swift │ ├── 023-swift-archetypebuilder-addgenericparameter.swift │ ├── 024-swift-archetypebuilder-potentialarchetype-getrepresentative.swift │ ├── 025-swift-mangle-mangler-bindgenericparameters.swift │ ├── 026-swift-mangle-mangler-mangletype.swift │ ├── 027-swift-typebase-getdesugaredtype.swift │ ├── 028-swift-typechecker-validategenericsignature.swift │ ├── 029-swift-decl-walk.swift │ ├── 030-swift-mangle-mangler-mangledecltype.swift │ ├── 031-swift-mangle-mangler-manglenominaltype.swift │ ├── 032-swift-expr-propagatelvalueaccesskind.swift │ ├── 033-swift-identifier-isoperatorslow.swift │ ├── 034-swift-specializedprotocolconformance-gettypewitnesssubstanddecl.swift │ ├── 035-swift-typechecker-validatedecl.swift │ ├── 036-swift-constraints-constraintsystem-matchdeepequalitytypes.swift │ ├── 037-swift-typechecker-resolvetypeincontext.swift │ ├── 038-swift-mangle-mangler-getdecltypeformangling.swift │ ├── 039-swift-typechecker-checkconformance.swift │ ├── 040-swift-typechecker-typecheckconstructorbodyuntil.swift │ ├── 041-swift-archetypebuilder-getgenericsignature.swift │ ├── 042-swift-typechecker-checkgenericarguments.swift │ ├── 043-swift-boundgenerictype-getsubstitutions.swift │ ├── 044-swift-dependentgenerictyperesolver-resolveselfassociatedtype.swift │ ├── 045-swift-protocoldecl-requiresclassslow.swift │ ├── 046-swift-typechecker-typecheckdecl.swift │ ├── 047-swift-typechecker-typechecktoplevelcodedecl.swift │ ├── 048-swift-completegenerictyperesolver-resolvedependentmembertype.swift │ ├── 049-swift-typechecker-resolvewitness.swift │ ├── 050-swift-constraints-constraintsystem-matchtypes.swift │ ├── 051-swift-mangle-mangler-mangleassociatedtypename.swift │ ├── 052-swift-mangle-mangler-manglegenericsignatureparts.swift │ ├── 053-swift-typebase-getsuperclass.swift │ ├── 054-swift-moduledecl-forallvisiblemodules.swift │ ├── 055-swift-valuedecl-getoverloadsignature.swift │ ├── 056-swift-archetypebuilder-getallarchetypes.swift │ ├── 057-swift-valuedecl-settype.swift │ ├── 058-swift-constraints-constraintsystem-diagnosefailureforexpr.swift │ ├── 059-swift-iterativetypechecker-processinheritedprotocols.swift │ ├── 060-swift-constructordecl-getresulttype.swift │ ├── 061-swift-constraints-solution-coercetotype.swift │ ├── 062-swift-constraints-solution-computesubstitutions.swift │ ├── 063-swift-generictypeparamtype-get.swift │ ├── 064-swift-genericfunctiontype-get.swift │ ├── 066-swift-conformancelookuptable-expandimpliedconformances.swift │ ├── 067-swift-constraints-constraintsystem-resolveoverload.swift │ ├── 068-swift-typechecker-resolvetypewitness.swift │ ├── 069-swift-typechecker-typecheckparameterlist.swift │ ├── 070-swift-archetypebuilder-maptypeintocontext.swift │ ├── 071-swift-printoptions-setarchetypetransform.swift │ ├── 072-swift-constraints-constraintsystem-opengeneric.swift │ ├── 073-swift-archetypebuilder-enumeraterequirements.swift │ ├── 074-swift-valuedecl-geteffectiveaccess.swift │ ├── 075-swift-printoptions-setarchetypeselftransform.swift │ ├── 076-swift-typechecker-checkinheritanceclause.swift │ ├── 077-swift-archetypebuilder-potentialarchetype-gettype.swift │ ├── 078-swift-iterativetypechecker-processtypechecksuperclass.swift │ ├── 079-swift-archetypebuilder-maptypeoutofcontext.swift │ ├── 080-swift-valuedecl-getinterfacetype.swift │ ├── 081-swift-genericsignature-getsubstitutionmap.swift │ ├── 082-swift-typebase-gatherallsubstitutions.swift │ ├── 083-swift-declcontext-getgenericparamsofcontext.swift │ ├── 084-swift-parser-consumedecl.swift │ ├── 085-swift-persistentparserstate-delaytoplevel.swift │ ├── 086-swift-printoptions-setarchetypeanddynamicselftransform.swift │ ├── 087-swift-declcontext-getparentmodule.swift │ ├── 088-swift-typechecker-performtypocorrection.swift │ ├── 089-swift-namealiastype-getsinglydesugaredtype.swift │ ├── 090-swift-iterativetypechecker-satisfy.swift │ ├── 091-swift-typechecker-computedefaultaccessibility.swift │ ├── 092-swift-genericenvironment-genericenvironment.swift │ ├── 093-swift-valuedecl-getformalaccessscope.swift │ ├── 094-swift-typechecker-lookupmembertype.swift │ ├── 095-swift-declcontext-getresilienceexpansion.swift │ ├── 096-swift-genericsignature-getarchetypebuilder.swift │ ├── 097-swift-archetypebuilder-addgenericsignature.swift │ ├── 098-swift-declcontext-lookupqualified.swift │ ├── 099-swift-genericenvironment-maptypeintocontext.swift │ ├── 100-swift-mangle-mangler-mangledeclname.swift │ ├── 101-swift-decl-print.swift │ ├── 102-swift-typechecker-gettypeofrvalue.swift │ ├── 103-swift-constraints-solution-resolvelocatortodecl.swift │ ├── 104-swift-gettypeofcompletioncontextexpr.swift │ ├── 105-swift-derivedconformance-deriverawrepresentable.swift │ ├── 106-swift-moduledecl-lookupconformance.swift │ ├── 107-swift-typechecker-typecheckabstractfunctionbodyuntil.swift │ ├── 108-swift-typechecker-typecheckcompletionsequence.swift │ ├── 109-swift-constraints-constraintgraph-change-addedtypevariable.swift │ ├── 14fef9539c874eb2.swift │ ├── 4e946c4a77ce8d.swift │ ├── 539adae64314fae.swift │ ├── 59ed4db5bf91f452.swift │ ├── 6492c324dc6bdc2.swift │ ├── 6cef534b98d6b512.swift │ ├── 7068664dc48e3152.swift │ ├── 70921c2dbc55979.swift │ ├── ab16c0e38dae31b3.swift │ ├── ad7672295e2e882c.swift │ ├── assign-anyobject.swift │ ├── b59b74aac149f67f.swift │ ├── ba845eb07913ee41.swift │ ├── extension-protocol-composition.swift │ ├── issue-57321.swift │ ├── rdar50666427.swift │ ├── rdar98565072.swift │ └── subexpr-literal-in-sequence-expr.swift ├── issues_fixed │ ├── issue-55423.swift │ ├── issue-57041.swift │ ├── issue-57148.swift │ ├── issue-57149.swift │ ├── issue-57439.swift │ ├── issue-75845.swift │ ├── issue-77335.swift │ ├── rdar120798355.swift │ ├── rdar127838305.swift │ ├── rdar149032713.swift │ ├── rdar63063279.swift │ ├── rdar64227741.swift │ └── rdar69813796.swift ├── print_stdlib_specialized.swift ├── slow │ └── rdar45511835.swift └── stress_tester_issues_fixed │ ├── issue-57058.swift │ ├── issue-78397.swift │ ├── issue-80591.swift │ ├── pr-81028.swift │ ├── rdar93127707.swift │ └── rdar94619388.swift ├── IRGen ├── 98995607.swift.gyb ├── Inputs │ ├── issue-49393.h │ ├── rdar79513293_Library.swift │ └── rdar79513293_Resilient.swift ├── gh72536.swift ├── issue-49393.swift ├── issue-72719.swift ├── moveonly_partial_consumption_linked_list.swift ├── pack_stack_metadata_alloc_loop.sil ├── rdar101179225.swift ├── rdar108614878.swift ├── rdar109540863.swift ├── rdar114013709.swift ├── rdar127535274.swift ├── rdar136388508.swift ├── rdar141718098.swift ├── rdar147207926.swift ├── rdar149985633.swift ├── rdar151726387.sil ├── rdar152580661.swift ├── rdar153681688.swift ├── rdar79513293.swift └── rdar83158525.swift ├── NameBinding └── inconsistent-implementation-only-errors.swift ├── Parse ├── delayed-members-open-if.swift └── delayed-members-open-prop-scope.swift ├── ParseableInterface ├── Inputs │ └── failing-overlay │ │ ├── HasOverlay.h │ │ ├── HasOverlay.swiftinterface │ │ ├── ImportsOverlay.h │ │ └── module.modulemap ├── broken-optionset.swiftinterface ├── failing-overlay.swift ├── lit.local.cfg ├── rdar128577611.swift ├── rdar133020098.swift ├── unsafe-mainactor.swift ├── verify_all_overlays.py ├── verify_simd.swift └── verify_stdlib.swift ├── Python ├── bug-reducer.test-sh ├── build_swift.swift ├── call_swiftc_after_relocate_xdg_cache_home_under.swift ├── cmpcodesize.swift ├── gyb.swift ├── line-directive.swift ├── swift_build_support.swift └── update_checkout.swift ├── Reflection ├── Inputs │ ├── EmptyStruct │ │ ├── EmptyStruct.h │ │ └── module.modulemap │ ├── ObjCClasses │ │ ├── ObjCClasses.h │ │ ├── ObjCClasses.m │ │ └── module.modulemap │ └── reflect_Enum_values_resilient_enums.swift ├── existentials.swift ├── existentials_objc.swift ├── functions.swift ├── functions_objc.swift ├── inherits_NSObject.swift ├── inherits_ObjCClasses.swift ├── inherits_Swift.swift ├── reflect_Actor.swift ├── reflect_Array.swift ├── reflect_Bool.swift ├── reflect_Character.swift ├── reflect_CheckedContinuation.swift ├── reflect_Class_nested_generic.swift ├── reflect_Cxx.swift ├── reflect_Dictionary.swift ├── reflect_Double.swift ├── reflect_Enum_254CaseNoPayloads.swift ├── reflect_Enum_CF.swift ├── reflect_Enum_MultiPayload_bulky.swift ├── reflect_Enum_MultiPayload_degenerate.swift ├── reflect_Enum_MultiPayload_generic.swift ├── reflect_Enum_MultiPayload_generic2.swift ├── reflect_Enum_MultiPayload_generic3.swift ├── reflect_Enum_MultiPayload_generic4.swift ├── reflect_Enum_MultiPayload_generic5.swift ├── reflect_Enum_MultiPayload_generic6.swift ├── reflect_Enum_MultiPayload_generic7.swift ├── reflect_Enum_MultiPayload_generic8.swift ├── reflect_Enum_MultiPayload_generic_empty.swift ├── reflect_Enum_MultiPayload_large.swift ├── reflect_Enum_MultiPayload_value.swift ├── reflect_Enum_MultiPayload_value_indirect.swift ├── reflect_Enum_NoCase.swift ├── reflect_Enum_SingleCaseCFPayload.swift ├── reflect_Enum_SingleCaseIntPayload.swift ├── reflect_Enum_SingleCaseNoPayload.swift ├── reflect_Enum_SingleCasePointerPayload.swift ├── reflect_Enum_SingleCaseVoidPayload.swift ├── reflect_Enum_SinglePayload_generic1.swift ├── reflect_Enum_TwoCaseNoPayload.swift ├── reflect_Enum_TwoCaseOnePointerPayload.swift ├── reflect_Enum_TwoCaseOneStructPayload.swift ├── reflect_Enum_TwoCaseTwoPayloads.swift ├── reflect_Enum_value.swift ├── reflect_Enum_values.swift ├── reflect_Enum_values10.swift ├── reflect_Enum_values11.swift ├── reflect_Enum_values12.swift ├── reflect_Enum_values2.swift ├── reflect_Enum_values3.swift ├── reflect_Enum_values4.swift ├── reflect_Enum_values5.swift ├── reflect_Enum_values6.swift ├── reflect_Enum_values7.swift ├── reflect_Enum_values8.swift ├── reflect_Enum_values9.swift ├── reflect_Enum_values_resilient.swift ├── reflect_Float.swift ├── reflect_Int.swift ├── reflect_Int16.swift ├── reflect_Int32.swift ├── reflect_Int64.swift ├── reflect_Int8.swift ├── reflect_NSArray.swift ├── reflect_NSNumber.swift ├── reflect_NSSet.swift ├── reflect_NSString.swift ├── reflect_Optional_Any.swift ├── reflect_Optional_Bool.swift ├── reflect_Set.swift ├── reflect_String.swift ├── reflect_UInt.swift ├── reflect_UInt16.swift ├── reflect_UInt32.swift ├── reflect_UInt64.swift ├── reflect_UInt8.swift ├── reflect_UnsafeContinuation.swift ├── reflect_deep_generic.swift ├── reflect_empty_class.swift ├── reflect_empty_struct.swift ├── reflect_empty_struct_compat.swift ├── reflect_existential.swift ├── reflect_multiple_types.swift ├── reflect_nested.swift └── reflect_nested_generic.swift ├── Runtime ├── ConcurrentMetadata.swift ├── ExclusivityTest.swift ├── Inputs │ ├── class-layout-from-objc │ │ ├── Classes.swift │ │ ├── OneWordSuperclass.h │ │ ├── OneWordSuperclass.m │ │ ├── Resilient.swift │ │ ├── big.yaml │ │ ├── module.modulemap │ │ └── small.yaml │ ├── class-stubs-from-objc │ │ ├── first.swift │ │ ├── module.modulemap │ │ └── second.swift │ ├── class-stubs-weak │ │ ├── first.swift │ │ ├── module.modulemap │ │ └── second.swift │ ├── enum-multipayload-emptycase-storetag_Resilient.swift │ └── rdar87914343_Resilient.swift ├── class_stubs.m ├── class_stubs_weak.m ├── class_update_callback_with_fixed_layout.m ├── class_update_callback_without_fixed_layout.m ├── enum-multipayload-emptycase-storetag.swift ├── issue-51181.swift ├── old_runtime_crash_without_fixed_layout.swift ├── rdar64672291.swift ├── rdar87914343.swift ├── weak-reference-racetests-dispatch.swift └── weak-reference-racetests.swift ├── SIL ├── crashers │ ├── 001-swift-parser-parsesilvtable.sil │ ├── 002-swift-performnamebinding.sil │ ├── 009-swift-parser-parsedeclsil.sil │ ├── 013-swift-parser-parsesilglobal.sil │ ├── 015-swift-parser-parsesilwitnesstable.sil │ ├── 029-swift-parser-parsesilscope.sil │ ├── 031-swift-typechecker-configureinterfacetype.sil │ └── cse-open-existential-ref-term-inst.sil ├── crashers_fixed │ ├── 003-swift-parser-parsetypesimple.sil │ ├── 004-swift-expr-getsourcerange.sil │ ├── 005-swift-silfunction-verify.sil │ ├── 006-swift-syntaxsugartype-getimplementationtype.sil │ ├── 007-swift-abstractstoragedecl-makecomputed.sil │ ├── 008-swift-genericparamlist-getasgenericsignatureelements.sil │ ├── 010-swift-typechecker-addimplicitconstructors.sil │ ├── 011-swift-typechecker-validatetype.sil │ ├── 012-swift-dependentgenerictyperesolver-resolveselfassociatedtype.sil │ ├── 014-swift-sildeclref-sildeclref.sil │ ├── 016-swift-typechecker-typecheckfunctionbodyuntil.sil │ ├── 017-swift-decl-walk.sil │ ├── 018-swift-valuedecl-getinterfacetype.sil │ ├── 019-swift-parser-parseexprpostfix.sil │ ├── 020-swift-moduledecl-lookupconformance.sil │ ├── 021-swift-typechecker-typecheckdecl.sil │ ├── 023-swift-parser-parseexpridentifier.sil │ ├── 024-swift-expr-walk.sil │ ├── 025-swift-typechecker-resolvetype.sil │ ├── 026-swift-parser-parsesildefaultwitnesstable.sil │ ├── 027-swift-nominaltypedecl-getdeclaredtype.sil │ ├── 028-swift-genericsignature-getcanonicalsignature.sil │ ├── 030-swift-typechecker-checkdeclattributes.sil │ ├── 032-swift-iterativetypechecker-satisfy.sil │ ├── 033-swift-constraints-constraintsystem-diagnosefailureforexpr.sil │ ├── 034-swift-expr-propagatelvalueaccesskind.sil │ ├── 035-swift-typebase-getcanonicaltype.sil │ ├── 036-swift-cantype-isreferencetypeimpl.sil │ ├── 037-swift-sourcefile-lookupcache-lookupclassmembers.sil │ ├── 038-swift-archetypebuilder-enumeraterequirements.sil │ ├── 039-swift-iterativetypechecker-processresolvetypedecl.sil │ ├── 041-swift-typebase-getdesugaredtype.sil │ ├── 042-swift-parser-parsetoplevel.sil │ ├── 043-swift-derivedconformance-deriverawrepresentable.sil │ ├── 044-swift-parser-parsesilcoveragemap.sil │ ├── 045-swift-parser-parseidentifier.sil │ ├── 046-swift-parser-parsetypesimpleorcomposition.sil │ └── 047-swift-silfunction-print.swift ├── lit.local.cfg ├── parse_stdlib.sil └── verify_all_overlays.py ├── SILGen ├── Inputs │ ├── rdar81421394.h │ ├── rdar81421394.m │ ├── rdar85526916.h │ └── rdar85526916.m ├── SwiftUI │ └── opaque_result_type_erasure.swift ├── issue-73244.swift ├── rdar119732084.swift ├── rdar128710064.swift ├── rdar129010265.swift ├── rdar81421394.swift └── rdar85526916.swift ├── SILOptimizer ├── Inputs │ ├── issue-78447-c.h │ └── module.modulemap ├── constant_folded_fp_operations.swift ├── consume_checking.swift ├── gh68328.swift ├── gh70234.swift ├── gh72055.swift ├── gh77693.swift ├── gh81515.swift ├── issue-71495.swift ├── issue-72615.swift ├── issue-73859.swift ├── issue-78447.swift ├── large_c_struct.swift ├── large_nested_array.swift ├── large_nested_array.swift.gyb ├── large_string_array.swift.gyb ├── large_switch.gyb ├── lexical-lifetimes.swift ├── mandatory_inlining_gets_invalidated.sil ├── many_trys.swift ├── moveonly_partial_consumption_linked_list.swift ├── oslog.swift ├── rdar113142446.sil ├── rdar114699006.swift ├── rdar117011668.swift ├── rdar118360449.swift ├── rdar133779160.swift ├── rdar133969821.swift ├── rdar136267186.swift ├── rdar137960229.swift ├── rdar139666145.swift ├── rdar141279635.swift ├── rdar151568816.swift ├── rdar155059418.swift ├── rdar92652273.swift ├── rle_dse_complexity.swift ├── static_enums_fuzzing.swift └── string_switch.swift ├── Sanitizers ├── Inputs │ └── tsan-uninstrumented.swift ├── fuzzer.swift ├── tsan-ignores-arc-locks.swift ├── tsan-inout.swift ├── tsan-type-metadata.swift └── witness_table_lookup.swift ├── Sema ├── Inputs │ ├── issue-50741-helper.swift │ ├── issue-51014-helper.swift │ ├── issue-52088-helper.swift │ ├── issue-52088.h │ ├── rdar30933988_enum.swift │ ├── rdar36801676.swift │ ├── rdar36801676_empty.swift │ ├── rdar47334176_types.swift │ └── rdar84879566_invalid_decls.swift ├── OverridesAndOverloads.swift ├── SwiftUI │ ├── builder_requirement_errors_should_not_shadow_errors_in_code.swift │ ├── builder_with_implicit_property_wrapper_inference.swift │ ├── case_with_overloaded_elements_in_optional_context.swift │ ├── inner_closure_with_opaque_value_result.swift │ ├── issue-56479.swift │ ├── issue-56591.swift │ ├── issue-59716.swift │ ├── mixed_swiftui_and_multistatement_closures.swift │ ├── radar88971160.swift │ ├── rdar104687668.swift │ ├── rdar106575142.swift │ ├── rdar107835060.swift │ ├── rdar108534555.swift │ ├── rdar139237781.swift │ ├── rdar56710317.swift │ ├── rdar57201781.swift │ ├── rdar57410798.swift │ ├── rdar58972627.swift │ ├── rdar68795727.swift │ ├── rdar70256351.swift │ ├── rdar70880670.swift │ ├── rdar72771072.swift │ ├── rdar74447308.swift │ ├── rdar75367157.swift │ ├── rdar76252310.swift │ ├── rdar80630127.swift │ ├── rdar84580119.swift │ ├── rdar87407899.swift │ ├── rdar88256059.swift │ ├── rdar91150414.swift │ ├── rdar94462333.swift │ ├── rdar98862079.swift │ └── swiftui_multiple_chained_members_in_inner_closure.swift ├── custom_array_literal_with_operators.swift ├── explicit_coercions.swift ├── generic_function_signature.swift ├── implicit_cgfloat_double_conversion_correctness.swift ├── interpolation_placeholders.swift ├── issue-50741.swift ├── issue-51014.swift ├── issue-52088.swift ├── issue-57042.swift ├── issue-60514.swift ├── issue-60958.swift ├── large-switch-rdar47365349.swift ├── protocol_typo_correction.swift ├── rdar149385088.swift ├── rdar30933988.swift ├── rdar32204609.swift ├── rdar34333874.swift ├── rdar47334176.swift ├── rdar84879566.swift ├── rdar85277993.swift ├── rdar94462333.swift ├── result_builder_buildBlock_resolution.swift ├── type_checker_crashers_fixed │ ├── issue-44121.swift │ ├── issue-44511.swift │ ├── issue-45240.swift │ ├── issue-56254.swift │ ├── issue-57165.swift │ ├── issue-57240.swift │ ├── issue-59031.swift │ ├── issue-59058.swift │ ├── issue-59294.swift │ ├── issue-60649.swift │ ├── issue-65360.swift │ ├── issue-65500.swift │ ├── issue-65640.swift │ ├── issue-66041.swift │ ├── issue-71701.swift │ ├── issue-73986.swift │ ├── overloaded_generic.swift │ ├── rdar100753270.swift │ ├── rdar102085039.swift │ ├── rdar103739206.swift │ ├── rdar105149979.swift │ ├── rdar112090069.swift │ ├── rdar112095973.swift │ ├── rdar112617922.swift │ ├── rdar113760727.swift │ ├── rdar116122902.swift │ ├── rdar122598934.swift │ ├── rdar137825558.swift │ ├── rdar139235128.swift │ ├── rdar139314763.swift │ ├── rdar141012049.swift │ ├── rdar151943924.swift │ ├── rdar19343997.swift │ ├── rdar20771765.swift │ ├── rdar27017206.swift │ ├── rdar27148148.swift │ ├── rdar27249691.swift │ ├── rdar27261929.swift │ ├── rdar27329076.swift │ ├── rdar27464577.swift │ ├── rdar27575060.swift │ ├── rdar27787341.swift │ ├── rdar27815848.swift │ ├── rdar27830834.swift │ ├── rdar27879334.swift │ ├── rdar28023899.swift │ ├── rdar28048391.swift │ ├── rdar28145033.swift │ ├── rdar28221883.swift │ ├── rdar28235248.swift │ ├── rdar28317710.swift │ ├── rdar28619118.swift │ ├── rdar29075927.swift │ ├── rdar45470505.swift │ ├── rdar47266563.swift │ ├── rdar48994658.swift │ ├── rdar49712364.swift │ ├── rdar50666427.swift │ ├── rdar50869732.swift │ ├── rdar51576862.swift │ ├── rdar61749633.swift │ ├── rdar71167129.swift │ ├── rdar78102266.swift │ ├── rdar79268378.swift │ ├── rdar79523605.swift │ ├── rdar83072606.swift │ ├── rdar83418797.swift │ ├── rdar83666783.swift │ ├── rdar85516390.swift │ ├── rdar85843677.swift │ ├── rdar88285682.swift │ ├── rdar90366182.swift │ ├── rdar90419017.swift │ ├── rdar91110069.swift │ ├── rdar92327807.swift │ └── rdar98577451.swift ├── type_checker_perf │ ├── fast │ │ ├── array_concatenation.swift │ │ ├── array_literal_with_operators_and_double_literals.swift │ │ ├── array_of_literals_and_operators_cast_to_float.swift.gyb │ │ ├── array_of_tuples.swift.gyb │ │ ├── builder_with_nested_closures.swift │ │ ├── cgfloat_double_math_mix.swift │ │ ├── cgfloat_with_unary_operators.swift │ │ ├── collection_subscript_chains.swift.gyb │ │ ├── complex_swiftui_padding_conditions.swift │ │ ├── contextual_cgfloat_type_with_operator_chain_arguments.swift │ │ ├── expression_too_complex_4.swift │ │ ├── fast-operator-typechecking.swift │ │ ├── if_expr.swift.gyb │ │ ├── issue-42761.swift │ │ ├── issue-43386_array_of_ranges.swift.gyb │ │ ├── issue-62390.swift │ │ ├── logical_infix_operator_chains.swift.gyb │ │ ├── member_chains_and_operators_with_iou_base_types.swift │ │ ├── mixed_string_array_addition.swift │ │ ├── more_specialized_generic_func.swift.gyb │ │ ├── multi_statement_closure_with_simd_variable.swift │ │ ├── nil_coalescing.swift.gyb │ │ ├── nil_coalescing_dictionary_values.swift.gyb │ │ ├── operator_chain_with_closures.swift.gyb │ │ ├── operator_chain_with_hetergeneous_arguments.swift │ │ ├── operator_chains_separated_by_ternary.swift.gyb │ │ ├── operators_inside_closure.swift │ │ ├── property_vs_unapplied_func.swift │ │ ├── rdar118993030-literal.swift.gyb │ │ ├── rdar118993030.swift.gyb │ │ ├── rdar133340307.swift │ │ ├── rdar144100160.swift │ │ ├── rdar17024694.swift │ │ ├── rdar17077404.swift │ │ ├── rdar17170728.swift │ │ ├── rdar18360240.swift.gyb │ │ ├── rdar18522024.swift │ │ ├── rdar18699199.swift.gyb │ │ ├── rdar18724501.swift.gyb │ │ ├── rdar19029974.swift │ │ ├── rdar19157118.swift │ │ ├── rdar19181998.swift.gyb │ │ ├── rdar19181998_nominals.swift.gyb │ │ ├── rdar19357292.swift │ │ ├── rdar19394804.swift.gyb │ │ ├── rdar19738292.swift.gyb │ │ ├── rdar19777895.swift.gyb │ │ ├── rdar19836070.swift │ │ ├── rdar20233198_any.swift.gyb │ │ ├── rdar20233198_explicit_overloads.swift.gyb │ │ ├── rdar20233198_named.swift.gyb │ │ ├── rdar20233198_typed.swift.gyb │ │ ├── rdar20233198_weak.swift.gyb │ │ ├── rdar20818064.swift.gyb │ │ ├── rdar20875936.swift │ │ ├── rdar20959612.swift.gyb │ │ ├── rdar21070413.swift.gyb │ │ ├── rdar21328584.swift.gyb │ │ ├── rdar21374729.swift │ │ ├── rdar21398466.swift │ │ ├── rdar21720888.swift.gyb │ │ ├── rdar21930551.swift.gyb │ │ ├── rdar22022980.swift │ │ ├── rdar22249571.swift │ │ ├── rdar22282851.swift │ │ ├── rdar22466245.swift │ │ ├── rdar22532650.swift.gyb │ │ ├── rdar22626740.swift.gyb │ │ ├── rdar22770433.swift │ │ ├── rdar22810685.swift.gyb │ │ ├── rdar22836718.swift.gyb │ │ ├── rdar23429943.swift │ │ ├── rdar23620262.swift │ │ ├── rdar23861629.swift │ │ ├── rdar24543332.swift.gyb │ │ ├── rdar26939465.swift.gyb │ │ ├── rdar27585838.swift.gyb │ │ ├── rdar28018866.swift │ │ ├── rdar29025667.swift.gyb │ │ ├── rdar30213053.swift.gyb │ │ ├── rdar30389602.swift.gyb │ │ ├── rdar30596744_2.swift.gyb │ │ ├── rdar30606089.swift.gyb │ │ ├── rdar30729643.swift.gyb │ │ ├── rdar31439825.swift │ │ ├── rdar31563957.swift.gyb │ │ ├── rdar31742586.swift │ │ ├── rdar32221800.swift │ │ ├── rdar32998180.swift │ │ ├── rdar32999041.swift.gyb │ │ ├── rdar33292740.swift.gyb │ │ ├── rdar33688063.swift │ │ ├── rdar33806601.swift │ │ ├── rdar35213699.swift │ │ ├── rdar36838495.swift │ │ ├── rdar40344044.swift.gyb │ │ ├── rdar42672946.swift │ │ ├── rdar46541800.swift │ │ ├── rdar46687985.swift │ │ ├── rdar46713933_concrete_args.swift │ │ ├── rdar46713933_literal_arg.swift │ │ ├── rdar46939892.swift │ │ ├── rdar47492691.swift │ │ ├── rdar54580427.swift │ │ ├── rdar54926602.swift │ │ ├── rdar60961087.swift.gyb │ │ ├── rdar73892556.gyb │ │ ├── rdar74035425.swift │ │ ├── rdar74853403.swift │ │ ├── rdar75476311.swift │ │ ├── rdar91310777.swift │ │ ├── should_skip_bitwise.swift │ │ ├── should_skip_bitwise_2.swift │ │ ├── should_skip_bitwise_3.swift │ │ ├── simd_add.gyb │ │ ├── simd_scalar_multiple.swift.gyb │ │ ├── string_interpolations.swift.gyb │ │ ├── swift_docc.swift │ │ ├── swift_package_index_1.swift │ │ ├── swift_package_index_4.swift │ │ ├── swift_package_index_5.swift │ │ └── switch_expr.swift.gyb │ └── slow │ │ ├── array_count_property_vs_method.swift │ │ ├── borderline_flat_map_operator_mix.swift │ │ ├── coerce_literal_linear_combo.swift.gyb │ │ ├── collections_chained_with_plus.swift.gyb │ │ ├── issue-43369.swift │ │ ├── rdar18800950.swift │ │ ├── rdar18994321.swift │ │ ├── rdar19368383.swift │ │ ├── rdar19612086.swift │ │ ├── rdar19737632.swift │ │ ├── rdar19915443.swift │ │ ├── rdar20859567.swift │ │ ├── rdar21198787.swift.gyb │ │ ├── rdar22079400.swift │ │ ├── rdar22877285.swift │ │ ├── rdar22949523.swift │ │ ├── rdar23224583.swift │ │ ├── rdar23327871.swift.gyb │ │ ├── rdar23682605.swift │ │ ├── rdar25866240.gyb │ │ ├── rdar26564101.swift │ │ ├── rdar30596744_1.swift.gyb │ │ ├── rdar30631148.swift │ │ ├── rdar32034560.swift │ │ ├── rdar33289839.swift.gyb │ │ ├── rdar33476240.swift │ │ ├── rdar33935430.swift │ │ ├── rdar53589951.swift │ │ ├── swift_package_index_2.swift.gyb │ │ └── swift_package_index_3.swift └── wmo_verify_loaded.swift ├── Serialization ├── AllowErrors │ ├── invalid-attr-refs.swift │ ├── invalid-attr.swift │ ├── invalid-pattern.swift │ ├── invalid-witness.swift │ └── unresolved-type.swift ├── Foundation-determinism-wmo.swift ├── Foundation-determinism.swift ├── Inputs │ ├── bridging-header-first │ │ ├── AmbivalentProtocol.h │ │ ├── Module │ │ │ ├── modular.h │ │ │ └── module.modulemap │ │ └── bridging.h │ ├── conformance-removed │ │ ├── ObjCLib.h │ │ ├── SwiftLib.swift │ │ └── module.modulemap │ ├── crash-nested-extension │ │ ├── f1.swift │ │ ├── f2.swift │ │ └── output.json │ ├── custom-modules │ │ ├── SuperclassObjC.h │ │ ├── module.modulemap │ │ └── rdar40899824Helper.h │ ├── issue-46500-other.swift │ ├── issue-47767-other.swift │ ├── issue-50578-other.swift │ ├── rdar29694978.h │ ├── serialization_loops.h │ ├── serialization_loops_helper.swift │ └── serialization_loops_helper2.swift ├── bridging-header-first.swift ├── conformance-removed.swift ├── crash-nested-extension.swift ├── crash-superclass-dependency-cycle.swift ├── crash-superclass-dependency-removal.swift ├── issue-46500.swift ├── issue-46794.swift ├── issue-47767.swift ├── issue-49885.swift ├── issue-50414.swift ├── issue-50512.swift ├── issue-50578.swift ├── rdar151768216.swift ├── rdar29694978.swift ├── rdar40839486.swift ├── rdar40899824.swift ├── rdar77804605.swift ├── rdar80449046.swift ├── serialization_loops.swift └── xref-badtag-49336277 │ ├── Inputs │ ├── basemod.swift │ ├── dependmod.swift │ └── itermod.swift │ └── main.swift ├── StdlibUnittest ├── Android.swift ├── Assertions.swift.gyb ├── AtomicInt.swift ├── CheckEquatable.swift.gyb ├── ChildProcessShutdown │ ├── FailIfChildCrashesDuringShutdown.swift │ ├── FailIfChildExitsDuringShutdown.swift │ ├── PassIfChildCrashedDuringTestExecution.swift │ └── RequireOwnProcess.swift ├── CommandLine.swift ├── Common.swift ├── CrashingTests.swift ├── Cygwin.swift ├── Failure.swift ├── Filter.swift ├── ForgotToRunTests.swift ├── FoundationExtras.swift ├── FreeBSD.swift ├── IOS.swift ├── IOSSimulator.swift ├── Linux.swift ├── Misc.swift ├── NSException.swift ├── PS4.swift ├── RaceTest.swift ├── RunAllTestsCalledTwice.swift ├── RunNoTests.swift ├── SequencesCollections.swift.gyb ├── StaticAssertions.swift └── Stdin.swift ├── banned_apis └── banned_apis.test ├── benchmark ├── generate-harness.test-sh └── run-benchmarks.test-sh ├── compiler_crashers ├── 28870-swift-associatedtypedecl-getoverriddendecls-const.swift ├── README └── lit.local.cfg ├── compiler_crashers_2 ├── 0208-issue-51259.swift ├── 05cd0fe621934.swift ├── 109d1c5355f6eab4.swift ├── 12b9d4c832862a3.swift ├── 12d3616c49ade22f.swift ├── 12d47ccfc65a990.swift ├── 13a11e92edec70b6.swift ├── 1491559f83458126.swift ├── 15659ed9344beff.swift ├── 16194a387970a2e6.swift ├── 181de8a256df48e.swift ├── 1a9cf8aaa2cfa83f.swift ├── 1b16ff2a2ad5be.swift ├── 1b94fce977ad935d.swift ├── 1be7dd4882cd8c39.swift ├── 21fbeea5d06bd55.swift ├── 22119c306663e633.swift ├── 23dbe8bd74c95a.swift ├── 2571144ba4dfcd.swift ├── 259af6e17cc94d25.swift ├── 267b1378f37f8563.swift ├── 275b15e1edc79b4f.swift ├── 294a6f55bd8bcd7.swift ├── 29cff4b25b728d.swift ├── 2ae771dc466f1acc.swift ├── 2b51707df3736f.swift ├── 2c8d3a95fcb84248.swift ├── 2d564dafb1f91.swift ├── 2d5e95ea862946ed.swift ├── 2e58d3af692e43c.swift ├── 3056ff53cabf9480.swift ├── 3070c3e372b52e7e.swift ├── 3077f0fa215b2f94.swift ├── 32bd25d0f0f96b1e.swift ├── 33b407eb167aba5.swift ├── 35c1917cd0f5ba23.swift ├── 361c5acf488944d1.swift ├── 37982596fddeb5d.swift ├── 3b24e8bed8732c5c.swift ├── 3b6836d8e254e362.swift ├── 3ba9659c56ebf6a.swift ├── 3badfb288fdf42f4.swift ├── 3c95e32711989555.swift ├── 438c8a321d9be3de.swift ├── 4414db6acd8120aa.swift ├── 442f5cd1363787db.swift ├── 4437c5c5a29553a.swift ├── 4546ece627bfc746.swift ├── 457eda8bf9011b6.swift ├── 45e1131d17a7561c.swift ├── 462ee2aa7dc23cf3.swift ├── 486a70c43d10bda5.swift ├── 488f1cb353826d0.swift ├── 489d4cf70584858.swift ├── 497c938db36de8f.swift ├── 49ab67ad3514bb58.swift ├── 4ae85881765dc0db.swift ├── 4b5eac547c7b87.swift ├── 4c48b3ae4546aed.swift ├── 4e921915ae337fb5.swift ├── 4fbdbc38c141e94.swift ├── 50b52589da464db0.swift ├── 51e2471a4cadad3d.swift ├── 52afb182b33879f5.swift ├── 5367d3b1ce20b9aa.swift ├── 548b48b935d4153a.swift ├── 557cde75b2fa4b56.swift ├── 5592e847c61624d.swift ├── 56edea24a97933f.swift ├── 579b1dc15fcb172.swift ├── 579f31114c8e96.swift ├── 57c3871466765f0.swift ├── 57ee53be7e5846a.swift ├── 5939b8697dd25c0.swift ├── 5ac7591881325acd.swift ├── 5b828cc4df77dc2e.swift ├── 5cbe6a68da313ea9.swift ├── 5cc8bc3069f97958.swift ├── 5ccf43ee108a37e9.swift ├── 5e8f12d4126e38b.swift ├── 5e95d57077abad38.swift ├── 5ed6119e7b5941e8.swift ├── 5f26ba86c56cc88.swift ├── 5f942981131dbcab.swift ├── 624dafcf406667e8.swift ├── 634c65af014195.swift ├── 63d065624970638a.swift ├── 64915463735bcf5b.swift ├── 64bfdff1cfbfc74.swift ├── 651fea1b598eb09d.swift ├── 666bd08556187ed3.swift ├── 66e337320b1924c.swift ├── 67f3134fa56c913.swift ├── 685973a04a9055ad.swift ├── 698f276cef6d3418.swift ├── 6a33401772c7458.swift ├── 6cbf7908427d45f.swift ├── 70bfb18ab58de217.swift ├── 72eed0e8ff21c1a.swift ├── 73082a7a311258.swift ├── 7315b4568a81e97d.swift ├── 7375195b753c3ca3.swift ├── 7459efb59886f47d.swift ├── 756ba8587e7eb26b.swift ├── 75874d2cf6f384c8.swift ├── 75d8fd688b445bb.swift ├── 7643813f44ce5b.swift ├── 76b298dbdff34f1.swift ├── 771c5a9342d7660.swift ├── 788743a67e0ba80.swift ├── 78fae776bebcee10.swift ├── 79ac90c35c46dbab.swift ├── 7aa9d3699dddb337.swift ├── 7c107da0279a73c.swift ├── 7c811b5446136.swift ├── 7d21b6234014b45d.swift ├── 7d3e143ce48c791.swift ├── 7e19cb4cc0598c1b.swift ├── 807f13dbbc4a604f.swift ├── 82fe033c6bdba61.swift ├── 84cb3a91833322c6.swift ├── 84d2d3eac9e9a0.swift ├── 863c70cdebd3a8f9.swift ├── 877192df3b9c32d.swift ├── 87bf05037516d84.swift ├── 8867bfc8cf158ddb.swift ├── 88ba80199b702649.swift ├── 89acda2815351ec6.swift ├── 8a6431938ab864b3.swift ├── 8a6584ca91fedd9.swift ├── 8b32e8ab4ca6b321.swift ├── 8b3bbe2fe5878590.swift ├── 8d73bb4170a0c447.swift ├── 8d7e9f1c8d765adf.swift ├── 8d890396bc3d7c9.swift ├── 912b50e86d7f221c.swift ├── 933fe28af784ae94.swift ├── 93553842ae73253.swift ├── 93b241538559442a.swift ├── 9470fb8cc388d9a9.swift ├── 961e1ccf3c48ef8.swift ├── 975116cdaa9f417.swift ├── 983a37d76b4923e.swift ├── 98887170a0bfefc0.swift ├── 98b9c480b4ec75d7.swift ├── 98fb6d3cc49f5d1d.swift ├── 9967f3fc56f84a1e.swift ├── 9adf18151655a6ae.swift ├── 9ae5dcaffa1a80.swift ├── 9b5b207a0e08434.swift ├── 9c465a4c5d33b28c.swift ├── 9f30635127b9f25f.swift ├── 9f75fc85a5c32bf2.swift ├── a014efdc2cfb729.swift ├── a04f67aa8fb22efa.swift ├── a0b4d94ad0e977d0.swift ├── a12deef4ea31815.swift ├── a1776e4598146d49.swift ├── a517ab621b50bee2.swift ├── a53b65eef074b0fa.swift ├── a5fbf4336df96867.swift ├── a7ea7ad030665968.swift ├── a7ee60c01ddf9624.swift ├── a81ff5cc2d29ef15.swift ├── a87df2cdd1c39d8f.swift ├── aa9ebb248dabc27b.swift ├── ac7123f2338b128.swift ├── ad9313b914fb2.swift ├── af7dc08992398ff.swift ├── b2548f4cd9bcd52d.swift ├── b44bf5a5a8274.swift ├── b4746fa8b4efd96.swift ├── b7d484d056661ff.swift ├── b862de77602e6bcf.swift ├── b8a659988983457.swift ├── b98d91945bd93d30.swift ├── bafa48a4eecbfb62.swift ├── bf28fe4f10fb3dc.swift ├── bf67776f769fa0f1.swift ├── c037334d5426557d.swift ├── c24f9fc998e2886.swift ├── c25aed95f6f6d937.swift ├── c3a89a7cea373695.swift ├── c3b37ed583f2402b.swift ├── c3d13662d24dc5b4.swift ├── c5955772856ea0fa.swift ├── c7f6f9dc8e8c9d71.swift ├── c8277c165c1ebfa.swift ├── c8563a4a60b27cf3.swift ├── c9616ad936925cb2.swift ├── c9bb544b56cd7c73.swift ├── c9ec50236e69e012.swift ├── ca37c33bbdab835.swift ├── ca590685b7123ac.swift ├── cad1ff6235b5b3d.swift ├── cb8022311165d5ef.swift ├── cbbc9a1ce53846d.swift ├── ce57354c94ae5aad.swift ├── cec5966bff434957.swift ├── d14a9abe37cc3bca.swift ├── d2b0fe8a9614624.swift ├── d3bddfff4812face.swift ├── d48b4d2e686349d.swift ├── d4d72be28bfdea6.swift ├── d5eedcc26a9ca1f.swift ├── d620416563a95ae9.swift ├── d78fbedbdfa9273.swift ├── da315410694f4a15.swift ├── db89d09981b453c7.swift ├── dc159d8541132fa2.swift ├── dc31b2ef4315855a.swift ├── dcd4ff25dbde99.swift ├── dd217e2a416bc8a.swift ├── dd784376d0f127e9.swift ├── df69d29c5771e948.swift ├── dfe03ade76b34fdb.swift ├── e1f8b6a26663e9b5.swift ├── e28bbaa21817d3.swift ├── e2b164a3c37951d.swift ├── e4b446ca551533.swift ├── e594fd2382ce311.swift ├── e5dc6197d5ae06b.swift ├── e69d4d956514d9ef.swift ├── e6a483a39992886f.swift ├── e714818ef0d04b52.swift ├── e92dacb419dec8e.swift ├── e991ae179ce5e7f6.swift ├── ebe41bf99641e618.swift ├── edb1d98948183f4c.swift ├── edd39c475521d4d.swift ├── ee1b0cddb8c5936.swift ├── ee271b56888b63fa.swift ├── eeeed99e112fc53.swift ├── ef29fed11b57662.swift ├── ef6fa0626973e94.swift ├── efd413faa5b859c9.swift ├── efe245e1832e7ed7.swift ├── existential-member-access-invariant-pack-type.swift ├── f1419d3f3c2fe6b9.swift ├── f3ef80da3095d840.swift ├── f4e3977ec1f2aee1.swift ├── f676bef08c1061da.swift ├── f6e25531c0e51b62.swift ├── f7546097c158a148.swift ├── f8296a9a293c6ae7.swift ├── f864514671159f38.swift ├── f954ff86c7921441.swift ├── fca26dd570bcdf1c.swift ├── fda9a61a6187b061.swift ├── fef9fa2b91e98ff.swift ├── ff105cea796d442f.swift ├── ff396e9dd5fce33e.swift ├── ffc098188a1c39ca.swift ├── issue-80657.swift ├── issue-81834.swift └── lit.local.cfg ├── compiler_crashers_2_fixed ├── 0001-rdar19792730.swift ├── 0002-rdar19792768.swift ├── 0003-rdar20564378.swift ├── 0003-rdar20740573.swift ├── 0004-rdar20564605.swift ├── 0006-rdar20588474.swift ├── 0007-rdar20750480.swift ├── 0008-rdar18796397.swift ├── 0009-rdar18996669.swift ├── 0010-rdar20638881.swift ├── 0011-rdar20985062.swift ├── 0011-rdar21042357.swift ├── 0012-rdar20270240.swift ├── 0013-rdar19519590.swift ├── 0014-rdar20508671.swift ├── 0015-rdar16803384.swift ├── 0016-rdar21437203.swift ├── 0017-rdar21087186.swift ├── 0018-rdar21524144.swift ├── 0019-rdar21511651.swift ├── 0020-rdar21598514.swift ├── 0021-rdar21333511.swift ├── 0022-rdar21625478.swift ├── 0023-rdar21679169.swift ├── 0024-rdar21551616.swift ├── 0025-rdar21783334.swift ├── 0026-rdar21382194.swift ├── 0027-rdar21514140.swift ├── 0028-rdar19686707.swift ├── 0029-rdar21389284.swift ├── 0030-rdar19534837.swift ├── 0031-rdar19606899.swift ├── 0032-rdar19919421.swift ├── 0033-rdar21945994.swift ├── 0034-rdar21982453.swift ├── 0035-rdar22003613.swift ├── 0036-rdar23719809.swift ├── 0037-SILWitnessVisitor.swift ├── 0038-lowering-CheckedCastEmitter-emitConditional.swift ├── 0039-typechecker-crash.swift ├── 0040-rdar23899799-broken-bool.swift ├── 0041-walkToDeclPost-crash.swift ├── 0042-rdar21775089.swift ├── 0043-rdar25298116.swift ├── 0044-enum-dot-crash.swift ├── 0045-issue-45855.swift ├── 0046-recursive-generic-arg-in-inherited-clause.swift ├── 0047-issue-43915.swift ├── 0048-issue-44940.swift ├── 0049-issue-45216.swift ├── 0050-issue-45747.swift ├── 0051-issue-45800.swift ├── 0052-issue-46066.swift ├── 0053-issue-43107.swift ├── 0054-issue-43445.swift ├── 0055-issue-45725.swift ├── 0056-issue-45914.swift ├── 0057-rdar29587093.swift ├── 0058-rdar29223240.swift ├── 0059-issue-45909.swift ├── 0060-issue-45306.swift ├── 0061-issue-45761.swift ├── 0062-rdar28765265.swift ├── 0063-rdar29782437.swift ├── 0064-rdar27627862.swift ├── 0065-issue-46291.swift ├── 0066-issue-46272-updated.swift ├── 0066-issue-46272.swift ├── 0067-typeof-check-source-ranges.swift ├── 0068-issue-46438.swift ├── 0069-issue-46442.swift ├── 0070-issue-46103.swift ├── 0071-issue-46299.swift ├── 0072-issue-46480-1.swift ├── 0072-issue-46480-2.swift ├── 0073-issue-45400.swift ├── 0075-rdar30248571.swift ├── 0076-issue-46088.swift ├── 0077-issue-46469.swift ├── 0078-issue-46642.swift ├── 0079-rdar30702721.swift ├── 0080-rdar30442622.swift ├── 0081-rdar30751491.swift ├── 0082-rdar30354669.swift ├── 0083-rdar31163470-1.swift ├── 0083-rdar31163470-2.swift ├── 0084-rdar31093854.swift ├── 0085-rdar31000248.swift ├── 0086-issue-46884.swift ├── 0087-issue-46601.swift ├── 0088-issue-46898.swift ├── 0089-issue-47035.swift ├── 0090-emit-implied-witness-table-ref.swift ├── 0090-issue-47194.swift ├── 0091-rdar30168645.swift ├── 0092-se-0154.swift ├── 0093-issue-47048.swift ├── 0094-rdar30689883.swift ├── 0095-rdar30154791.swift ├── 0096-issue-46855.swift ├── 0097-rdar32077627.swift ├── 0098-rdar30354669.swift ├── 0099-issue-47550.swift ├── 0100-issue-46878.swift ├── 0101-issue-47591.swift ├── 0102-issue-47152.swift ├── 0103-issue-47320.swift ├── 0104-issue-46967.swift ├── 0105-issue-43869.swift ├── 0105-issue-47626.swift ├── 0106-rdar32700180.swift ├── 0107-rdar32700180.swift ├── 0108-issue-46671.swift ├── 0109-issue-47314.swift ├── 0110-issue-47363.swift ├── 0111-rdar33067102.swift ├── 0112-rdar33135487.swift ├── 0112-rdar33139928.swift ├── 0113-rdar33044867.swift ├── 0114-rdar33189068.swift ├── 0115-issue-48173.swift ├── 0116-rdar33365139.swift ├── 0117-rdar33433087.swift ├── 0118-rdar31529413.swift ├── 0119-rdar33613329.swift ├── 0120-rdar34184392.swift ├── 0121-rdar26498438.swift ├── 0122-rdar27383752.swift ├── 0122-rdar30965000.swift ├── 0123-rdar31164540.swift ├── 0124-issue-48395.swift ├── 0125-rdar33575781.swift ├── 0126-issue-48464.swift ├── 0127-issue-48118.swift ├── 0128-rdar35088384.swift ├── 0129-rdar35019075.swift ├── 0130-issue-47590.swift ├── 0130-rdar35632543.swift ├── 0131-issue-49016.swift ├── 0132-rdar35699666.swift ├── 0133-rdar35832679.swift ├── 0134-rdar35947198.swift ├── 0135-rdar26140749.swift ├── 0136-rdar35082483.swift ├── 0137-issue-49279.swift ├── 0138-rdar36449760.swift ├── 0138-rdar36453271.swift ├── 0139-rdar36278079.swift ├── 0140-issue-49295.swift ├── 0141-rdar36989792.swift ├── 0142-rdar36549499.swift ├── 0143-rdar35870863.swift ├── 0144-issue-49620.swift ├── 0145-issue-49645.swift ├── 0146-rdar38309176.swift ├── 0147-rdar38505436.swift ├── 0148-rdar35773761.swift ├── 0149-issue-49830.swift ├── 0149-rdar34852808.swift ├── 0150-rdar39055736.swift ├── 0151-rdar-39040593.swift ├── 0152-issue-49940.swift ├── 0152-rdar39253925.swift ├── 0153-rdar36497404.swift ├── 0153-rdar39130543.swift ├── 0154-issue-50000.swift ├── 0155-issue-49912.swift ├── 0156-rdar39636312.swift ├── 0157-rdar37730691.swift ├── 0158-rdar40165062.swift ├── 0159-rdar39931339.swift ├── 0159-rdar40009245.swift ├── 0160-issue-50493.swift ├── 0160-rdar41141944.swift ├── 0161-issue-49119.swift ├── 0162-issue-50552.swift ├── 0163-issue-50566.swift ├── 0164-issue-50522.swift ├── 0165-issue-48001.swift ├── 0165-issue-50772-1.swift ├── 0165-rdar40722855.swift ├── 0166-issue-50772-2.swift ├── 0166-rdar30168645.swift ├── 0167-rdar39059582.swift ├── 0168-rdar40164371.swift ├── 0169-issue-50711.swift ├── 0169-rdar42448618.swift ├── 0170-issue-50996.swift ├── 0171-issue-51157.swift ├── 0172-rdar-44235762.swift ├── 0173-circular-generic-type-alias-deserialization.swift ├── 0174-rdar44770297.swift ├── 0175-issue-51320.swift ├── 0176-issue-50627.swift ├── 0177-rdar-33093935.swift ├── 0178-rdar-45060773.swift ├── 0179-rdar44963974.swift ├── 0180-issue-51525.swift ├── 0180-rdar45557325.swift ├── 0181-issue-51435.swift ├── 0182-rdar45680857.swift ├── 0183-issue-51501.swift ├── 0184-8764.swift ├── 0185-issue-51520.swift ├── 0186-rdar46497155.swift ├── 0187-rdar46678653.swift ├── 0188-issue-51951.swift ├── 0189-issue-52436.swift ├── 0189-rdar49371608.swift ├── 0190-rdar48852402.swift ├── 0191-issue-51961.swift ├── 0192-rdar39826863.swift ├── 0193-issue-52656.swift ├── 0194-rdar49731284.swift ├── 0194-rdar50309503.swift ├── 0196-issue-52357.swift ├── 0196-rdar48937223.swift ├── 0197-issue-51518.swift ├── 0198-rdar52081852.swift ├── 0199-issue-52030.swift ├── 0199-rdar52679284.swift ├── 0200-rdar48994748.swift ├── 0201-rdar53120878.swift ├── 0202-rdar53183030.swift ├── 0203-issue-53545.swift ├── 0204-rdar54150921.swift ├── 0205-rdar54321473.swift ├── 0206-rdar54952911.swift ├── 0207-issue-49919.swift ├── 0207-rdar55502661.swift ├── 0208-rdar55864759.swift ├── 0209-rdar45590743.swift ├── 0209-rdar56055600.swift ├── 0210-rdar57356196.swift ├── 0211-rdar80353441.swift ├── 0212-rdar85840928.swift ├── 0213-issue-60702.swift ├── 1470917329979c9a.swift ├── 14b6ac8674b84f44.swift ├── 16638651735c2c8.swift ├── 1c4f5ed8bb743453.swift ├── 1cafc0c1955e56b5.swift ├── 1f1b9ed16e283e76.swift ├── 1f6ae695bebb359b.swift ├── 1fb63f2dc87bc9b9.swift ├── 259dac55924ef426.swift ├── 2617a198505b47e4.swift ├── 2819a60354d8389.swift ├── 28872-rdar45583135.swift ├── 2e698e9f7b48e8c.swift ├── 34a73a7299992de3.swift ├── 35129b57d7eb80f4.swift ├── 3d5f395354b12a8.swift ├── 437e5d84c586a6e9.swift ├── 43bf2cb496111e.swift ├── 441e44e28042d5a3.swift ├── 448bdb8b9df6dd2.swift ├── 4c7611b7d95a1fb.swift ├── 4c84d3d852cdd1d4.swift ├── 4d5c64ab845e174f.swift ├── 4e0ec9b1a746e17.swift ├── 5716fcca10bf3ff7.swift ├── 59b42964e169b6fa.swift ├── 5ce9cd9830dc12a.swift ├── 6c90501cdf1449c2.swift ├── 77b431f821682d0.swift ├── 7cee1719e3503ef6.swift ├── 859bb4ca7e7e2bd.swift ├── 89bcf379b8d4d092.swift ├── 8c2d6198e18a56a.swift ├── 90773c979d435f7.swift ├── 93eaba9fd0e76cdf.swift ├── 9b91d843ce95d4f.swift ├── 9cb8f8475c5d414b.swift ├── 9f5254267aa3a27c.swift ├── Inputs │ ├── 0068-issue-46438 │ │ ├── BaseLib.h │ │ ├── module.modulemap │ │ └── other.swift │ ├── 0177-rdar-33093935-other.swift │ ├── 0178-rdar-45060773-other.swift │ ├── 0208-rdar55864759-protocol.swift │ ├── 0212-header.h │ ├── issue-47904 │ │ ├── ObjCPart.h │ │ └── module.modulemap │ ├── issue-51714-other.swift │ ├── issue-52030-other.swift │ ├── issue-53550-other.swift │ ├── rdar79383990.h │ ├── rdar80704382.h │ ├── rdar80704382.m │ ├── rdar80704984.h │ ├── rdar80704984.m │ ├── rdar80704984_2.h │ ├── rdar80704984_2.m │ ├── rdar80704984_3.h │ ├── rdar80704984_3.m │ ├── rdar81590807.h │ ├── rdar81590807.m │ ├── rdar81590807_2.h │ ├── rdar81590807_2.m │ ├── rdar81617749.h │ └── rdar81617749.m ├── a9f541ae5c40ef35.swift ├── ab146c5c26ca113.swift ├── b33dbab8ed3643.swift ├── b93e9e54c72f13c9.swift ├── c232a2df5b6fffd.swift ├── cccd6394993ea4a2.swift ├── d03a7ba9ca6274b0.swift ├── d48def542970cfa.swift ├── d84cbb5089113ba.swift ├── d885506018b583.swift ├── dc3a3e26162b43be.swift ├── dfd09450bb7a1.swift ├── eb61865acc77c50.swift ├── ee519bcc17697e87.swift ├── eefe61949e1f5cfd.swift ├── faa012128bc0b7c7.swift ├── fec3d092ae822aa6.swift ├── ff3414a48ee8f4cd.swift ├── issue-43442.swift ├── issue-43937.swift ├── issue-46786.swift ├── issue-47148.swift ├── issue-47904.swift ├── issue-48406.swift ├── issue-49550.swift ├── issue-50977.swift ├── issue-50988-0-invalid-read-get-extra-info.swift ├── issue-50988-1-invalid-read-get-extra-info.swift ├── issue-50988-2-invalid-read-get-extra-info.swift ├── issue-50988-3-invalid-read-get-extra-info.swift ├── issue-50988-4-invalid-read-get-extra-info.swift ├── issue-50990.swift ├── issue-51690.swift ├── issue-51714.swift ├── issue-52031.swift ├── issue-52260.swift ├── issue-52464.swift ├── issue-52510.swift ├── issue-52548.swift ├── issue-52601.swift ├── issue-53012.swift ├── issue-53182.swift ├── issue-53328.swift ├── issue-53382.swift ├── issue-53417.swift ├── issue-53420.swift ├── issue-53441-typealias.swift ├── issue-53454.swift ├── issue-53477.swift ├── issue-53503.swift ├── issue-53550.swift ├── issue-53633.swift ├── issue-53637.swift ├── issue-53793.swift ├── issue-53795.swift ├── issue-53910.swift ├── issue-54004.swift ├── issue-54005.swift ├── issue-54035.swift ├── issue-54048.swift ├── issue-54050.swift ├── issue-54093.swift ├── issue-54359.swift ├── issue-54758.swift ├── issue-54913.swift ├── issue-54938.swift ├── issue-55135.swift ├── issue-55167.swift ├── issue-55309.swift ├── issue-55435.swift ├── issue-55439.swift ├── issue-55442.swift ├── issue-55443.swift ├── issue-55444.swift ├── issue-55449.swift ├── issue-55564.swift ├── issue-55588.swift ├── issue-55643.swift ├── issue-55903.swift ├── issue-55955.swift ├── issue-56024.swift ├── issue-56100.swift ├── issue-56110.swift ├── issue-56124.swift ├── issue-56247.swift ├── issue-56377.swift ├── issue-56782.swift ├── issue-56810.swift ├── issue-57019.swift ├── issue-57023.swift ├── issue-57241.swift ├── issue-57570.swift ├── issue-57752.swift ├── issue-57802.swift ├── issue-57924.swift ├── issue-58100.swift ├── issue-58337.swift ├── issue-59384.swift ├── issue-59572.swift ├── issue-59772.swift ├── issue-61031.swift ├── issue-61086.swift ├── issue-63997.swift ├── issue-66917.swift ├── issue-68941.swift ├── issue-69947.swift ├── issue-70429.swift ├── issue-71921.swift ├── issue-73829.swift ├── issue-74545.swift ├── issue-74569.swift ├── issue-74721-2.swift ├── issue-74729.swift ├── issue-75329.swift ├── issue-81712.swift ├── parser-cutoff.swift ├── rdar106820674.swift ├── rdar108319167.swift ├── rdar110363503.swift ├── rdar110806272.swift ├── rdar111991454.swift ├── rdar112065340.swift ├── rdar112108253.swift ├── rdar113463759.swift ├── rdar113492450.swift ├── rdar113505724.swift ├── rdar119212867.swift ├── rdar122293832.swift ├── rdar123543175.swift ├── rdar124329076.swift ├── rdar138655637.swift ├── rdar144302927.swift ├── rdar146681539.swift ├── rdar146952007.swift ├── rdar151466803.swift ├── rdar35441779.swift ├── rdar46714549.swift ├── rdar54394068.swift ├── rdar54609704.swift ├── rdar56116278.swift ├── rdar56398071.swift ├── rdar56700017.swift ├── rdar57003317.swift ├── rdar57040259.swift ├── rdar57728533.swift ├── rdar58813746.swift ├── rdar58941114.swift ├── rdar60081992.swift ├── rdar62268062.swift ├── rdar64759168.swift ├── rdar64992293.swift ├── rdar65040635.swift ├── rdar65229620.swift ├── rdar65272763.swift ├── rdar65297215.swift ├── rdar66588925.swift ├── rdar67239650.swift ├── rdar67259506.swift ├── rdar67360656.swift ├── rdar69073431.swift ├── rdar70144083.swift ├── rdar70338670.swift ├── rdar70732736.swift ├── rdar70739449.swift ├── rdar71162777.swift ├── rdar71260862.swift ├── rdar71260972.sil ├── rdar71491604.swift ├── rdar71816041.swift ├── rdar72397303.swift ├── rdar73169149.swift ├── rdar73379770.swift ├── rdar74154023.swift ├── rdar74557857.swift ├── rdar75248642.swift ├── rdar75547146.swift ├── rdar76049852.swift ├── rdar76249579.swift ├── rdar79383990.swift ├── rdar80296242.swift ├── rdar80704382.swift ├── rdar80704984.swift ├── rdar80704984_2.swift ├── rdar80704984_3.swift ├── rdar81590807.swift ├── rdar81590807_2.swift ├── rdar81617749.swift ├── rdar86339848.swift ├── rdar88296943.sil ├── rdar89984216.swift ├── rdar94976378.swift ├── rdar95629905.swift ├── rdar98615954.swift └── unsupported_recursive_opaque_conformance.swift ├── compiler_crashers_fixed ├── 00006-swift-mangle-mangler-manglecontext.swift ├── 00007-convenience-init-in-extension.swift ├── 00012-emitdirecttypemetadataref.swift ├── 00017-llvm-foldingset-llvm-attributesetnode-nodeequals.swift ├── 00018-swift-irgen-emitpolymorphicarguments.swift ├── 00020-swift-typechecker-conformstoprotocol.swift ├── 00023-getcallerdefaultarg.swift ├── 00024-emitdirecttypemetadataref.swift ├── 00025-no-stacktrace.swift ├── 00027-void-map-over-sequence.swift ├── 00029-class-with-anyobject-type-constraint.swift ├── 00036-szone-malloc-should-clear.swift ├── 00037-no-stacktrace.script.swift ├── 00039-string-join.script.swift ├── 00040-std-function-func-swift-constraints-solution-computesubstitutions.swift ├── 00043-substdependenttypes.swift ├── 00046-swift-archetypebuilder-potentialarchetype-getnestedtype.timeout.swift ├── 00047-emitdirecttypemetadataref.swift ├── 00049-swift-nominaltypedecl-getmembers.swift ├── 00051-resolvetypedecl.swift ├── 00052-no-stacktrace.swift ├── 00053-std-function-func-swift-type-subst.swift ├── 00056-addminimumprotocols.swift ├── 00057-get-type-of-member-reference.swift ├── 00058-get-self-type-for-container.swift ├── 00059-fold-sequence.swift ├── 00060-adjust-function-type.swift ├── 00062-ioctl.swift ├── 00063-tiny-malloc-from-free-list.swift ├── 00064-bool.swift ├── 00065-cerror.swift ├── 00066-diagnoseunknowntype.swift ├── 00067-szone-malloc-should-clear.swift ├── 00068-foldsequence.swift ├── 00069-swift-typevisitor.swift ├── 00070-getgenericparam.swift ├── 00071-getselftypeforcontainer.swift ├── 00072-llvm-bitstreamcursor-readrecord.swift ├── 00073-llvm-errs.swift ├── 00074-swift-typeloc-iserror.swift ├── 00075-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 00076-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 00077-swift-typechecker-validatedecl.swift ├── 00078-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 00079-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00080-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 00081-resolvetypedecl.swift ├── 00082-std-function-func-containsprotocolself.swift ├── 00083-std-function-func-mapsignaturetype.swift ├── 00084-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 00085-swift-typechecker-typecheckpattern.swift ├── 00086-std-function-func-swift-type-subst.swift ├── 00087-swift-archetypebuilder-resolvearchetype.swift ├── 00088-swift-archetypetype-getnestedtype.swift ├── 00089-swift-archetypetype-setnestedtypes.swift ├── 00090-swift-astcontext-getidentifier.swift ├── 00091-swift-astprinter-printname.swift ├── 00092-swift-availabilityattr-isunavailable.swift ├── 00093-swift-boundgenerictype-get.swift ├── 00094-swift-bracestmt-create.swift ├── 00095-swift-clangimporter-implementation-mergepropinfointoaccessor.swift ├── 00096-swift-clangmoduleunit-getadaptermodule.swift ├── 00097-swift-clangmoduleunit-getimportedmodules.swift ├── 00098-swift-constraints-constraintgraph-addconstraint.swift ├── 00099-swift-constraints-constraintgraph-change-undo.swift ├── 00100-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 00101-swift-constraints-constraintsystem-applysolution.swift ├── 00102-swift-constraints-constraintsystem-assignfixedtype.swift ├── 00103-swift-constraints-constraintsystem-diagnosefailurefromconstraints.swift ├── 00104-swift-constraints-constraintsystem-finalize.swift ├── 00105-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 00106-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00107-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00108-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift ├── 00109-swift-constraints-constraintsystem-matchfunctiontypes.swift ├── 00110-swift-constraints-constraintsystem-matchtypes.swift ├── 00111-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 00112-swift-constraints-constraintsystem-simplifytype.swift ├── 00113-swift-constraints-constraintsystem-solve.swift ├── 00114-swift-constraints-solution-computesubstitutions.swift ├── 00115-swift-declcontext-lookupqualified.swift ├── 00116-swift-declname-printpretty.swift ├── 00117-swift-declrefexpr-setgenericargs.swift ├── 00118-swift-dependentgenerictyperesolver-resolvegenerictypeparamtype.swift ├── 00119-swift-dependentmembertype-get.swift ├── 00120-swift-derivedconformance-deriveequatable.swift ├── 00121-swift-diagnosticengine-diagnose.swift ├── 00122-swift-typechecker-coercepatterntotype.swift ├── 00123-swift-functiontype-get.swift ├── 00124-swift-genericfunctiontype-get.swift ├── 00125-swift-genericparamlist-addnestedarchetypes.swift ├── 00126-swift-generictypetoarchetyperesolver-resolvegenerictypeparamtype.swift ├── 00127-swift-inflightdiagnostic.swift ├── 00128-swift-lexer-getlocforendoftoken.swift ├── 00129-swift-lexer-lexidentifier.swift ├── 00130-swift-lexer-leximpl.swift ├── 00131-swift-lexer-lexnumber.swift ├── 00132-swift-lexer-lexoperatoridentifier.swift ├── 00133-swift-typechecker-resolvetypeincontext.swift ├── 00134-swift-metatypetype-get.swift ├── 00135-swift-modulefile-getdecl.swift ├── 00136-swift-modulefile-getimportedmodules.swift ├── 00137-swift-modulefile-gettype.swift ├── 00138-swift-modulefile-maybereadpattern.swift ├── 00139-swift-typechecker-resolveidentifiertype.swift ├── 00140-swift-nominaltypedecl-computetype.swift ├── 00141-swift-nominaltypedecl-getextensions.swift ├── 00142-swift-nominaltypedecl-preparelookuptable.swift ├── 00143-swift-parentype-get.swift ├── 00144-swift-parser-consumetoken.swift ├── 00145-swift-parser-parsebraceitems.swift ├── 00146-swift-parser-parseexpridentifier.swift ├── 00147-swift-parser-parseexprstringliteral.swift ├── 00148-swift-parser-parseexprunary.swift ├── 00149-swift-typechecker-callwitness.swift ├── 00150-swift-parser-parseparameterclause.swift ├── 00151-swift-parser-parsetype.swift ├── 00152-swift-parser-parsetypeidentifier.swift ├── 00153-swift-parser-parsetypesimple.swift ├── 00154-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00155-swift-protocoldecl-requiresclassslow.swift ├── 00156-swift-protocoltype-canonicalizeprotocols.swift ├── 00157-swift-sourcefile-getcache.swift ├── 00158-swift-streamprinter-printtext.swift ├── 00160-swift-substitutedtype-get.swift ├── 00161-swift-tupletype-get.swift ├── 00162-swift-type-transform.swift ├── 00163-swift-type-walk.swift ├── 00164-swift-typebase-getcanonicaltype.swift ├── 00165-swift-typebase-getdesugaredtype.swift ├── 00166-swift-typebase-isequal.swift ├── 00167-swift-typebase-isexistentialtype.swift ├── 00168-swift-typebase-isspecialized.swift ├── 00169-swift-typebase-operator.swift ├── 00170-swift-parser-skipsingle.swift ├── 00171-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 00172-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift ├── 00173-swift-typealiasdecl-typealiasdecl.swift ├── 00174-swift-scopeinfo-addtoscope.swift ├── 00175-swift-parser-parseexprlist.swift ├── 00176-vtable.swift ├── 00177-swift-constraints-constraintsystem-opengeneric.swift ├── 00178-llvm-foldingset-swift-genericsignature-nodeequals.swift ├── 00179-swift-protocolcompositiontype-build.swift ├── 00180-szone-free-definite-size.swift ├── 00181-swift-parser-parseexprclosure.swift ├── 00182-swift-astcontext-getconformance.swift ├── 00183-swift-inflightdiagnostic-fixitreplacechars.swift ├── 00184-swift-modulefile-lookupvalue.swift ├── 00185-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift ├── 00186-swift-genericsignature-profile.swift ├── 00187-swift-lowering-typeconverter-getfunctiontypewithcaptures.swift ├── 00188-swift-removeshadoweddecls.swift ├── 00189-swift-tuplepattern-create.swift ├── 00190-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 00191-swift-astprinter-printtextimpl.swift ├── 00192-swift-astcontext-setconformsto.swift ├── 00193-swift-typebase-gettypevariables.swift ├── 00194-swift-parser-parseexprsequence.swift ├── 00195-swift-namelookup-lookupinmodule.swift ├── 00196-swift-constraints-constraint-create.swift ├── 00197-swift-performstmtdiagnostics.swift ├── 00198-swift-constraints-constraintgraph-gatherconstraints.swift ├── 00199-swift-optional-swift-diagnostic-operator.swift ├── 00200-swift-parser-parsestmtreturn.swift ├── 00201-swift-parser-parsetoken.swift ├── 00202-swift-parser-parseexprpostfix.swift ├── 00203-swift-type-print.swift ├── 00204-swift-parser-parsedeclprotocol.swift ├── 00205-swift-exprhandle-get.swift ├── 00206-swift-type-subst.swift ├── 00207-swift-parser-parseexprcallsuffix.swift ├── 00208-swift-typebase-getanyoptionalobjecttype.swift ├── 00209-swift-parser-parseclosuresignatureifpresent.swift ├── 00210-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00212-swift-constraints-solution-simplifytype.swift ├── 00213-swift-typechecker-validatetype.swift ├── 00214-swift-typebase-gettypeofmember.swift ├── 00215-swift-optional-swift-infixoperatordecl.swift ├── 00216-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 00217-swift-associatedtypedecl-associatedtypedecl.swift ├── 00218-swift-parser-parsegenericarguments.swift ├── 00219-swift-module-isstdlibmodule.swift ├── 00220-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 00221-swift-constraints-constraintgraph-removeconstraint.swift ├── 00222-swift-modulefile-modulefile.swift ├── 00223-swift-stringliteralexpr-stringliteralexpr.swift ├── 00224-swift-generictypeparamtype-get.swift ├── 00225-swift-classdecl-recordobjcmember.swift ├── 00227-swift-clangimporter-implementation-getknownobjcmethod.swift ├── 00228-swift-clangimporter-loadextensions.swift ├── 00229-getarchetypesubstitution.random.swift ├── 00230-llvm-foldingset-swift-structtype-nodeequals.swift ├── 00231-swift-constraints-constraintlocator-profile.swift ├── 00232-swift-lookupresult-filter.swift ├── 00233-swift-typechecker-validategenericfuncsignature.swift ├── 00234-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift ├── 00235-swift-genericparamlist-print.swift ├── 00236-swift-typechecker-typecheckforeachbinding.swift ├── 00237-swift-declrefexpr-setspecialized.swift ├── 00238-llvm-foldingsetnodeid-operator.swift ├── 00239-swiftdeclconverter-importconstructor.swift ├── 00240-argemitter-emitexpanded.swift ├── 00241-swift-lowering-typeconverter-getconstantinfo.swift ├── 00242-swift-lowering-silgenfunction-emitclosurevalue.swift ├── 00244-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00245-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 00246-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 00247-swift-metatypetype-get.swift ├── 00248-swift-clangmoduleunit-getimportedmodules.swift ├── 00249-swift-nominaltypedecl-computeinterfacetype.swift ├── 00250-swift-parser-consumestartinggreater.swift ├── 00251-swift-constraints-constraintsystem-addconstraint.swift ├── 00252-swift-astcontext-getidentifier.swift ├── 00253-swift-constraints-constraintsystem-constraintsystem.swift ├── 00254-swift-typechecker-resolvetypeincontext.swift ├── 00255-swift-tuplepattern-createsimple.swift ├── 00256-swift-tupleexpr-create.swift ├── 00257-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift ├── 00258-swift-constraints-constraintsystem-resolveoverload.swift ├── 00259-swift-lexer-leximpl.swift ├── 00260-swift-declname-printpretty.random.swift ├── 00261-swift-parser-parseexprpostfix.swift ├── 00262-swift-camel-case-getfirstword.swift ├── 00263-swift-constraints-constraintsystem-opentype.swift ├── 00264-isvalididentifiercontinuationcodepoint.swift ├── 00265-swift-typechecker-validatedecl.swift ├── 00266-swift-parser-parseexprorstmt.swift ├── 00267-swift-parser-parseexprcallsuffix.swift ├── 00268-swift-typechecker-typecheckexpression.swift ├── 00272-llvm-irbuilder-createcall.swift ├── 00273-swift-constraints-constraintgraphnode-getadjacency.swift ├── 00274-swift-typechecker-checkinheritanceclause.swift ├── 00275-swift-parser-parseexprpostfix.swift ├── 00276-llvm-errs.swift ├── 00277-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 00278-getselftypeforcontainer.swift ├── 00279-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00280-llvm-foldingset-swift-classtype-nodeequals.swift ├── 00281-void.swift ├── 00282-malloc-zone-malloc.swift ├── 00283-swift-typebase-isspecialized.swift ├── 00284-swift-modulefile-maybereadconformance.swift ├── 00285-getcallerdefaultarg.swift ├── 00286-resolvetypedecl.swift ├── 00287-clang-astcontext-getobjcinterfacetype.swift ├── 00288-swift-typebase-getcanonicaltype.swift ├── 00289-getselftypeforcontainer.swift ├── 00290-swift-declcontext-lookupqualified.swift ├── 00291-swift-clangmoduleunit-lookupvalue.swift ├── 00293-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00294-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00295-getselftypeforcontainer.swift ├── 00296-swift-type-walk.swift ├── 00297-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00298-vtable.swift ├── 00299-resolvetypedecl.swift ├── 00300-swift-typebase-operator.swift ├── 00301-swift-declcontext-lookupqualified.swift ├── 00302-resolvetypedecl.swift ├── 00303-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00304-swift-tuplepattern-create.swift ├── 00305-swift-constraints-constraintsystem-matchtypes.swift ├── 00306-std-function-func-mapsignaturetype.swift ├── 00307-addminimumprotocols.swift ├── 00308-llvm-raw-ostream-write.swift ├── 00309-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 00311-clang-astreader-readtyperecord.swift ├── 00312-swift-genericparamlist-create.swift ├── 00313-swift-typechecker-getprotocol.swift ├── 00314-swift-lowering-typeconverter-getloweredastfunctiontype.swift ├── 00315-swift-genericsignature-get.swift ├── 00316-swift-genericparamlist-addnestedarchetypes.swift ├── 00317-swift-typebase-gettypeofmember.swift ├── 00318-swift-diagnosticengine-flushactivediagnostic.swift ├── 00319-std-function-func-swift-constraints-solution-computesubstitutions.swift ├── 00320-getselftypeforcontainer.swift ├── 00321-swift-typechecker-callwitness.swift ├── 00323-swift-apply-generic-protocol.swift ├── 00324-swift-shortcircuit-isequal.swift ├── 00327-swift-typechecker-typecheckdecl.swift ├── 00328-swift-parser-parseidentifier.swift ├── 00329-swift-parser-parsedeclfunc.swift ├── 00330-swift-structtype-get.swift ├── 00331-llvm-raw-fd-ostream-write-impl.swift ├── 00332-swift-typechecker-getbridgedtoobjc.swift ├── 00333-swift-objcattr-createunnamedimplicit.swift ├── 00334-swift-astvisitor.swift ├── 00335-llvm-raw-fd-ostream-write-impl.swift ├── 00336-swift-parser-parsetoplevelcodedecldelayed.swift ├── 00337-swift-typechecker-checksubstitutions.swift ├── 00338-llvm-smallptrsetimplbase-smallptrsetimplbase.swift ├── 00339-swift-clangimporter-implementation-mapselectortodeclname.swift ├── 00340-swift-parser-consumetoken.swift ├── 00341-cleanupillformedexpression.swift ├── 00342-getselftypeforcontainer.swift ├── 00343-connectedcomponentsdfs.swift ├── 00344-substituteinputsugarargumenttype.swift ├── 00345-vtable.swift ├── 00346-resolvetypedecl.swift ├── 00347-llvm-smallvectorbase-grow-pod.swift ├── 00348-llvm-densemapbase-llvm-smalldensemap-std-pair-swift-cantype.swift ├── 00349-swift-typechecker-resolveidentifiertype.swift ├── 00350-swift-constraints-constraintsystem-simplify.swift ├── 00351-swift-typechecker-checksubstitutions.swift ├── 00352-swift-archetypebuilder-resolvearchetype.swift ├── 00353-resolvetypedecl.swift ├── 00354-swift-modulefile-maybereadpattern.swift ├── 00355-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00356-swift-parser-parsegenericarguments.swift ├── 00357-swift-type-transform.swift ├── 00358-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift ├── 00359-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00360-swift-parser-parseexprlist.swift ├── 00361-swift-constraints-constraintgraph-gatherconstraints.swift ├── 00362-clang-stmt-statisticsenabled.swift ├── 00363-swift-scopeinfo-addtoscope.swift ├── 00364-swift-typechecker-isrepresentableinobjc.swift ├── 00365-getselftypeforcontainer.swift ├── 00366-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00367-llvm-errs.swift ├── 00368-no-stacktrace.swift ├── 00369-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00370-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00371-swift-archetypetype-setnestedtypes.swift ├── 00372-swift-declcontext-lookupqualified.swift ├── 00373-swift-declcontext-lookupqualified.swift ├── 00374-getselftypeforcontainer.swift ├── 00375-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00376-void.swift ├── 00377-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00378-swift-lexer-lexidentifier.swift ├── 00379-swift-type-transform.swift ├── 00380-swift-lexer-lexidentifier.swift ├── 00381-swift-lexer-lexidentifier.swift ├── 00382-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00383-no-stacktrace.swift ├── 00384-resolvetypedecl.swift ├── 00385-swift-declcontext-lookupqualified.swift ├── 00386-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00388-swift-availabilityattr-isunavailable.swift ├── 00389-swift-diagnosticengine-flushactivediagnostic.swift ├── 00390-getselftypeforcontainer.swift ├── 00391-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00392-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 00393-resolvetypedecl.swift ├── 00394-void.swift ├── 00395-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00396-llvm-raw-fd-ostream-write-impl.random.swift ├── 00397-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00398-no-stacktrace.swift ├── 00399-resolvetypedecl.swift ├── 00400-getselftypeforcontainer.swift ├── 00401-swift-typechecker-checksubstitutions.swift ├── 00402-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00403-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00404-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00405-void.swift ├── 00406-swift-declcontext-lookupqualified.swift ├── 00407-void.swift ├── 00408-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00409-llvm-raw-fd-ostream-write-impl.swift ├── 00410-getselftypeforcontainer.swift ├── 00411-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00412-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00413-swift-constraints-solution-computesubstitutions.swift ├── 00414-swift-archetypebuilder-resolvearchetype.swift ├── 00415-resolvetypedecl.swift ├── 00416-swift-typechecker-conformstoprotocol.swift ├── 00417-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00418-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00419-llvm-raw-fd-ostream-write-impl.swift ├── 00420-getselftypeforcontainer.swift ├── 00421-resolvetypedecl.swift ├── 00422-void.swift ├── 00423-swift-archetypebuilder-resolvearchetype.swift ├── 00424-no-stacktrace.random.swift ├── 00425-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00426-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00427-void.swift ├── 00428-getcallerdefaultarg.swift ├── 00429-vtable.swift ├── 00430-resolvetypedecl.swift ├── 00431-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00432-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00433-no-stacktrace.swift ├── 00434-swift-type-walk.swift ├── 00435-swift-typebase-getcanonicaltype.swift ├── 00436-resolvetypedecl.swift ├── 00437-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00438-swift-genericsignature-get.swift ├── 00439-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00440-resolvetypedecl.swift ├── 00441-swift-typebase-getcanonicaltype.swift ├── 00442-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00443-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00444-resolvetypedecl.swift ├── 00445-getselftypeforcontainer.swift ├── 00446-resolvetypedecl.swift ├── 00447-swift-typechecker-checksubstitutions.swift ├── 00448-no-stacktrace.swift ├── 00449-swift-typechecker-validatedecl.swift ├── 00450-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 00451-resolvetypedecl.swift ├── 00452-nanl.random.swift ├── 00453-resolvetypedecl.swift ├── 00454-swift-lexer-lexidentifier.swift ├── 00455-swift-parser-parseexprimpl.swift ├── 00456-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00457-swift-declcontext-lookupqualified.swift ├── 00458-swift-declcontext-lookupqualified.swift ├── 00459-swift-archetypetype-setnestedtypes.swift ├── 00460-bool.swift ├── 00461-swift-clangmoduleunit-getadaptermodule.swift ├── 00462-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00463-swift-metatypetype-get.swift ├── 00464-resolvetypedecl.swift ├── 00465-swift-typebase-isequal.swift ├── 00466-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00467-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 00468-swift-parentype-get.swift ├── 00469-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00470-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 00471-resolvetypedecl.swift ├── 00472-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00473-getselftypeforcontainer.swift ├── 00474-swift-typebase-getcanonicaltype.swift ├── 00475-void.swift ├── 00476-swift-typechecker-validatedecl.swift ├── 00477-no-stacktrace.swift ├── 00478-swift-type-walk.swift ├── 00479-no-stacktrace.swift ├── 00480-szone-free-definite-size.swift ├── 00481-getselftypeforcontainer.swift ├── 00482-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00483-resolvetypedecl.swift ├── 00484-llvm-errs.swift ├── 00485-swift-declcontext-lookupqualified.swift ├── 00486-llvm-smallvectorbase-grow-pod.swift ├── 00487-resolvetypedecl.swift ├── 00488-swift-clangmoduleunit-getadaptermodule.swift ├── 00489-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00490-swift-diagnosticengine-flushactivediagnostic.swift ├── 00491-swift-type-transform.swift ├── 00492-swift-metatypetype-get.swift ├── 00493-swift-type-transform.swift ├── 00494-swift-metatypetype-get.swift ├── 00495-llvm-foldingsetnodeid-operator.swift ├── 00496-getcallerdefaultarg.swift ├── 00497-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00498-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00499-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 00500-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00501-resolvetypedecl.swift ├── 00502-swift-constraints-constraintsystem-diagnosefailurefromconstraints.swift ├── 00503-swift-typebase-getcanonicaltype.swift ├── 00504-resolvetypedecl.swift ├── 00505-swift-lexer-lexidentifier.swift ├── 00506-swift-boundgenerictype-get.swift ├── 00507-std-basic-string-char.swift ├── 00508-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00509-getselftypeforcontainer.swift ├── 00510-resolvetypedecl.swift ├── 00511-swift-constraints-constraintlocator-profile.swift ├── 00512-getselftypeforcontainer.swift ├── 00513-swift-typebase-getcanonicaltype.swift ├── 00514-no-stacktrace.swift ├── 00515-bool.swift ├── 00516-no-stacktrace.swift ├── 00517-swift-constraints-solution-computesubstitutions.swift ├── 00518-no-stacktrace.swift ├── 00519-void.swift ├── 00520-getselftypeforcontainer.swift ├── 00521-swift-tuplepattern-create.swift ├── 00522-no-stacktrace.swift ├── 00523-swift-typevisitor.swift ├── 00524-std-function-func-swift-type-subst.swift ├── 00525-swift-archetypebuilder-maptypeintocontext.swift ├── 00526-swift-typechecker-validatedecl.swift ├── 00527-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00528-swift-declcontext-lookupqualified.swift ├── 00529-swift-type-transform.swift ├── 00530-swift-metatypetype-get.swift ├── 00531-llvm-foldingsetnodeid-operator.swift ├── 00532-swift-constraints-solution-solution.swift ├── 00533-swift-typebase-getcanonicaltype.swift ├── 00534-swift-typebase-getcanonicaltype.swift ├── 00535-swift-type-transform.swift ├── 00536-vtable.swift ├── 00537-swift-constraints-solution-computesubstitutions.swift ├── 00538-swift-clangmoduleunit-getadaptermodule.swift ├── 00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00540-getselftypeforcontainer.swift ├── 00541-resolvetypedecl.swift ├── 00542-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00543-swift-nominaltypedecl-computeinterfacetype.swift ├── 00544-resolvetypedecl.swift ├── 00545-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 00546-swift-typebase-getcanonicaltype.swift ├── 00547-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 00548-no-stacktrace.swift ├── 00549-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00550-std-function-func-swift-type-subst.swift ├── 00551-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00552-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00553-resolvetypedecl.swift ├── 00554-resolvetypedecl.swift ├── 00555-swift-optional-swift-diagnostic-operator.swift ├── 00556-resolvetypedecl.swift ├── 00557-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00558-ioctl.swift ├── 00559-void.swift ├── 00560-swift-declcontext-lookupqualified.swift ├── 00561-resolvetypedecl.swift ├── 00562-swift-typechecker-typecheckexpression.swift ├── 00563-cerror.swift ├── 00564-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00565-swift-lexer-getlocforendoftoken.swift ├── 00566-resolvetypedecl.swift ├── 00567-swift-constraints-constraintsystem-matchtypes.swift ├── 00568-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00569-swift-declcontext-lookupqualified.swift ├── 00570-swift-declcontext-lookupqualified.swift ├── 00571-swift-declcontext-lookupqualified.swift ├── 00572-resolvetypedecl.random.swift ├── 00573-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00574-getselftypeforcontainer.swift ├── 00575-swift-typechecker-checksubstitutions.swift ├── 00576-llvm-errs.swift ├── 00577-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00578-swift-type-walk.swift ├── 00579-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00580-vtable.swift ├── 00581-no-stacktrace.swift ├── 00582-a.swift ├── 00583-swift-funcdecl-setdeserializedsignature.swift ├── 00584-swift-constraints-constraintlocator-profile.swift ├── 00585-getselftypeforcontainer.swift ├── 00586-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00587-swift-pattern-foreachvariable.swift ├── 00588-swift-typebase-getcanonicaltype.swift ├── 00589-swift-diagnosticengine-diagnose.swift ├── 00590-swift-type-walk.swift ├── 00591-swift-typebase-getcanonicaltype.swift ├── 00592-swift-parser-parseexpridentifier.swift ├── 00593-getselftypeforcontainer.swift ├── 00594-getselftypeforcontainer.swift ├── 00595-swift-scopeinfo-addtoscope.swift ├── 00596-swift-modulefile-lookupvalue.swift ├── 00597-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 00598-clang-sema-lookupname.swift ├── 00599-swift-clangmoduleunit-getimportedmodules.swift ├── 00601-getselftypeforcontainer.swift ├── 00602-swift-modulefile-gettype.swift ├── 00603-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00604-swift-typebase-operator.swift ├── 00605-swift-clangmoduleunit-getadaptermodule.swift ├── 00606-swift-typechecker-conformstoprotocol.swift ├── 00607-swift-typebase-getcanonicaltype.swift ├── 00608-swift-typebase-getanyoptionalobjecttype.swift ├── 00609-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 00610-swift-diagnosticengine-flushactivediagnostic.swift ├── 00611-swift-constraints-constraintsystem-opengeneric.swift ├── 00612-swift-typechecker-checksubstitutions.swift ├── 00613-connectedcomponentsdfs.swift ├── 00614-getselftypeforcontainer.swift ├── 00615-swift-typebase-getcanonicaltype.swift ├── 00616-swift-parser-parsedecl.swift ├── 00617-swift-modulefile-gettype.swift ├── 00618-swift-parser-parseexprsequence.swift ├── 00619-swift-type-walk.swift ├── 00620-llvm-bitstreamcursor-readabbreviatedfield.swift ├── 00621-swift-type-walk.swift ├── 00622-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00623-validateattributes.swift ├── 00624-swift-constraints-solution-solution.swift ├── 00625-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00626-swift-lexer-lexidentifier.swift ├── 00627-bool.swift ├── 00628-swift-clangmoduleunit-getadaptermodule.swift ├── 00629-getselftypeforcontainer.swift ├── 00630-llvm-smalldensemap-swift-constraints-constraint.swift ├── 00631-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00632-swift-constraints-constraintsystem-opengeneric.swift ├── 00633-swift-constraints-solution-computesubstitutions.swift ├── 00634-getselftypeforcontainer.swift ├── 00635-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00636-llvm-twine-str.swift ├── 00637-swift-lexer-getlocforendoftoken.swift ├── 00638-swift-typechecker-typecheckexpressionshallow.swift ├── 00639-void.swift ├── 00640-swift-diagnosticengine-flushactivediagnostic.swift ├── 00641-swift-constraints-constraintsystem-solve.swift ├── 00642-llvm-errs.swift ├── 00643-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00644-resolvetypedecl.swift ├── 00645-resolvetypedecl.swift ├── 00646-llvm-raw-fd-ostream-write-impl.swift ├── 00647-std-function-func-swift-type-subst.swift ├── 00648-swift-declcontext-lookupqualified.swift ├── 00649-swift-metatypetype-get.swift ├── 00650-szone-malloc-should-clear.swift ├── 00651-resolvetypedecl.swift ├── 00652-swift-constraints-constraintgraphnode-addconstraint.swift ├── 00653-swift-typebase-getanyoptionalobjecttype.swift ├── 00654-swift-declcontext-lookupqualified.swift ├── 00655-swift-clangmoduleunit-getadaptermodule.swift ├── 00656-swift-astcontext-getidentifier.swift ├── 00657-getselftypeforcontainer.swift ├── 00658-swift-constraints-constraint-create.swift ├── 00659-s.swift ├── 00660-swift-modulefile-getdecl.swift ├── 00661-getselftypeforcontainer.swift ├── 00662-swift-typebase-isequal.swift ├── 00663-swift-module-lookupconformance.swift ├── 00664-swift-pattern-operator.swift ├── 00665-swift-streamprinter-printtext.swift ├── 00666-resolvetypedecl.swift ├── 00667-swift-typedecl-getdeclaredtype.swift ├── 00668-swift-typebase-getcanonicaltype.swift ├── 00669-swift-metatypetype-get.swift ├── 00670-getselftypeforcontainer.swift ├── 00671-swift-constraints-solution-computesubstitutions.swift ├── 00672-swift-diagnosticengine-diagnose.swift ├── 00673-getselftypeforcontainer.swift ├── 00674-getselftypeforcontainer.swift ├── 00675-swift-astcontext-getprotocol.swift ├── 00676-std-function-func-swift-type-subst.swift ├── 00677-swift-typebase-isequal.swift ├── 00678-swift-availabilityattr-isunavailable.swift ├── 00679-swift-clangmoduleunit-getimportedmodules.swift ├── 00680-swift-type-walk.swift ├── 00681-swift-declcontext-lookupqualified.swift ├── 00682-swift-type-walk.swift ├── 00683-swift-metatypetype-get.swift ├── 00684-swift-type-walk.swift ├── 00685-getselftypeforcontainer.swift ├── 00686-swift-typebase-getcanonicaltype.swift ├── 00687-swift-modulefile-getdecl.swift ├── 00688-getselftypeforcontainer.swift ├── 00689-b.swift ├── 00690-swift-declname-declname.swift ├── 00691-swift-inflightdiagnostic.swift ├── 00692-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00693-swift-typechecker-validatetype.swift ├── 00694-getselftypeforcontainer.swift ├── 00695-swift-availabilityattr-isunavailable.swift ├── 00696-std-function-func-swift-type-subst.swift ├── 00697-swift-typebase-getcanonicaltype.swift ├── 00698-swift-type-transform.swift ├── 00699-swift-modulefile-lookupvalue.swift ├── 00700-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 00701-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00702-swift-constraints-constraintsystem-matchtypes.swift ├── 00703-swift-sourcemanager-addnewsourcebuffer.swift ├── 00704-swift-type-walk.swift ├── 00705-swift-typechecker-validategenericfuncsignature.swift ├── 00706-swift-constraints-constraintsystem-matchtypes.swift ├── 00707-swift-metatypetype-get.swift ├── 00708-swift-parser-parsetoken.swift ├── 00709-getselftypeforcontainer.swift ├── 00710-swift-clangmoduleunit-getadaptermodule.swift ├── 00711-swift-declcontext-lookupqualified.swift ├── 00712-swift-constraints-constraintgraph-gatherconstraints.swift ├── 00713-swift-declcontext-lookupqualified.swift ├── 00714-void.swift ├── 00715-swift-constraints-constraintsystem-solve.swift ├── 00716-swift-archetypetype-setnestedtypes.swift ├── 00717-swift-diagnosticengine-diagnose.swift ├── 00718-swift-parentype-get.swift ├── 00719-swift-typebase-getcanonicaltype.swift ├── 00720-szone-malloc-should-clear.swift ├── 00721-no-stacktrace.swift ├── 00722-swift-type-walk.swift ├── 00723-getselftypeforcontainer.swift ├── 00724-swift-typechecker-coercepatterntotype.swift ├── 00725-swift-type-walk.swift ├── 00726-swift-typechecker-resolvetypeincontext.swift ├── 00727-swift-clangmoduleunit-getadaptermodule.swift ├── 00728-swift-typebase-getcanonicaltype.swift ├── 00729-swift-pattern-foreachvariable.swift ├── 00730-swift-modulefile-maybereadgenericparams.swift ├── 00731-swift-typebase-isequal.swift ├── 00732-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00733-resolvetypedecl.swift ├── 00734-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00735-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00736-swift-type-walk.swift ├── 00737-bool.swift ├── 00738-swift-type-walk.swift ├── 00739-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00740-swift-metatypetype-get.swift ├── 00741-szone-malloc-should-clear.swift ├── 00742-swift-metatypetype-get.swift ├── 00743-resolvetypedecl.swift ├── 00744-swift-constraints-constraintsystem-applysolution.swift ├── 00745-swift-type-transform.swift ├── 00746-vtable.swift ├── 00747-swift-typebase-getcanonicaltype.swift ├── 00748-getmemberforbasetype.swift ├── 00749-swift-clangmoduleunit-getadaptermodule.swift ├── 00750-getcallerdefaultarg.swift ├── 00751-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00752-swift-archetypebuilder-resolvearchetype.swift ├── 00753-swift-type-transform.swift ├── 00754-x.swift ├── 00755-swift-genericfunctiontype-get.swift ├── 00756-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00757-x.swift ├── 00758-swift-typechecker-typecheckpattern.swift ├── 00759-resolvetypedecl.swift ├── 00760-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00761-swift-diagnosticengine-flushactivediagnostic.swift ├── 00762-swift-nominaltypedecl-computetype.swift ├── 00763-swift-type-walk.swift ├── 00764-as.swift ├── 00765-swift-langoptions-gettargetconfigoption.swift ├── 00766-swift-type-walk.swift ├── 00767-swift-constraints-constraintsystem-solve.swift ├── 00768-llvm-bitstreamcursor-readrecord.swift ├── 00769-swift-modulefile-getdecl.swift ├── 00770-swift-astvisitor.swift ├── 00771-x.swift ├── 00772-swift-substitutedtype-get.swift ├── 00773-resolvetypedecl.swift ├── 00774-unowned.swift ├── 00775-resolvetypedecl.swift ├── 00776-no-stacktrace.swift ├── 00777-getselftypeforcontainer.swift ├── 00778-swift-dependentmembertype-get.swift ├── 00779-swift-parser-parsetoken.swift ├── 00780-getselftypeforcontainer.swift ├── 00781-swift-constraints-constraintsystem-diagnosefailurefromconstraints.swift ├── 00782-d.swift ├── 00783-swift-typebase-getcanonicaltype.swift ├── 00784-no-stacktrace.swift ├── 00785-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00786-end.swift ├── 00787-getselftypeforcontainer.swift ├── 00788-t.swift ├── 00789-swift-typebase-isexistentialtype.swift ├── 00790-resolvetypedecl.swift ├── 00791-swift-type-walk.swift ├── 00792-swift-parser-parseexprarray.swift ├── 00793-swift-typebase-getcanonicaltype.swift ├── 00794-swift-typebase-isspecialized.swift ├── 00795-swift-type-transform.swift ├── 00796-getselftypeforcontainer.swift ├── 00797-getselftypeforcontainer.swift ├── 00798-swift-typechecker-coercepatterntotype.swift ├── 00799-e.swift ├── 00800-swift-typebase-isequal.swift ├── 00801-swift-typechecker-checksubstitutions.swift ├── 00802-swift-type-walk.swift ├── 00803-void.swift ├── 00804-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00805-swift-constraints-constraintsystem-opengeneric.swift ├── 00806-swift-modulefile-lookupvalue.swift ├── 00807-swift-archetypebuilder-resolvearchetype.swift ├── 00808-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00809-swift-type-walk.swift ├── 00810-a-cd-x.swift ├── 00811-swift-modulefile-getdecl.swift ├── 00812-swift-modulefile-gettype.swift ├── 00813-swift-tupleexpr-create.swift ├── 00814-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00815-swift-typebase-getcanonicaltype.swift ├── 00816-swift-isplatformactive.swift ├── 00818-c.swift ├── 00819-swift-constraints-constraintsystem-opengeneric.swift ├── 00820-x.swift ├── 00822-getselftypeforcontainer.swift ├── 00824-x.swift ├── 00825-resolvetypedecl.swift ├── 00826-swift-typebase-getcanonicaltype.swift ├── 00827-swift-modulefile-maybereadpattern.swift ├── 00828-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00829-swift-constraints-constraintsystem-addconstraint.swift ├── 00830-void.swift ├── 00831-x.swift ├── 00832-swift-lexer-getlocforendoftoken.swift ├── 00833-clang-declvisitor-base-clang-declvisitor-make-const-ptr.swift ├── 00834-t.swift ├── 00835-no-stacktrace.swift ├── 00836-resolvetypedecl.swift ├── 00837-swift-clangmoduleunit-getadaptermodule.swift ├── 00838-no-stacktrace.swift ├── 00839-swift-diagnosticengine-flushactivediagnostic.swift ├── 00840-swift-constraints-solution-computesubstitutions.swift ├── 00842-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00843-anyobject.swift ├── 00844-no-stacktrace.swift ├── 00845-resolvetypedecl.swift ├── 00846-swift-typebase-getanyoptionalobjecttype.swift ├── 00847-swift-typebase-getcanonicaltype.swift ├── 00848-resolvetypedecl.swift ├── 00849-swift-type-transform.swift ├── 00850-getselftypeforcontainer.swift ├── 00851-std-function-func-swift-type-subst.swift ├── 00852-void.swift ├── 00853-swift-typebase-getcanonicaltype.swift ├── 00854-swift-typechecker-validatedecl.swift ├── 00855-swift-parser-parsetypesimple.swift ├── 00856-swift-clangmoduleunit-getimportedmodules.swift ├── 00857-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 00858-swift-typebase-getcanonicaltype.swift ├── 00859-x.swift ├── 00860-getselftypeforcontainer.swift ├── 00861-swift-type-walk.swift ├── 00862-swift-tupletype-get.swift ├── 00863-getselftypeforcontainer.swift ├── 00864-no-stacktrace.swift ├── 00865-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00866-swift-constraints-constraintgraph-addconstraint.swift ├── 00867-swift-archetypetype-setnestedtypes.swift ├── 00868-x.swift ├── 00870-getselftypeforcontainer.swift ├── 00871-swift-constraints-constraintsystem-matchtypes.swift ├── 00872-swift-parser-parseidentifier.swift ├── 00873-no-stacktrace.swift ├── 00874-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00875-getselftypeforcontainer.swift ├── 00876-x.swift ├── 00877-as.swift ├── 00878-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00879-swift-classtype-get.swift ├── 00880-getselftypeforcontainer.swift ├── 00881-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00882-a.swift ├── 00883-t.swift ├── 00884-getselftypeforcontainer.swift ├── 00885-swift-parser-parseexprpostfix.swift ├── 00886-swift-tuplepattern-create.swift ├── 00887-swift-archetypebuilder-resolvearchetype.swift ├── 00888-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00889-swift-type-walk.swift ├── 00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00891-a.swift ├── 00892-swift-protocoltype-canonicalizeprotocols.swift ├── 00893-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00894-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 00895-swift-tuplepattern-create.swift ├── 00896-void.swift ├── 00897-swift-modulefile-lookupvalue.swift ├── 00898-swift-diagnosticengine-flushactivediagnostic.swift ├── 00899-swift-typebase-getcanonicaltype.swift ├── 00900-swift-functiontype-get.swift ├── 00901-ab.swift ├── 00902-c.swift ├── 00903-swift-scopeinfo-addtoscope.swift ├── 00904-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 00905-swift-typechecker-checksubstitutions.swift ├── 00906-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00907-c-t.swift ├── 00908-l.swift ├── 00909-a.swift ├── 00910-no-stacktrace.swift ├── 00911-no-stacktrace.swift ├── 00912-a.swift ├── 00913-no-stacktrace.swift ├── 00914-swift-modulefile-getdecl.swift ├── 00915-resolvetypedecl.swift ├── 00916-swift-metatypetype-get.swift ├── 00917-swift-lexer-leximpl.swift ├── 00919-getselftypeforcontainer.swift ├── 00920-swift-typechecker-typecheckexpression.swift ├── 00921-resolvetypedecl.swift ├── 00922-swift-lexer-getlocforendoftoken.swift ├── 00923-swift-typebase-getcanonicaltype.swift ├── 00924-swift-parser-consumetoken.swift ├── 00925-no-stacktrace.swift ├── 00926-swift-constraints-constraintsystem-opengeneric.swift ├── 00927-swift-constraints-solution-computesubstitutions.swift ├── 00928-swift-tupletype-get.swift ├── 00929-swift-tupletype-get.swift ├── 00930-swift-typebase-getcanonicaltype.swift ├── 00931-swift-typebase-getcanonicaltype.swift ├── 00932-swift-metatypetype-get.swift ├── 00933-no-stacktrace.swift ├── 00934-swift-type-walk.swift ├── 00935-swift-constraints-constraintsystem-solve.swift ├── 00936-no-stacktrace.swift ├── 00937-getselftypeforcontainer.swift ├── 00938-swift-constraints-constraintsystem-matchtypes.swift ├── 00939-swift-typechecker-typecheckpattern.swift ├── 00940-swift-typechecker-validatedecl.swift ├── 00941-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 00942-getselftypeforcontainer.swift ├── 00943-swift-diagnosticengine-diagnose.swift ├── 00944-std-function-func-swift-type-subst.swift ├── 00945-swift-lexer-lexstringliteral.swift ├── 00946-swift-type-walk.swift ├── 00947-void.swift ├── 00948-swift-modulefile-readmembers.swift ├── 00949-d.swift ├── 00950-swift-typebase-getcanonicaltype.swift ├── 00951-swift-typebase-getcanonicaltype.swift ├── 00952-swift-constraints-constraintgraph-gatherconstraints.swift ├── 00953-swift-inflightdiagnostic-highlight.swift ├── 00954-swift-clangmoduleunit-getadaptermodule.swift ├── 00955-swift-genericparamlist-addnestedarchetypes.swift ├── 00956-swift-type-print.swift ├── 00957-void.swift ├── 00958-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00959-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00960-swift-funcdecl-setdeserializedsignature.swift ├── 00961-bool.swift ├── 00962-swift-protocoltype-canonicalizeprotocols.swift ├── 00963-swift-diagnosticengine-flushactivediagnostic.swift ├── 00964-resolvetypedecl.swift ├── 00965-swift-availabilityattr-isunavailable.swift ├── 00966-swift-astprinter-printtextimpl.swift ├── 00967-getselftypeforcontainer.swift ├── 00968-swift-typebase-isexistentialtype.swift ├── 00969-swift-diagnosticengine-flushactivediagnostic.swift ├── 00970-swift-diagnosticengine-flushactivediagnostic.swift ├── 00971-swift-parser-parsebraceitems.swift ├── 00972-no-stacktrace.swift ├── 00973-std-function-func-swift-type-subst.swift ├── 00974-resolvetypedecl.swift ├── 00975-no-stacktrace.swift ├── 00976-swift-declcontext-lookupqualified.swift ├── 00977-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 00978-llvm-foldingset-swift-structtype-nodeequals.swift ├── 00979-getselftypeforcontainer.swift ├── 00980-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 00981-resolvetypedecl.swift ├── 00982-b.swift ├── 00983-a.swift ├── 00984-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 00985-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 00986-swift-unboundgenerictype-get.swift ├── 00987-swift-typechecker-validatedecl.swift ├── 00988-swift-typechecker-typecheckdecl.swift ├── 00989-swift-typechecker-computecaptures.swift ├── 00990-swift-typechecker-checksubstitutions.swift ├── 00991-swift-typebase-isequal.swift ├── 00992-swift-typebase-gettypevariables.swift ├── 00993-swift-typebase-getcanonicaltype.swift ├── 00994-swift-typealiasdecl.swift ├── 00995-swift-tupletype-get.swift ├── 00996-swift-constraints-solution-computesubstitutions.swift ├── 00997-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 00998-bool.swift ├── 00999-swift-parser-skipsingle.swift ├── 01000-swift-parser-parsetypeidentifier.swift ├── 01001-swift-parser-parsedeclimport.swift ├── 01002-swift-parentype-get.swift ├── 01003-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01004-swift-nominaltypedecl-computetype.swift ├── 01005-swift-nominaltype-get.swift ├── 01006-swift-modulefile-resolvecrossreference.swift ├── 01007-swift-modulefile-maybereadpattern.swift ├── 01008-swift-modulefile-maybereadgenericparams.swift ├── 01009-swift-modulefile-getdecl.swift ├── 01010-swift-modulefile-gettype.swift ├── 01011-swift-modulefile-getimportedmodules.swift ├── 01012-swift-modulefile-getdecl.swift ├── 01013-swift-module-lookupconformance.swift ├── 01014-swift-inouttype-get.swift ├── 01015-swift-inflightdiagnostic.swift ├── 01016-swift-genericsignature-get.swift ├── 01017-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 01018-diagnoseunknowntype.swift ├── 01019-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01020-swift-lexer-lexoperatoridentifier.swift ├── 01021-getselftypeforcontainer.swift ├── 01022-swift-genericsignature-get.swift ├── 01023-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01024-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01025-getselftypeforcontainer.swift ├── 01026-swift-type-walk.swift ├── 01027-llvm-foldingset-swift-genericsignature-nodeequals.swift ├── 01028-swift-camel-case-getfirstword.swift ├── 01029-swift-modulefile-maybereadgenericparams.swift ├── 01030-swift-declname-printpretty.swift ├── 01031-getselftypeforcontainer.swift ├── 01032-no-stacktrace.swift ├── 01033-swift-declcontext-lookupqualified.swift ├── 01034-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01037-swift-nominaltypedecl-computetype.swift ├── 01038-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 01039-swift-typechecker-conformstoprotocol.swift ├── 01040-swift-constraints-constraintsystem-simplifytype.swift ├── 01041-swift-declcontext-lookupqualified.swift ├── 01042-swift-typebase-getcanonicaltype.swift ├── 01043-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 01044-getselftypeforcontainer.swift ├── 01045-getselftypeforcontainer.swift ├── 01046-swift-constraints-constraintsystem-simplify.swift ├── 01047-no-stacktrace.swift ├── 01048-swift-typebase-getcanonicaltype.swift ├── 01049-swift-constraints-solution-solution.swift ├── 01050-swift-generictypeparamdecl-generictypeparamdecl.swift ├── 01051-swift-declcontext-lookupqualified.swift ├── 01052-swift-genericsignature-get.swift ├── 01053-swift-inouttype-get.swift ├── 01054-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01055-swift-tupletype-get.swift ├── 01056-swift-typechecker-conformstoprotocol.swift ├── 01057-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01058-swift-declcontext-lookupqualified.swift ├── 01059-swift-constraints-constraintsystem-opengeneric.swift ├── 01060-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01061-swift-typebase-gettypeofmember.swift ├── 01062-swift-typechecker-resolvetypeincontext.swift ├── 01063-swift-clangmoduleunit-getadaptermodule.swift ├── 01064-swift-genericsignature-get.swift ├── 01065-swift-constraints-constraintsystem-assignfixedtype.swift ├── 01066-swift-typebase-getcanonicaltype.swift ├── 01067-resolvetypedecl.swift ├── 01068-swift-modulefile-getdecl.swift ├── 01069-swift-nominaltypedecl-getprotocols.swift ├── 01070-void.swift ├── 01071-swift-modulefile-lookupvalue.swift ├── 01072-swift-typebase-getcanonicaltype.swift ├── 01073-swift-constraints-constraintgraphnode-addconstraint.swift ├── 01074-swift-lexer-getlocforendoftoken.swift ├── 01075-swift-modulefile-lookupvalue.swift ├── 01076-swift-lexer-getlocforendoftoken.swift ├── 01077-swift-declcontext-lookupqualified.swift ├── 01078-void.swift ├── 01079-no-stacktrace.swift ├── 01080-swift-type-transform.swift ├── 01081-getselftypeforcontainer.swift ├── 01082-llvm-foldingsetnodeid-operator.swift ├── 01083-swift-typechecker-typecheckexpression.swift ├── 01084-getselftypeforcontainer.swift ├── 01085-swift-declcontext-lookupqualified.swift ├── 01086-swift-parser-parseexprpostfix.swift ├── 01087-swift-declcontext-lookupqualified.swift ├── 01088-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01089-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01090-swift-parser-parsebraceitems.swift ├── 01091-getcallerdefaultarg.swift ├── 01092-getselftypeforcontainer.swift ├── 01093-resolvetypedecl.swift ├── 01094-swift-modulefile-getdecl.swift ├── 01095-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01096-swift-typechecker-validatedecl.swift ├── 01097-no-stacktrace.swift ├── 01098-no-stacktrace.swift ├── 01099-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01100-swift-type-walk.swift ├── 01101-swift-diagnosticengine-flushactivediagnostic.swift ├── 01102-resolvetypedecl.swift ├── 01103-swift-unboundgenerictype-get.swift ├── 01104-getselftypeforcontainer.swift ├── 01105-void.swift ├── 01106-swift-constraints-constraintsystem-addconstraint.swift ├── 01107-std-function-func-swift-type-subst.swift ├── 01108-swift-constraints-constraintsystem-solve.swift ├── 01109-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01110-swift-archetypetype-getnestedtype.swift ├── 01111-swift-astcontext-setconformsto.swift ├── 01112-getselftypeforcontainer.swift ├── 01113-getselftypeforcontainer.swift ├── 01114-swift-declcontext-lookupqualified.swift ├── 01115-swift-lexer-lexidentifier.swift ├── 01116-swift-typechecker-coercepatterntotype.swift ├── 01117-swift-declcontext-lookupqualified.swift ├── 01118-swift-type-walk.swift ├── 01119-no-stacktrace.swift ├── 01120-clang-codegen-codegenfunction-emitlvalueforfield.swift ├── 01121-swift-derivedconformance-deriveequatable.swift ├── 01122-swift-constraints-constraintsystem-solve.swift ├── 01123-swift-modulefile-lookupvalue.swift ├── 01124-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01125-no-stacktrace.swift ├── 01126-swift-parser-parseexprorstmt.swift ├── 01127-no-stacktrace.swift ├── 01128-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01129-swift-functiontype-get.swift ├── 01130-swift-declcontext-lookupqualified.swift ├── 01131-getselftypeforcontainer.swift ├── 01132-swift-type-walk.swift ├── 01133-swift-clangimporter-loadextensions.swift ├── 01134-getselftypeforcontainer.swift ├── 01135-swift-constraints-constraintsystem-addconstraint.swift ├── 01136-getselftypeforcontainer.swift ├── 01137-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01138-void.swift ├── 01139-swift-genericparamlist-addnestedarchetypes.swift ├── 01140-getselftypeforcontainer.swift ├── 01141-swift-parser-parseexprcallsuffix.swift ├── 01142-std-function-func-swift-type-subst.swift ├── 01143-getselftypeforcontainer.swift ├── 01144-swift-arrayslicetype-get.swift ├── 01145-swift-constraints-constraintsystem-addconstraint.swift ├── 01146-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01147-getselftypeforcontainer.swift ├── 01148-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 01149-llvm-foldingsetnodeid-operator.swift ├── 01150-void.swift ├── 01151-getselftypeforcontainer.swift ├── 01152-swift-derivedconformance-deriveequatable.swift ├── 01153-swift-type-walk.swift ├── 01154-swift-declcontext-lookupqualified.swift ├── 01155-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01156-getselftypeforcontainer.swift ├── 01157-swift-typebase-getcanonicaltype.swift ├── 01158-resolvetypedecl.swift ├── 01159-swift-declcontext-lookupqualified.swift ├── 01160-swift-genericparamlist-addnestedarchetypes.swift ├── 01161-getselftypeforcontainer.swift ├── 01162-swift-tuplepattern-create.swift ├── 01163-swift-declcontext-lookupqualified.swift ├── 01164-no-stacktrace.swift ├── 01165-swift-parser-parsetoken.swift ├── 01166-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01167-swift-constraints-constraintsystem-opengeneric.swift ├── 01168-swift-constraints-solution-solution.swift ├── 01169-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01170-getselftypeforcontainer.swift ├── 01171-swift-parentype-get.swift ├── 01172-getselftypeforcontainer.swift ├── 01173-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01174-swift-type-walk.swift ├── 01175-swift-nominaltypedecl-computetype.swift ├── 01176-swift-constraints-constraintsystem-matchtypes.swift ├── 01177-std-function-func-swift-type-subst.swift ├── 01178-resolvetypedecl.swift ├── 01179-swift-declcontext-lookupqualified.swift ├── 01180-swift-nominaltypedecl-preparelookuptable.swift ├── 01181-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 01182-swift-declcontext-lookupqualified.swift ├── 01183-swift-declcontext-lookupqualified.swift ├── 01184-swift-lexer-lexidentifier.swift ├── 01185-swift-parser-parsetypeidentifier.swift ├── 01186-swift-type-walk.swift ├── 01187-swift-type-walk.swift ├── 01188-swift-genericfunctiontype-get.swift ├── 01189-swift-optional-swift-diagnostic-operator.swift ├── 01190-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift ├── 01191-swift-declcontext-lookupqualified.swift ├── 01192-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01193-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01194-swift-declcontext-lookupqualified.swift ├── 01195-swift-typebase-getcanonicaltype.swift ├── 01196-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01197-swift-typechecker-validatetype.swift ├── 01198-resolvetypedecl.swift ├── 01199-swift-constraints-constraintsystem-opengeneric.swift ├── 01200-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01201-swift-declcontext-lookupqualified.swift ├── 01202-swift-typechecker-validatedecl.swift ├── 01203-swift-typebase-gettypeofmember.swift ├── 01204-swift-parser-parseexprpostfix.swift ├── 01205-llvm-foldingsetnodeid-operator.swift ├── 01206-swift-parser-parseexpridentifier.swift ├── 01207-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01208-swift-modulefile-getdecl.swift ├── 01209-llvm-errs.swift ├── 01210-no-stacktrace.swift ├── 01211-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01212-swift-declname-printpretty.swift ├── 01213-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01214-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 01215-swift-optional-swift-diagnostic-operator.swift ├── 01216-swift-boundgenerictype-get.swift ├── 01217-swift-typechecker-resolveidentifiertype.swift ├── 01218-void.swift ├── 01219-swift-modulefile-gettype.swift ├── 01220-getselftypeforcontainer.swift ├── 01221-swift-typealiasdecl-typealiasdecl.swift ├── 01222-swift-nominaltypedecl-computetype.swift ├── 01223-swift-lexer-leximpl.swift ├── 01224-swift-parser-skipsingle.swift ├── 01225-getselftypeforcontainer.swift ├── 01226-swift-modulefile-gettype.swift ├── 01227-swift-lexer-lexidentifier.swift ├── 01228-swift-constraints-constraintsystem-opengeneric.swift ├── 01229-void.swift ├── 01230-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01231-swift-metatypetype-get.swift ├── 01232-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift ├── 01233-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01234-swift-parser-parseexprpostfix.swift ├── 01235-bool.swift ├── 01236-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01237-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01238-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01239-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 01240-resolvetypedecl.swift ├── 01241-swift-constraints-constraintsystem-assignfixedtype.swift ├── 01242-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 01243-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 01244-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01245-swift-typechecker-checksubstitutions.swift ├── 01246-getselftypeforcontainer.swift ├── 01247-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01248-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01249-getselftypeforcontainer.swift ├── 01250-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01251-getcallerdefaultarg.swift ├── 01252-swift-nominaltypedecl-computetype.swift ├── 01253-swift-tuplepattern-createsimple.swift ├── 01254-swift-constraints-constraintsystem-diagnosefailurefromconstraints.swift ├── 01255-getselftypeforcontainer.swift ├── 01256-swift-typebase-getcanonicaltype.swift ├── 01257-swift-declcontext-lookupqualified.swift ├── 01258-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01259-swift-modulefile-gettype.swift ├── 01260-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01261-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01262-swift-modulefile-maybereadconformance.swift ├── 01263-no-stacktrace.swift ├── 01264-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01265-getcallerdefaultarg.swift ├── 01266-getselftypeforcontainer.swift ├── 01267-swift-protocoltype-canonicalizeprotocols.swift ├── 01268-swift-lexer-lexidentifier.swift ├── 01269-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01270-swift-lexer-lexidentifier.swift ├── 01271-swift-parser-parseexprunary.swift ├── 01272-getselftypeforcontainer.swift ├── 01273-getselftypeforcontainer.swift ├── 01274-resolvetypedecl.swift ├── 01275-swift-diagnosticengine-diagnose.swift ├── 01276-swift-metatypetype-get.swift ├── 01277-diagnoseunknowntype.swift ├── 01278-swift-modulefile-maybereadconformance.swift ├── 01279-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01280-swift-type-walk.swift ├── 01281-swift-lexer-leximpl.swift ├── 01282-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01283-swift-modulefile-getdecl.swift ├── 01284-swift-parser-parseidentifier.swift ├── 01285-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01286-swift-parser-parseexpridentifier.swift ├── 01287-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01288-getselftypeforcontainer.swift ├── 01289-void.swift ├── 01290-no-stacktrace.swift ├── 01291-swift-type-walk.swift ├── 01292-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01293-swift-modulefile-getimportedmodules.swift ├── 01294-getselftypeforcontainer.swift ├── 01295-getselftypeforcontainer.swift ├── 01296-resolvetypedecl.swift ├── 01297-swift-type-walk.swift ├── 01298-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01299-resolvetypedecl.swift ├── 01300-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01301-swift-declcontext-lookupqualified.swift ├── 01302-resolvetypedecl.swift ├── 01303-swift-type-walk.swift ├── 01304-swift-type-walk.swift ├── 01305-getselftypeforcontainer.swift ├── 01306-swift-type-transform.swift ├── 01307-swift-clangmoduleunit-getimportedmodules.swift ├── 01308-std-function-func-swift-type-subst.swift ├── 01309-resolvetypedecl.swift ├── 01310-getselftypeforcontainer.swift ├── 01311-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01312-getselftypeforcontainer.swift ├── 01313-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01314-getselftypeforcontainer.swift ├── 01315-swift-parser-parsebraceitems.swift ├── 01316-swift-typechecker-validatetype.swift ├── 01317-swift-modulefile-maybereadgenericparams.swift ├── 01318-swift-constraints-constraintgraph-addconstraint.swift ├── 01319-swift-typechecker-checksubstitutions.swift ├── 01320-resolvetypedecl.swift ├── 01321-swift-typebase-getcanonicaltype.swift ├── 01322-swift-functiontype-get.swift ├── 01323-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01324-swift-constraints-constraintgraph-removeconstraint.swift ├── 01325-swift-typebase-isequal.swift ├── 01326-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01327-resolvetypedecl.swift ├── 01328-swift-modulefile-lookupvalue.swift ├── 01329-llvm-bitstreamcursor-readrecord.swift ├── 01330-swift-typebase-getcanonicaltype.swift ├── 01331-swift-modulefile-getimportedmodules.swift ├── 01332-swift-type-walk.swift ├── 01333-swift-abstractstoragedecl-makecomputed.swift ├── 01334-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01335-swift-astvisitor.swift ├── 01336-swift-archetypetype-setnestedtypes.swift ├── 01340-llvm-getelementptrinst-getindexedtype.swift ├── 01341-broken-function-found-compilation-aborted.swift ├── 01342-swift-parser-parsegetsetimpl.swift ├── 01343-swift-type-walk.swift ├── 01344-swift-typechecker-checksubstitutions.swift ├── 01345-swift-typechecker-getdefaulttype.swift ├── 01346-swift-tupletype-get.swift ├── 01347-getselftypeforcontainer.swift ├── 01348-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01349-swift-typebase-operator.swift ├── 01350-swift-clangmoduleunit-getadaptermodule.swift ├── 01351-swift-inflightdiagnostic-fixitreplacechars.swift ├── 01352-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01353-swift-streamprinter-printtext.swift ├── 01354-getselftypeforcontainer.swift ├── 01355-getselftypeforcontainer.swift ├── 01356-swift-type-transform.swift ├── 01357-swift-lexer-lexidentifier.swift ├── 01358-swift-lexer-leximpl.swift ├── 01359-getselftypeforcontainer.swift ├── 01360-void.swift ├── 01361-swift-clangmoduleunit-getadaptermodule.swift ├── 01362-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 01363-swift-modulefile-maybereadpattern.swift ├── 01364-swift-enumtype-get.swift ├── 01365-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01366-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 01367-swift-modulefile-getdecl.swift ├── 01368-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01369-swift-modulefile-getdecl.swift ├── 01370-swift-metatypetype-get.swift ├── 01371-swift-constraints-constraintsystem-simplifytype.swift ├── 01372-swift-boundgenerictype-get.swift ├── 01373-swift-valuedecl-getinterfacetype.swift ├── 01374-getselftypeforcontainer.swift ├── 01375-clang-declvisitor-base-clang-declvisitor-make-const-ptr.swift ├── 01376-swift-parser-parsetoken.swift ├── 01377-swift-modulefile-gettype.swift ├── 01378-swift-typechecker-typecheckpattern.swift ├── 01379-swift-parser-parsedeclinit.swift ├── 01380-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01381-bool.swift ├── 01382-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01383-swift-clangmoduleunit-getimportedmodules.swift ├── 01384-swift-declcontext-lookupqualified.swift ├── 01385-swift-typedecl-getdeclaredtype.swift ├── 01386-swift-substitutedtype-get.swift ├── 01387-swift-astcontext-setconformsto.swift ├── 01388-getselftypeforcontainer.swift ├── 01389-swift-type-walk.swift ├── 01390-swift-typebase-gettypevariables.swift ├── 01391-swift-typechecker-callwitness.swift ├── 01392-swift-modulefile-lookupvalue.swift ├── 01393-swift-genericfunctiontype-get.swift ├── 01394-swift-typechecker-typecheckexpression.swift ├── 01395-swift-parser-skipsingle.swift ├── 01396-swift-availabilityattr-isunavailable.swift ├── 01397-swift-availabilityattr-isunavailable.swift ├── 01398-swift-typebase-getcanonicaltype.swift ├── 01399-swift-modulefile-getdecl.swift ├── 01400-swift-inflightdiagnostic.swift ├── 01401-swift-typebase-getdesugaredtype.swift ├── 01402-swift-typebase-getanyoptionalobjecttype.swift ├── 01403-swift-modulefile-getdecl.swift ├── 01404-swift-tupletype-get.swift ├── 01405-swift-clangimporter-implementation-finishloadingclangmodule.swift ├── 01406-swift-nominaltypedecl-computetype.swift ├── 01407-swift-declname-printpretty.swift ├── 01408-swift-type-walk.swift ├── 01409-getselftypeforcontainer.swift ├── 01410-swift-constraints-constraintsystem-lookupmember.swift ├── 01411-swift-typebase-getcanonicaltype.swift ├── 01412-swift-constraints-constraintlocator-profile.swift ├── 01413-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 01414-swift-genericparamlist-create.swift ├── 01415-swift-typebase-getanyoptionalobjecttype.swift ├── 01416-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 01417-swift-extensiondecl-create.swift ├── 01418-resolvetypedecl.swift ├── 01419-swift-modulefile-maybereadgenericparams.swift ├── 01420-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01421-void.swift ├── 01422-swift-parser-parsestmtreturn.swift ├── 01423-swift-typechecker-checksubstitutions.swift ├── 01424-getselftypeforcontainer.swift ├── 01425-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01426-no-stacktrace.swift ├── 01427-swift-typebase-getcanonicaltype.swift ├── 01428-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01429-swift-typebase-getcanonicaltype.swift ├── 01430-swift-expr-getsourcerange.swift ├── 01431-swift-unboundgenerictype-get.swift ├── 01432-swift-bracestmt-create.swift ├── 01433-swift-constraints-solution-simplifytype.swift ├── 01434-std-function-func-swift-typebase-gettypevariables.swift ├── 01435-swift-genericparamlist-addnestedarchetypes.swift ├── 01436-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01437-swift-astprinter-printtextimpl.swift ├── 01438-swift-typebase-getanyoptionalobjecttype.swift ├── 01439-swift-boundgenerictype-get.swift ├── 01440-swift-parser-parsetoken.swift ├── 01441-swift-constraints-constraintgraph-removeconstraint.swift ├── 01442-swift-genericfunctiontype-get.swift ├── 01443-swift-lexer-leximpl.swift ├── 01444-getcallerdefaultarg.swift ├── 01445-swift-typebase-getcanonicaltype.swift ├── 01446-swift-genericparamlist-deriveallarchetypes.swift ├── 01447-swift-parentype-get.swift ├── 01448-resolvetypedecl.swift ├── 01449-swift-modulefile-getdecl.swift ├── 01450-swift-modulefile-maybereadgenericparams.swift ├── 01451-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01452-swift-type-walk.swift ├── 01453-swift-constraints-constraintgraph-change-undo.swift ├── 01454-swift-typechecker-checksubstitutions.swift ├── 01455-swift-constraints-solution-computesubstitutions.swift ├── 01456-getselftypeforcontainer.swift ├── 01457-getselftypeforcontainer.swift ├── 01458-swift-modulefile-maybereadpattern.swift ├── 01459-swift-abstractstoragedecl-makecomputed.swift ├── 01460-swift-typebase-getcanonicaltype.swift ├── 01461-getselftypeforcontainer.swift ├── 01462-swift-archetypebuilder-resolvearchetype.swift ├── 01463-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01464-llvm-bitstreamcursor-readabbreviatedfield.swift ├── 01465-swift-nominaltypedecl-computetype.swift ├── 01466-swift-archetypetype-setnestedtypes.swift ├── 01467-swift-inouttype-get.swift ├── 01468-swift-modulefile-getimportedmodules.swift ├── 01469-swift-modulefile-getdecl.swift ├── 01470-swift-modulefile-getdecl.swift ├── 01471-swift-clangmoduleunit-getimportedmodules.swift ├── 01472-swift-modulefile-configurestorage.swift ├── 01473-swift-typebase-gettypevariables.swift ├── 01474-swift-functiontype-get.swift ├── 01475-swift-functiontype-get.swift ├── 01476-swift-lexer-getlocforendoftoken.swift ├── 01477-swift-typebase-getcanonicaltype.swift ├── 01478-swift-boundgenerictype-get.swift ├── 01479-resolvetypedecl.swift ├── 01480-swift-typebase-getcanonicaltype-edited.swift ├── 01480-swift-typebase-getcanonicaltype.swift ├── 01481-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01482-swift-metatypetype-get.swift ├── 01483-swift-typebase-getcanonicaltype.swift ├── 01484-swift-constraints-constraintsystem-matchtypes.swift ├── 01485-swift-constraints-constraintsystem-addconstraint.swift ├── 01487-std-function-func-swift-type-subst.swift ├── 01488-swift-lexer-leximpl.swift ├── 01489-swift-lexer-lexidentifier.swift ├── 01490-resolvetypedecl.swift ├── 01491-llvm-raw-ostream-write.swift ├── 01492-swift-constraints-constraintsystem-matchtypes.swift ├── 01493-swift-constraints-constraintlocator-profile.swift ├── 01495-swift-functiontype-get.swift ├── 01496-swift-nominaltypedecl-getprotocols.swift ├── 01497-swift-bracestmt-create.swift ├── 01498-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01499-swift-typechecker-coercepatterntotype.swift ├── 01501-swift-diagnosticengine-flushactivediagnostic.swift ├── 01502-swift-modulefile-gettype.swift ├── 01503-swift-constraints-constraintlocator-profile.swift ├── 01504-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01505-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 01506-swift-typechecker-validategenericfuncsignature.swift ├── 01507-swift-constraints-matchcallarguments.swift ├── 01508-resolvetypedecl.swift ├── 01509-bool-edited.swift ├── 01509-bool.swift ├── 01510-swift-typebase-getcanonicaltype.swift ├── 01512-swift-optional-swift-infixoperatordecl.swift ├── 01513-resolvetypedecl.swift ├── 01514-swift-optional-swift-diagnostic-operator.swift ├── 01515-swift-typebase-getcanonicaltype.swift ├── 01516-swift-type-walk.swift ├── 01517-swift-declname-printpretty.swift ├── 01518-swift-typebase-getdesugaredtype.swift ├── 01519-swift-type-walk.swift ├── 01520-llvm-bitstreamcursor-readrecord.swift ├── 01521-getselftypeforcontainer.swift ├── 01522-swift-typebase-getcanonicaltype.swift ├── 01523-resolvetypedecl.swift ├── 01524-getselftypeforcontainer.swift ├── 01525-swift-astvisitor.swift ├── 01526-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01527-resolvetypedecl.swift ├── 01528-getselftypeforcontainer.swift ├── 01530-swift-declcontext-lookupqualified.swift ├── 01531-resolvetypedecl.swift ├── 01532-swift-type-walk.swift ├── 01533-vtable.swift ├── 01534-bool.swift ├── 01535-swift-constraints-constraintgraph-removeconstraint.swift ├── 01536-getselftypeforcontainer.swift ├── 01537-getselftypeforcontainer.swift ├── 01538-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01539-swift-metatypetype-get.swift ├── 01540-swift-constraints-solution-solution.swift ├── 01541-swift-typebase-getcanonicaltype.swift ├── 01542-swift-typebase-getcanonicaltype.swift ├── 01543-bool.swift ├── 01544-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01545-swift-streamprinter-printtext.swift ├── 01546-vtable.swift ├── 01547-swift-modulefile-lookupvalue.swift ├── 01548-swift-typebase-getanyoptionalobjecttype.swift ├── 01549-llvm-foldingset-swift-declname-compounddeclname-nodeequals.swift ├── 01550-swift-genericfunctiontype-get.swift ├── 01551-swift-type-walk.swift ├── 01552-swift-constraints-solution-solution.swift ├── 01553-swift-typebase-getcanonicaltype.swift ├── 01554-swift-typealiasdecl-typealiasdecl.swift ├── 01555-swift-constraints-constraintsystem-simplifytype.swift ├── 01556-resolvetypedecl.swift ├── 01557-swift-metatypetype-get.swift ├── 01558-swift-parser-parseexprunary.swift ├── 01559-swift-typebase-getcanonicaltype.swift ├── 01560-vtable.swift ├── 01561-swift-constraints-solution-computesubstitutions.swift ├── 01562-resolvetypedecl.swift ├── 01563-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01564-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01565-std-function-func-swift-type-subst.swift ├── 01566-getselftypeforcontainer.swift ├── 01567-swift-tuplepattern-createsimple.swift ├── 01568-getselftypeforcontainer.swift ├── 01569-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01570-llvm-foldingsetnodeid-operator.swift ├── 01571-swift-type-walk.swift ├── 01572-swift-constraints-solution-solution.swift ├── 01573-resolvetypedecl.swift ├── 01574-swift-typebase-getcanonicaltype.swift ├── 01575-swift-modulefile-lookupvalue.swift ├── 01576-swift-generictypeparamdecl-generictypeparamdecl.swift ├── 01577-getcallerdefaultarg.swift ├── 01578-swift-type-walk.swift ├── 01579-swift-typebase-getcanonicaltype.swift ├── 01580-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01581-swift-pattern-foreachvariable.swift ├── 01582-swift-constraints-solution-computesubstitutions.swift ├── 01583-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 01584-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01585-swift-type-walk.swift ├── 01586-swift-typechecker-checksubstitutions.swift ├── 01587-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01588-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01589-swift-constraints-constraintgraph-removeconstraint.swift ├── 01590-resolvetypedecl.swift ├── 01591-resolvetypedecl.swift ├── 01592-swift-pattern-foreachvariable.swift ├── 01593-swift-typebase-getcanonicaltype.swift ├── 01594-swift-genericfunctiontype-get.swift ├── 01595-swift-modulefile-gettype.swift ├── 01596-llvm-bitstreamcursor-readvbr.swift ├── 01597-swift-structtype-get.swift ├── 01598-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 01599-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01600-swift-availabilityattr-isunavailable.swift ├── 01601-llvm-prettystacktraceentry-prettystacktraceentry.swift ├── 01602-getselftypeforcontainer.swift ├── 01603-swift-typechecker-validatedecl.swift ├── 01604-swift-parser-parseidentifier.swift ├── 01605-swift-protocoltype-canonicalizeprotocols.swift ├── 01606-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01607-swift-type-walk.swift ├── 01608-swift-lexer-getlocforendoftoken.swift ├── 01609-getselftypeforcontainer.swift ├── 01610-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01611-getselftypeforcontainer.swift ├── 01613-swift-typebase-getcanonicaltype.swift ├── 01614-swift-type-walk.swift ├── 01615-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01616-swift-constraints-constraintgraph-gatherconstraints.swift ├── 01617-swift-scopeinfo-addtoscope.swift ├── 01618-swift-typebase-getcanonicaltype.swift ├── 01619-swift-typebase-getcanonicaltype.swift ├── 01620-resolvetypedecl.swift ├── 01621-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01622-swift-modulefile-maybereadpattern.swift ├── 01623-getselftypeforcontainer.swift ├── 01624-swift-namelookup-lookupinmodule.swift ├── 01626-swift-constraints-solution-solution.swift ├── 01627-swift-modulefile-gettype.swift ├── 01628-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01629-getselftypeforcontainer.swift ├── 01630-getselftypeforcontainer.swift ├── 01631-swift-constraints-solution-solution.swift ├── 01632-swift-typechecker-validatedecl.swift ├── 01633-swift-genericfunctiontype-get.swift ├── 01634-swift-typechecker-checksubstitutions.swift ├── 01635-swift-mangle-mangler-mangletype.swift ├── 01636-swift-tupletype-get.swift ├── 01637-getselftypeforcontainer.swift ├── 01638-swift-genericfunctiontype-get.swift ├── 01640-swift-typebase-getcanonicaltype.swift ├── 01641-swift-modulefile-maybereadgenericparams.swift ├── 01642-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01643-swift-typechecker-checksubstitutions.swift ├── 01644-resolvetypedecl.swift ├── 01645-swift-typebase-getdesugaredtype.swift ├── 01647-no-stacktrace.swift ├── 01649-swift-constraints-constraintgraph-change-undo.swift ├── 01650-swift-typebase-getanyoptionalobjecttype.swift ├── 01651-getselftypeforcontainer.swift ├── 01653-swift-pattern-foreachvariable.swift ├── 01654-swift-astprinter-printname.swift ├── 01655-getselftypeforcontainer.swift ├── 01656-swift-astcontext-getconformsto.swift ├── 01657-resolvetypedecl.swift ├── 01658-swift-parser-parsetypeidentifier.swift ├── 01659-swift-typebase-getcanonicaltype.swift ├── 01660-swift-parser-parseexprsequence.swift ├── 01661-swift-parser-parsedeclfunc.swift ├── 01662-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01664-swift-parser-parsetypetuplebody.swift ├── 01665-llvm-foldingset-swift-enumtype-nodeequals.swift ├── 01666-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 01667-swift-parser-parseexprpostfix.swift ├── 01668-swift-type-walk.swift ├── 01669-void.swift ├── 01670-swift-modulefile-maybereadgenericparams.swift ├── 01671-swift-structtype-get.swift ├── 01673-swift-constraints-constraintsystem-opengeneric.swift ├── 01674-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 01675-swift-streamprinter-printtext.swift ├── 01676-swift-parser-parseexprsequence.swift ├── 01677-swift-dependentmembertype-get.swift ├── 01678-swift-type-walk.swift ├── 01679-swift-optional-swift-diagnostic-operator.swift ├── 01681-swift-nominaltypedecl-preparelookuptable.swift ├── 01682-swift-parser-parsedecl.swift ├── 01683-swift-nominaltype-get.swift ├── 01685-swift-typebase-getanyoptionalobjecttype.swift ├── 01686-swift-astcontext-setconformsto.swift ├── 01687-swift-constraints-constraintgraph-removeconstraint.swift ├── 01688-swift-constraints-constraintsystem-matchtypes.swift ├── 01689-getselftypeforcontainer.swift ├── 01691-clang-astcontext-getrecordtype.swift ├── 01692-swift-typebase-getcanonicaltype.swift ├── 01693-swift-typealiasdecl-typealiasdecl.swift ├── 01694-void.swift ├── 01695-swift-pattern-operator.swift ├── 01696-getselftypeforcontainer.swift ├── 01698-swift-type-walk.swift ├── 01699-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01700-swift-modulefile-gettype.swift ├── 01701-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01702-swift-type-walk.swift ├── 01703-swift-constraints-constraintlocator-profile.swift ├── 01704-getselftypeforcontainer.swift ├── 01705-vtable.swift ├── 01706-resolvetypedecl.swift ├── 01707-swift-genericsignature-get.swift ├── 01708-swift-type-walk.swift ├── 01709-vtable.swift ├── 01710-swift-typechecker-callwitness.swift ├── 01711-swift-module-lookupvalue.swift ├── 01712-swift-boundgenerictype-get.swift ├── 01713-swift-typebase-getcanonicaltype.swift ├── 01714-swift-typebase-getcanonicaltype.swift ├── 01715-void.swift ├── 01716-swift-type-walk.swift ├── 01717-getcallerdefaultarg.swift ├── 01718-swift-nominaltypedecl-preparelookuptable.swift ├── 01719-swift-typebase-getanyoptionalobjecttype.swift ├── 01720-swift-clangmoduleunit-getimportedmodules.swift ├── 01721-getselftypeforcontainer.swift ├── 01722-getselftypeforcontainer.swift ├── 01723-swift-optional-swift-diagnostic-operator.swift ├── 01724-llvm-tinyptrvector-swift-valuedecl-push-back.swift ├── 01725-swift-type-walk.swift ├── 01726-getmemberforbasetype.swift ├── 01728-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01729-swift-parser-parsetoken.swift ├── 01730-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01731-swift-dictionarytype-get.swift ├── 01732-swift-parser-parsebraceitemlist.swift ├── 01733-swift-tupletype-get.swift ├── 01734-resolvetypedecl.swift ├── 01735-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01736-void.swift ├── 01737-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 01738-vtable.swift ├── 01739-swift-constraints-constraintsystem-solvesimplified.swift ├── 01740-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01741-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 01742-swift-arrayslicetype-get.swift ├── 01743-swift-typechecker-checksubstitutions.swift ├── 01745-swift-typebase-getcanonicaltype.swift ├── 01746-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 01747-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 01748-swift-typebase-getanyoptionalobjecttype.swift ├── 01749-swift-typebase-getcanonicaltype.swift ├── 01750-swift-modulefile-gettype.swift ├── 01751-swift-type-walk.swift ├── 01752-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01753-swift-lexer-lexstringliteral.swift ├── 01754-getselftypeforcontainer.swift ├── 01755-swift-streamprinter-printtext.swift ├── 01756-swift-constraints-constraintsystem-matchfunctiontypes.swift ├── 01757-swift-typebase-getcanonicaltype.swift ├── 01758-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01759-bool.swift ├── 01760-swift-typebase-getcanonicaltype.swift ├── 01761-swift-genericfunctiontype-get.swift ├── 01762-swift-constraints-constraintsystem-opengeneric.swift ├── 01763-swift-archetypebuilder-resolvearchetype.swift ├── 01764-swift-astprinter-printtextimpl.swift ├── 01765-swift-inflightdiagnostic-highlight.swift ├── 01766-swift-typechecker-validatedecl.swift ├── 01767-resolvetypedecl.swift ├── 01768-swift-type-walk.swift ├── 01769-getselftypeforcontainer.swift ├── 01770-swift-typechecker-buildarrayinjectionfnref.swift ├── 01771-swift-sourcefile-getcache.swift ├── 01772-void.swift ├── 01773-swift-typebase-getcanonicaltype.swift ├── 01774-getmemberforbasetype.swift ├── 01775-resolvetypedecl.swift ├── 01776-swift-availabilityattr-isunavailable.swift ├── 01777-resolvetypedecl.swift ├── 01778-getselftypeforcontainer.swift ├── 01779-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01780-getselftypeforcontainer.swift ├── 01781-swift-optional-std-pair-swift-api-notes-contextid.swift ├── 01782-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01783-getselftypeforcontainer.swift ├── 01784-swift-constraints-constraintgraph-lookupnode.swift ├── 01785-swift-scopeinfo-addtoscope.swift ├── 01786-std-function-func-swift-type-subst.swift ├── 01787-swift-clangmoduleunit-getimportedmodules.swift ├── 01788-swift-typebase-getcanonicaltype.swift ├── 01789-swift-generictypeparamtype-get.swift ├── 01790-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 01791-swift-typedecl-getdeclaredtype.swift ├── 01792-swift-genericsignature-get.swift ├── 01793-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01794-swift-astcontext-setconformsto.swift ├── 01795-swift-pattern-foreachvariable.swift ├── 01796-swift-modulefile-getdecl.swift ├── 01797-swift-typebase-getcanonicaltype.swift ├── 01798-swift-typechecker-coercepatterntotype.swift ├── 01799-resolvetypedecl.swift ├── 01800-swift-functiontype-get.swift ├── 01801-swift-typebase-getcanonicaltype.swift ├── 01802-swift-astvisitor.swift ├── 01803-swift-modulefile-getdecl.swift ├── 01804-swift-modulefile-maybereadpattern.swift ├── 01805-swift-type-walk.swift ├── 01806-swift-typechecker-validatedecl.swift ├── 01807-resolvetypedecl.swift ├── 01808-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 01809-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 01810-swift-clangimporter-implementation-finishloadingclangmodule.swift ├── 01811-swift-modulefile-maybereadgenericparams.swift ├── 01812-swift-lexer-getlocforendoftoken.swift ├── 01813-swift-archetypebuilder-resolvearchetype.swift ├── 01814-swift-constraints-constraintsystem-matchtypes.swift ├── 01815-getselftypeforcontainer.swift ├── 01816-swift-type-walk.swift ├── 01817-swift-typebase-getcanonicaltype.swift ├── 01818-swift-typebase-isspecialized.swift ├── 01819-swift-typevisitor.swift ├── 01820-cleanupillformedexpression.swift ├── 01821-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01822-swift-typebase-isspecialized.swift ├── 01823-llvm-sys-path-append.swift ├── 01824-swift-typebase-getcanonicaltype.swift ├── 01825-swift-module-lookupvalue.swift ├── 01826-swift-typebase-getanyoptionalobjecttype.swift ├── 01827-getselftypeforcontainer.swift ├── 01828-swift-typealiasdecl-typealiasdecl.swift ├── 01829-llvm-foldingset-swift-classtype-nodeequals.swift ├── 01830-swift-constraints-constraintgraphnode-getadjacency.swift ├── 01831-getselftypeforcontainer.swift ├── 01832-swift-lexer-leximpl.swift ├── 01833-swift-clangmoduleunit-getimportedmodules.swift ├── 01834-getselftypeforcontainer.swift ├── 01835-getselftypeforcontainer.swift ├── 01836-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01837-getselftypeforcontainer.swift ├── 01838-void.swift ├── 01839-swift-modulefile-gettype.swift ├── 01840-getselftypeforcontainer.swift ├── 01841-swift-metatypetype-get.swift ├── 01842-swift-associatedtypedecl-associatedtypedecl.swift ├── 01843-llvm-bitstreamcursor-readrecord.swift ├── 01844-swift-constraints-constraintsystem-assignfixedtype.swift ├── 01845-swift-typebase-gettypeofmember.swift ├── 01846-swift-parser-parseexprpostfix.swift ├── 01847-std-function-func-swift-type-subst.swift ├── 01848-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01849-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01850-swift-type-walk.swift ├── 01851-swift-genericparamlist-addnestedarchetypes.swift ├── 01852-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 01853-swift-lexer-lexidentifier.swift ├── 01854-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 01855-swift-pattern-foreachvariable.swift ├── 01856-swift-parser-parsetypesimple.swift ├── 01857-std-function-func-swift-type-subst.swift ├── 01858-llvm-densemap-swift-valuedecl.swift ├── 01859-swift-constraints-solution-solution.swift ├── 01860-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01861-swift-parser-parseexprclosure.swift ├── 01862-swift-genericparamlist-deriveallarchetypes.swift ├── 01863-swift-modulefile-maybereadpattern.swift ├── 01864-swift-valuedecl-settype.swift ├── 01865-swift-typechecker-validatetype.swift ├── 01866-swift-archetypetype-setnestedtypes.swift ├── 01867-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01868-swift-typebase-getcanonicaltype.swift ├── 01870-swift-protocoltype-canonicalizeprotocols.swift ├── 01872-void.swift ├── 01873-swift-pattern-foreachvariable.swift ├── 01874-swift-metatypetype-get.swift ├── 01875-swift-modulefile-gettype.swift ├── 01876-swift-type-walk.swift ├── 01877-swift-typebase-isexistentialtype.swift ├── 01878-resolvetypedecl.swift ├── 01880-swift-typechecker-checksubstitutions.swift ├── 01881-swift-structtype-get.swift ├── 01882-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 01883-getselftypeforcontainer.swift ├── 01884-swift-typechecker-resolvetypeincontext.swift ├── 01885-swift-constraints-solution-simplifytype.swift ├── 01886-swift-typebase-operator.swift ├── 01887-swift-type-walk.swift ├── 01888-vtable.swift ├── 01889-swift-typebase-getcanonicaltype.swift ├── 01890-swift-clangmoduleunit-getadaptermodule.swift ├── 01892-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01893-resolvetypedecl.swift ├── 01894-swift-type-walk.swift ├── 01895-swift-typechecker-validatedecl.swift ├── 01896-swift-parser-parsedecl.swift ├── 01897-resolvetypedecl.swift ├── 01898-swift-parser-parsefunctionarguments.swift ├── 01899-swift-declcontext-lookupqualified.swift ├── 01900-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01901-swift-constraints-constraintsystem-matchtypes.swift ├── 01902-getselftypeforcontainer.swift ├── 01903-swift-type-walk.swift ├── 01905-swift-optionaltype-get.swift ├── 01906-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 01907-swift-generictypeparamdecl-generictypeparamdecl.swift ├── 01908-std-function-func-mapsignaturetype.swift ├── 01910-swift-modulefile-gettype.swift ├── 01911-swift-archetypetype-setnestedtypes.swift ├── 01912-llvm-foldingsetnodeid-operator.swift ├── 01914-swift-parser-parsetoken.swift ├── 01915-swift-typechecker-getprotocol.swift ├── 01916-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01917-getselftypeforcontainer.swift ├── 01918-swift-clangmoduleunit-getimportedmodules.swift ├── 01919-swift-typebase-getcanonicaltype.swift ├── 01920-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 01921-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 01922-getselftypeforcontainer.swift ├── 01923-swift-lexer-lexstringliteral.swift ├── 01924-swift-typebase-getcanonicaltype.swift ├── 01925-swift-parser-consumetoken.swift ├── 01926-swift-constraints-constraintgraph-addconstraint.swift ├── 01927-swift-type-walk.swift ├── 01928-swift-metatypetype-get.swift ├── 01929-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 01930-void.swift ├── 01931-swift-protocolcompositiontype-build.swift ├── 01932-swift-declname-printpretty.swift ├── 01933-swift-constraints-constraintsystem-solve.swift ├── 01935-swift-genericfunctiontype-get.swift ├── 01936-getselftypeforcontainer.swift ├── 01937-swift-typechecker-validatedecl.swift ├── 01938-swift-parser-skipsingle.swift ├── 01939-swift-functiontype-get.swift ├── 01940-swift-typebase-getcanonicaltype.swift ├── 01941-swift-optionaltype-get.swift ├── 01942-resolvetypedecl.swift ├── 01943-swift-type-walk.swift ├── 01944-swift-type-print.swift ├── 01945-getselftypeforcontainer.swift ├── 01946-resolvetypedecl.swift ├── 01947-resolvetypedecl.swift ├── 01948-swift-metatypetype-get.swift ├── 01949-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 01950-swift-modulefile-lookupvalue.swift ├── 01951-swift-constraints-constraintsystem-assignfixedtype.swift ├── 01952-swift-functiontype-get.swift ├── 01953-swift-module-lookupconformance.swift ├── 01954-swift-constraints-constraintsystem-assignfixedtype.swift ├── 01955-std-function-func-swift-type-subst.swift ├── 01957-swift-typechecker-resolvetypeincontext.swift ├── 01958-std-function-func-swift-type-subst.swift ├── 01960-resolvetypedecl.swift ├── 01961-swift-metatypetype-get.swift ├── 01962-swift-genericfunctiontype-get.swift ├── 01963-swift-nominaltypedecl-computetype.swift ├── 01964-resolvetypedecl.swift ├── 01965-swift-constraints-constraintsystem-diagnosefailurefromconstraints.swift ├── 01966-swift-clangmoduleunit-getimportedmodules.swift ├── 01967-swift-type-walk.swift ├── 01968-bool.swift ├── 01969-getmemberforbasetype.swift ├── 01970-void.swift ├── 01971-swift-metatypetype-get.swift ├── 01972-resolvetypedecl.swift ├── 01973-void.swift ├── 01974-swift-declname-declname.swift ├── 01975-getselftypeforcontainer.swift ├── 01976-llvm-yaml-scalartraits-float-input.swift ├── 01977-swift-constraints-constraintgraph-addconstraint.swift ├── 01978-swift-typebase-getcanonicaltype.swift ├── 01979-swift-parser-parseexprclosure.swift ├── 01980-swift-typebase-operator.swift ├── 01981-swift-modulefile-maybereadgenericparams.swift ├── 01982-resolvetypedecl.swift ├── 01983-std-function-func-swift-type-subst.swift ├── 01984-swift-protocoltype-canonicalizeprotocols.swift ├── 01985-swift-parser-parsestmtforeach.swift ├── 01986-swift-parser-parseexprunary.swift ├── 01987-swift-functiontype-get.swift ├── 01988-swift-modulefile-lookupvalue.swift ├── 01989-void.swift ├── 01990-swift-modulefile-lookupvalue.swift ├── 01991-swift-declcontext-lookupqualified.swift ├── 01992-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 01993-swift-typechecker-checksubstitutions.swift ├── 01994-swift-parser-consumetoken.swift ├── 01995-swift-constraints-constraintsystem-solve.swift ├── 01996-swift-parser-parsedeclenumcase.swift ├── 01997-swift-typechecker-checksubstitutions.swift ├── 01998-swift-tupletype-get.swift ├── 01999-swift-lexer-leximpl.swift ├── 02000-swift-constraints-constraintsystem-opengeneric.swift ├── 02001-swift-typebase-getcanonicaltype.swift ├── 02002-resolvetypedecl.swift ├── 02003-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 02004-swift-diagnosticengine-flushactivediagnostic.swift ├── 02005-swift-parser-parsedeclvargetset.swift ├── 02006-swift-typebase-getdesugaredtype.swift ├── 02007-swift-type-walk.swift ├── 02008-swift-tupletype-get.swift ├── 02009-swift-type-walk.swift ├── 02010-resolvetypedecl.swift ├── 02011-swift-lexer-lexidentifier.swift ├── 02012-inferdynamic.swift ├── 02013-swift-lexer-leximpl.swift ├── 02014-swift-parser-parsetypesimple.swift ├── 02015-swift-typebase-gettypeofmember.swift ├── 02016-swift-tuplepattern-create.swift ├── 02017-swift-astcontext-getdictionarydecl.swift ├── 02018-swift-declname-printpretty.swift ├── 02019-swift-protocoltype-canonicalizeprotocols.swift ├── 02020-swift-lexer-getlocforendoftoken.swift ├── 02021-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 02022-swift-clangmoduleunit-getimportedmodules.swift ├── 02023-void.swift ├── 02024-getselftypeforcontainer.swift ├── 02025-resolvetypedecl.swift ├── 02026-swift-pattern-foreachvariable.swift ├── 02027-swift-unboundgenerictype-get.swift ├── 02028-swift-constraints-constraintsystem-simplify.swift ├── 02029-resolvetypedecl.swift ├── 02030-std-function-func-swift-type-subst.swift ├── 02031-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 02032-swift-typechecker-resolveidentifiertype.swift ├── 02033-swift-typebase-getcanonicaltype.swift ├── 02034-swift-optional-swift-diagnostic-operator.swift ├── 02035-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 02036-getselftypeforcontainer.swift ├── 02037-swift-type-walk.swift ├── 02038-llvm-bitstreamcursor-readvbr.swift ├── 02039-swift-type-walk.swift ├── 02040-getselftypeforcontainer.swift ├── 02041-swift-typechecker-checksubstitutions.swift ├── 02042-swift-typechecker-validatedecl.swift ├── 02043-std-function-func-swift-constraints-solution-computesubstitutions.swift ├── 02044-swift-typechecker-typecheckpattern.swift ├── 02045-swift-type-walk.swift ├── 02046-swift-pattern-operator.swift ├── 02047-swift-type-walk.swift ├── 02048-swift-enumdecl-issimpleenum.swift ├── 02049-swift-pattern-foreachvariable.swift ├── 02050-swift-type-walk.swift ├── 02051-swift-tupletype-get.swift ├── 02052-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 02053-swift-modulefile-maybereadsubstitution.swift ├── 02054-swift-diagnosticengine-flushactivediagnostic.swift ├── 02055-llvm-foldingsetnodeid-operator.swift ├── 02056-swift-type-walk.swift ├── 02057-swift-clangmoduleunit-getadaptermodule.swift ├── 02058-swift-constraints-constraintsystem-solvesimplified.swift ├── 02059-resolvetypedecl.swift ├── 02060-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 02061-swift-constraints-constraintgraph-gatherconstraints.swift ├── 02062-getselftypeforcontainer.swift ├── 02063-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02064-swift-diagnosticengine-diagnose.swift ├── 02065-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 02066-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 02067-getselftypeforcontainer.swift ├── 02068-swift-parser-parsedeclfunc.swift ├── 02069-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02072-swift-functiontype-get.swift ├── 02073-swift-optional-swift-diagnostic-operator.swift ├── 02074-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift ├── 02075-swift-nominaltypedecl-computetype.swift ├── 02076-swift-modulefile-getdecl.swift ├── 02077-swift-typebase-getcanonicaltype.swift ├── 02078-swift-parser-parsedeclinit.swift ├── 02079-swift-module-lookupvalue.swift ├── 02080-swift-type-walk.swift ├── 02081-swift-inouttype-get.swift ├── 02082-swift-clangmoduleunit-getimportedmodules.swift ├── 02084-getselftypeforcontainer.swift ├── 02085-swift-range-swift-nestedgenericparamlistiterator-swift-archetypetype.swift ├── 02086-swift-modulefile-getdecl.swift ├── 02087-swift-generictypeparamdecl-generictypeparamdecl.swift ├── 02088-swift-constraints-constraintsystem-matchfunctiontypes.swift ├── 02089-swift-typechecker-resolvetypeincontext.swift ├── 02090-swift-type-walk.swift ├── 02091-swift-constraints-constraintsystem-finalize.swift ├── 02092-swift-abstractstoragedecl-makecomputed.swift ├── 02093-swift-metatypetype-get.swift ├── 02094-swift-typechecker-resolvetypeincontext.swift ├── 02095-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 02096-swift-functiontype-get.swift ├── 02097-swift-singlerawcomment-singlerawcomment.swift ├── 02098-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 02099-swift-clangimporter-loadmodule.swift ├── 02100-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 02101-getselftypeforcontainer.swift ├── 02102-swift-typebase-getcanonicaltype.swift ├── 02103-swift-typebase-getcanonicaltype.swift ├── 02104-resolvetypedecl.swift ├── 02105-swift-modulefile-getdecl.swift ├── 02106-swift-typebase-getcanonicaltype.swift ├── 02107-swift-functiontype-get.swift ├── 02108-swift-type-transform.swift ├── 02109-swift-constraints-solution-computesubstitutions.swift ├── 02110-swift-modulefile-gettype.swift ├── 02111-swift-declcontext-lookupqualified.swift ├── 02112-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02113-swift-typechecker-resolvetypeincontext.swift ├── 02114-getselftypeforcontainer.swift ├── 02115-vtable.swift ├── 02116-swift-modulefile-maybereadgenericparams.swift ├── 02117-swift-typebase-getcanonicaltype.swift ├── 02118-swift-typechecker-checkinheritanceclause.swift ├── 02119-swift-metatypetype-get.swift ├── 02120-swift-type-walk.swift ├── 02121-getselftypeforcontainer.swift ├── 02122-swift-modulefile-maybereadgenericparams.swift ├── 02123-swift-clangmoduleunit-getadaptermodule.swift ├── 02124-swift-type-transform.swift ├── 02125-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 02126-swift-metatypetype-get.swift ├── 02127-swift-modulefile-maybereadpattern.swift ├── 02128-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02129-swift-clangmoduleunit-getimportedmodules.swift ├── 02130-vtable.swift ├── 02131-swift-parser-parsedeclclass.swift ├── 02132-resolvetypedecl.swift ├── 02133-resolvetypedecl.swift ├── 02134-swift-constraints-constraintsystem-matchtypes.swift ├── 02135-swift-metatypetype-get.swift ├── 02136-swift-lexer-lexidentifier.swift ├── 02137-getselftypeforcontainer.swift ├── 02138-swift-modulefile-maybereadpattern.swift ├── 02139-swift-constraints-constraintgraphnode-addconstraint.swift ├── 02140-getselftypeforcontainer.swift ├── 02141-swift-parser-skipsingle.swift ├── 02142-formatdiagnostictext.swift ├── 02143-swift-structtype-get.swift ├── 02144-swift-parser-parsestmt.swift ├── 02145-swift-typebase-getcanonicaltype.swift ├── 02146-swift-type-transform.swift ├── 02147-swift-diagnosticengine-diagnose.swift ├── 02148-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 02149-swift-constraints-constraintgraph-gatherconstraints.swift ├── 02150-swift-typechecker-coercepatterntotype.swift ├── 02151-swift-tupletype-get.swift ├── 02153-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 02154-swift-sourcefile-getcache.swift ├── 02155-swift-optional-swift-diagnostic-operator.swift ├── 02156-swift-typebase-getcanonicaltype.swift ├── 02157-swift-nominaltypedecl-computetype.swift ├── 02158-swift-type-walk.swift ├── 02159-swift-typechecker-typecheckexpression.swift ├── 02161-swift-type-walk.swift ├── 02162-swift-type-walk.swift ├── 02163-swift-parser-parseexprlist.swift ├── 02164-swift-typechecker-checksubstitutions.swift ├── 02165-swift-diagnosticengine-diagnose.swift ├── 02166-swift-type-walk.swift ├── 02167-swift-typechecker-validatedecl.swift ├── 02168-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02169-swift-typebase-getcanonicaltype.swift ├── 02170-swift-inouttype-get.swift ├── 02171-swift-tupletype-get.swift ├── 02172-swift-boundgenerictype-get.swift ├── 02173-swift-parser-skipsingle.swift ├── 02174-swift-modulefile-lookupvalue.swift ├── 02175-swift-scopeinfo-addtoscope.swift ├── 02176-swift-typebase-getcanonicaltype.swift ├── 02177-swift-metatypetype-get.swift ├── 02178-swift-lexer-leximpl.swift ├── 02179-llvm-bitstreamcursor-readrecord.swift ├── 02180-getselftypeforcontainer.swift ├── 02181-swift-modulefile-getdecl.swift ├── 02182-swift-streamprinter-printtext.swift ├── 02183-swift-type-walk.swift ├── 02184-getselftypeforcontainer.swift ├── 02185-swift-constraints-constraintsystem-matchtypes.swift ├── 02186-getselftypeforcontainer.swift ├── 02187-swift-protocoltype-canonicalizeprotocols.swift ├── 02188-swift-diagnosticengine-flushactivediagnostic.swift ├── 02189-swift-type-walk.swift ├── 02190-getselftypeforcontainer.swift ├── 02191-swift-streamprinter-printtext.swift ├── 02192-swift-scopeinfo-addtoscope.swift ├── 02193-swift-typechecker-resolvetypeincontext.swift ├── 02194-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02195-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02196-swift-optional-swift-diagnostic-operator.swift ├── 02197-resolvetypedecl.swift ├── 02198-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 02199-getselftypeforcontainer.swift ├── 02200-getselftypeforcontainer.swift ├── 02201-std-function-func-swift-type-subst.swift ├── 02202-swift-boundgenerictype-get.swift ├── 02203-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 02204-swift-clangmoduleunit-getadaptermodule.swift ├── 02205-resolvetypedecl.swift ├── 02206-void.swift ├── 02207-swift-nominaltypedecl-getprotocols.swift ├── 02208-swift-modulefile-configurestorage.swift ├── 02209-swift-typebase-operator.swift ├── 02210-swift-typechecker-coercepatterntotype.swift ├── 02211-swift-nominaltypedecl-preparelookuptable.swift ├── 02213-llvm-smallptrsetimplbase-smallptrsetimplbase.swift ├── 02214-swift-inouttype-get.swift ├── 02215-swift-modulefile-gettype.swift ├── 02216-swift-archetypetype-setnestedtypes.swift ├── 02217-swift-bracestmt-create.swift ├── 02218-swift-typebase-getdesugaredtype.swift ├── 02219-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 02220-swift-namelookup-lookupinmodule.swift ├── 02221-swift-type-walk.swift ├── 02222-swift-generictypeparamdecl-generictypeparamdecl.swift ├── 02223-swift-lexer-leximpl.swift ├── 02224-swift-typebase-operator.swift ├── 02225-swift-sourcemanager-getmessage.swift ├── 02226-swift-modulefile-getdecl.swift ├── 02227-swift-type-walk.swift ├── 02228-swift-type-walk.swift ├── 02229-swift-parser-parsedeclextension.swift ├── 02230-std-function-func-mapsignaturetype.swift ├── 02231-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02232-swift-parser-parsedaccessors-record.swift ├── 02234-bool.swift ├── 02235-swift-declname-printpretty.swift ├── 02236-swift-nominaltypedecl-computetype.swift ├── 02237-swift-parser-parsetypecomposition.swift ├── 02238-swift-typechecker-coercepatterntotype.swift ├── 02239-swift-parser-consumetoken.swift ├── 02240-swift-typebase-getcanonicaltype.swift ├── 02241-swift-diagnosticengine-diagnose.swift ├── 02243-swift-boundgenerictype-get.swift ├── 02244-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 02245-swift-typebase-getcanonicaltype.swift ├── 02246-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 02247-swift-constraints-constraintsystem-finalize.swift ├── 02248-swift-typebase-getcanonicaltype.swift ├── 02249-swift-constraints-constraintsystem-opengeneric.swift ├── 02250-swift-parser-parsetoken.swift ├── 02251-swift-lexer-getlocforendoftoken.swift ├── 02252-swift-typechecker-resolveidentifiertype.swift ├── 02253-swift-type-walk.swift ├── 02254-swift-type-walk.swift ├── 02255-swift-genericsignature-get.swift ├── 02256-swift-sourcefile-getcache.swift ├── 02257-swift-any-from-nsmutablearray.swift ├── 02327-swift-clangimporter-lookupvalue.swift ├── 03204-swift-type-transform.swift ├── 03326-swift-archetypetype-setnestedtypes.swift ├── 04450-swift-typebase-getcanonicaltype.swift ├── 04592-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 05045-swift-typebase-getcanonicaltype.swift ├── 05431-swift-declname-printpretty.swift ├── 06207-swift-diagnosticengine-flushactivediagnostic.swift ├── 06252-swift-typechecker-conformstoprotocol.swift ├── 06542-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 07285-swift-astprinter-printname.swift ├── 08008-swift-typechecker-typecheckexpression.swift ├── 08893-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 09354-swift-nominaltypedecl-computetype.swift ├── 09385-swift-structtype-get.swift ├── 09650-swift-typebase-getcanonicaltype.swift ├── 09990-std-function-func-swift-type-subst.swift ├── 10023-swift-typebase-getcanonicaltype.swift ├── 10248-swift-streamprinter-printtext.swift ├── 10659-swift-printingdiagnosticconsumer-handlediagnostic.timeout.swift ├── 11093-swift-substitutedtype-get.swift ├── 12748-swift-constraints-constraintsystem-simplify.swift ├── 13000-swift-constraints-constraintsystem-matchtypes.swift ├── 13737-swift-availabilityattr-isunavailable.swift ├── 16694-swift-constraints-constraintsystem-opentype.swift ├── 21655-swift-boundgenerictype-get.swift ├── 21765-vtable.swift ├── 21847-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 21852-swift-constraints-constraintsystem-opengeneric.swift ├── 22250-swift-typevisitor.swift ├── 22253-swift-type-transform.swift ├── 22391-swift-genericparamlist-deriveallarchetypes.swift ├── 22582-swift-clangmoduleunit-getimportedmodules.swift ├── 22725-swift-constraints-constraintsystem-solvesimplified.swift ├── 23060-swift-typechecker-validatedecl.swift ├── 23086-swift-typechecker-validatedecl.swift ├── 23445-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 23680-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 23919-swift-astvisitor.swift ├── 23974-swift-declname-printpretty.swift ├── 24232-swift-lexer-leximpl.swift ├── 24245-swift-constraints-constraintsystem-solve.swift ├── 24394-swift-typevariabletype-implementation-getrepresentative.swift ├── 24440-swift-typechecker-coercepatterntotype.swift ├── 24531-swift-metatypetype-get.swift ├── 24558-swift-typebase-gatherallsubstitutions.swift ├── 24624-swift-module-lookupconformance.swift ├── 24645-swift-diagnosticengine-flushactivediagnostic.swift ├── 24670-isunknownobjecttype.swift ├── 24680-swift-typechecker-validategenericfuncsignature.swift ├── 24769-std-function-func-swift-type-subst.swift ├── 24797-no-stacktrace.swift ├── 24798-no-stacktrace.swift ├── 24800-swift-constraints-constraintsystem-matchsuperclasstypes.swift ├── 24864-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 24879-getmemberforbasetype.swift ├── 24900-swift-typebase-getmembersubstitutions.swift ├── 24915-swift-typebase-getcanonicaltype.swift ├── 24947-swift-lexer-leximpl.swift ├── 24960-swift-typedecl-getdeclaredinterfacetype.swift ├── 24969-swift-vardecl-emitlettovarnoteifsimple.swift ├── 24987-swift-expr-findexistinginitializercontext.swift ├── 25009-swift-typechecker-resolvetypeincontext.swift ├── 25011-swift-constraints-constraintsystem-opengeneric.swift ├── 25128-swift-type-transform.swift ├── 25152-swift-typechecker-resolvetypeincontext.swift ├── 25154-swift-constraints-constraintsystem-opengeneric.swift ├── 25163-swift-constraints-constraintsystem-opengeneric.swift ├── 25327-swift-metatypetype-get.swift ├── 25329-swift-typebase-getmembersubstitutions.swift ├── 25340-findlocalval-checkpattern.swift ├── 25341-swift-inflightdiagnostic-fixitreplacechars.swift ├── 25342-swift-sourcemanager-getbytedistance.swift ├── 25343-swift-parser-parsedeclfunc.swift ├── 25344-swift-modulefile-gettype.swift ├── 25345-swift-parser-parsedecl.swift ├── 25346-swift-parser-skipsingle.swift ├── 25347-swift-typechecker-checkinheritanceclause.swift ├── 25348-swift-markasobjc.swift ├── 25349-swift-typechecker-validatedecl.swift ├── 25350-swift-typeloc-iserror.swift ├── 25351-swift-serialization-serializer-writenormalconformance.swift ├── 25352-swift-boundgenerictype-getsubstitutions.swift ├── 25353-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25354-no-stacktrace.swift ├── 25355-swift-typechecker-typecheckpatternbinding.swift ├── 25356-swift-diagnosticengine-emitdiagnostic.swift ├── 25357-swift-parser-parseexprorstmt.swift ├── 25358-llvm-foldingset-swift-classtype-nodeequals.swift ├── 25359-swift-genericparamlist-deriveallarchetypes.swift ├── 25360-swift-lexer-getlocforendoftoken.swift ├── 25361-swift-funcdecl-setdeserializedsignature.swift ├── 25362-swift-genericparamlist-create.swift ├── 25363-swift-archetypebuilder-addrequirement.swift ├── 25364-swift-parser-parsetoken.swift ├── 25365-no-stacktrace.swift ├── 25366-swift-conformancelookuptable-updatelookuptable.swift ├── 25367-swift-conformancelookuptable-updatelookuptable.swift ├── 25368-swift-genericfunctiontype-get.swift ├── 25369-swift-iterabledeclcontext-getmembers.swift ├── 25370-swift-genericsignature-get.swift ├── 25371-llvm-raw-fd-ostream-write-impl.swift ├── 25372-swift-lexer-leximpl.swift ├── 25373-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25374-swift-diagnosticengine-emitdiagnostic.swift ├── 25375-swift-typebase-isequal.swift ├── 25376-swift-parser-parsedecl.swift ├── 25377-swift-declname-printpretty.swift ├── 25378-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 25379-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25380-swift-parser-parsedecl.swift ├── 25381-swift-nominaltypedecl-makemembervisible.swift ├── 25382-swift-typechecker-overapproximateosversionsatlocation.swift ├── 25383-void.swift ├── 25384-swift-constraints-constraintsystem-opengeneric.swift ├── 25385-swift-patternbindingdecl-setpattern.swift ├── 25386-swift-protocoltype-canonicalizeprotocols.swift ├── 25387-swift-typebase-getsuperclass.swift ├── 25388-swift-lexer-lexidentifier.swift ├── 25389-swift-funcdecl-setdeserializedsignature.swift ├── 25390-swift-inflightdiagnostic.swift ├── 25391-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 25392-swift-patternbindingdecl-setpattern.swift ├── 25393-swift-protocolconformance-subst.swift ├── 25394-swift-parser-skipsingle.swift ├── 25395-std-function-func.swift ├── 25396-swift-typechecker-validatetype.swift ├── 25397-swift-astcontext-allocate.swift ├── 25398-swift-serialization-serializer-writenormalconformance.swift ├── 25399-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25401-swift-functiontype-get.swift ├── 25402-swift-archetypebuilder-finalize.swift ├── 25403-swift-protocoltype-canonicalizeprotocols.swift ├── 25404-swift-lexer-leximpl.swift ├── 25405-swift-parser-parsedecl.swift ├── 25406-swift-functiontype-get.swift ├── 25407-swift-conformancelookuptable-expandimpliedconformances.swift ├── 25408-swift-boundgenerictype-get.swift ├── 25409-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25410-swift-typechecker-resolvetypeincontext.swift ├── 25411-swift-typechecker-validatedecl.swift ├── 25412-swift-sourcemanager-getbytedistance.swift ├── 25413-llvm-errs.swift ├── 25414-swift-generictypeparamtype-get.swift ├── 25415-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift ├── 25416-swift-parser-parsedecl.swift ├── 25417-swift-inouttype-get.swift ├── 25418-swift-typechecker-validatetype.swift ├── 25419-swift-archetypebuilder-finalize.swift ├── 25420-swift-expr-walk.swift ├── 25421-swift-conformancelookuptable-getimplicitprotocols.swift ├── 25422-swift-nominaltypedecl-setgenericsignature.swift ├── 25423-swift-inouttype-get.swift ├── 25424-swift-typechecker-computeaccessibility.swift ├── 25425-swift-parser-parsedecl.swift ├── 25426-swift-parser-parsedecl.swift ├── 25427-swift-typechecker-resolveidentifiertype.swift ├── 25428-swift-nominaltypedecl-prepareextensions.swift ├── 25429-swift-typechecker-resolvetypeincontext.swift ├── 25430-swift-dependentmembertype-get.swift ├── 25431-swift-prettystacktracetyperepr-print.swift ├── 25432-abort.swift ├── 25433-swift-archetypebuilder-finalize.swift ├── 25434-swift-typechecker-validatedecl.swift ├── 25435-swift-valuedecl-setinterfacetype.swift ├── 25436-swift-derivedfileunit-lookupvalue.swift ├── 25437-swift-typechecker-resolveidentifiertype.swift ├── 25438-swift-parser-parsedecl.swift ├── 25439-swift-conformancelookuptable-addprotocol.swift ├── 25440-swift-typeloc-iserror.swift ├── 25441-swift-modulefile-gettype.swift ├── 25442-llvm-smdiagnostic-smdiagnostic.swift ├── 25443-swift-parser-parsedecl.swift ├── 25444-swift-archetypebuilder-finalize.swift ├── 25445-swift-type-transform.swift ├── 25446-swift-typeloc-iserror.swift ├── 25447-llvm-tinyptrvector-swift-valuedecl-push-back.swift ├── 25448-swift-archetypebuilder-addrequirement.swift ├── 25449-swift-lexer-leximpl.swift ├── 25450-void.swift ├── 25451-swift-scopeinfo-addtoscope.swift ├── 25452-swift-typechecker-typecheckpattern.swift ├── 25453-swift-inflightdiagnostic.swift ├── 25454-swift-abstractclosureexpr-setparams.swift ├── 25455-swift-typechecker-coercepatterntotype.swift ├── 25456-swift-removeshadoweddecls.swift ├── 25457-std-function-func-swift-type-subst.swift ├── 25458-swift-archetypetype-getnestedtype.swift ├── 25459-swift-declcontext-lookupqualified.swift ├── 25460-swift-expr-walk.swift ├── 25461-no-stacktrace.swift ├── 25462-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25463-swift-typebase-getanyoptionalobjecttype.swift ├── 25464-swift-typechecker-typecheckexpression.swift ├── 25465-swift-namelookup-lookupinmodule.swift ├── 25466-swift-parser-parsebraceitemlist.swift ├── 25467-swift-metatypetype-get.swift ├── 25468-swift-genericsignature-get.swift ├── 25469-swift-constraints-constraintsystem-matchtypes.swift ├── 25470-swift-typechecker-checkdeclarationavailability.swift ├── 25471-swift-iterabledeclcontext-setloader.swift ├── 25472-swift-typechecker-coercepatterntotype.swift ├── 25473-swift-inflightdiagnostic.swift ├── 25474-swift-parser-diagnose.swift ├── 25475-swift-parser-parsedecl.swift ├── 25476-swift-genericfunctiontype-get.swift ├── 25477-swift-genericparamlist-deriveallarchetypes.swift ├── 25478-swift-astcontext-allocate.swift ├── 25479-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25480-swift-typechecker-validatedecl.swift ├── 25481-swift-modulefile-getimportedmodules.swift ├── 25482-void.swift ├── 25483-swift-performexprdiagnostics.swift ├── 25484-swift-modulefile-getdecl.swift ├── 25485-swift-patternbindingdecl-setpattern.swift ├── 25486-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25487-llvm-bitstreamcursor-read.swift ├── 25488-std-function-func-swift-type-subst.swift ├── 25489-swift-valuedecl-getinterfacetype.swift ├── 25490-swift-streamprinter-printtext.swift ├── 25491-swift-parser-parsebraceitems.swift ├── 25492-swift-astcontext-allocate.swift ├── 25493-swift-sourcemanager-getbytedistance.swift ├── 25494-swift-type-print.swift ├── 25495-void.swift ├── 25496-swift-typechecker-lookupmembertype.swift ├── 25497-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 25498-swift-constraints-constraint-constraint.swift ├── 25499-swift-typechecker-addimplicitconstructors.swift ├── 25500-swift-lexer-lexidentifier.swift ├── 25501-swift-genericparamlist-addnestedarchetypes.swift ├── 25502-swift-typedecl-getdeclaredinterfacetype.swift ├── 25503-swift-namelookup-lookupinmodule.swift ├── 25504-swift-constraints-constraintgraphnode-getadjacency.swift ├── 25505-swift-constraints-constraintsystem-salvage.swift ├── 25506-swift-type-print.swift ├── 25507-void.swift ├── 25508-swift-archetypebuilder-addrequirement.swift ├── 25509-swift-lexer-lexidentifier.swift ├── 25510-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 25511-swift-modulefile-gettype.swift ├── 25512-swift-genericsignature-get.swift ├── 25513-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 25514-bool.swift ├── 25515-swift-memberlookuptable-addmember.swift ├── 25516-swift-diagnosticengine-emitdiagnostic.swift ├── 25517-swift-typechecker-validatetype.swift ├── 25518-swift-lexer-leximpl.swift ├── 25519-void.swift ├── 25520-swift-typechecker-checkinheritanceclause.swift ├── 25521-swift-ide-printdeclusr.swift ├── 25522-swift-typebase-getsuperclass.swift ├── 25523-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 25524-swift-constraints-constraintsystem-simplifytype.swift ├── 25525-swift-modulefile-getimportedmodules.swift ├── 25526-swift-lexer-lexidentifier.swift ├── 25527-swift-modulefile-getimportedmodules.swift ├── 25528-swift-iterabledeclcontext-getmembers.swift ├── 25529-void.swift ├── 25530-swift-diagnosticengine-flushactivediagnostic.swift ├── 25531-swift-abstractclosureexpr-setparams.swift ├── 25532-swift-declname-printpretty.swift ├── 25533-bool.swift ├── 25534-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 25535-swift-astvisitor.swift ├── 25536-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25537-swift-parser-parsegenericparameters.swift ├── 25538-swift-archetypebuilder-finalize.swift ├── 25539-std-function-func-mapsignaturetype.swift ├── 25540-swift-parser-parsedeclstruct.swift ├── 25541-swift-lexer-getlocforendoftoken.swift ├── 25542-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25543-swift-typechecker-typecheckexpression.swift ├── 25544-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25545-swift-parser-parsestmt.swift ├── 25546-swift-metatypetype-get.swift ├── 25547-swift-diagnosticengine-flushactivediagnostic.swift ├── 25548-void.swift ├── 25549-swift-constraints-constraintsystem-gettypeofreference.swift ├── 25550-swift-unboundgenerictype-get.swift ├── 25551-llvm-bitstreamcursor-read.swift ├── 25552-swift-type-walk.swift ├── 25553-swift-performexprdiagnostics.swift ├── 25554-swift-archetypetype-getnestedtype.swift ├── 25555-swift-funcdecl-setdeserializedsignature.swift ├── 25556-swift-modulefile-getcommentfordecl.swift ├── 25557-swift-typebase-getanyoptionalobjecttype.swift ├── 25558-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 25559-swift-lexer-leximpl.swift ├── 25560-swift-typechecker-overapproximateosversionsatlocation.swift ├── 25561-swift-diagnosticengine-flushactivediagnostic.swift ├── 25562-swift-serialization-serializer-writedeclattribute.swift ├── 25563-swift-constraints-constraintsystem-solve.swift ├── 25564-swift-astprinter-printtextimpl.swift ├── 25565-swift-modulefile-loadextensions.swift ├── 25566-swift-typechecker-resolvetypeincontext.swift ├── 25567-swift-lexer-getlocforendoftoken.swift ├── 25568-swift-diagnosticengine-flushactivediagnostic.swift ├── 25569-swift-tupletype-get.swift ├── 25570-std-function-func-mapsignaturetype.swift ├── 25571-swift-typechecker-validatedecl.swift ├── 25572-swift-type-print.swift ├── 25573-swift-typechecker-lookupmember.swift ├── 25574-llvm-foldingset-swift-declname-compounddeclname-nodeequals.swift ├── 25575-swift-streamprinter-printtext.swift ├── 25576-swift-serialization-serializer-writeblockinfoblock.swift ├── 25577-swift-markasobjc.swift ├── 25578-swift-parser-parsedeclvar.swift ├── 25579-swift-metatypetype-get.swift ├── 25580-swift-typechecker-addimplicitconstructors.swift ├── 25581-swift-protocoltype-canonicalizeprotocols.swift ├── 25582-swift-typechecker-resolvesuperclass.swift ├── 25583-swift-substitutedtype-get.swift ├── 25584-addnestedrequirements.swift ├── 25585-swift-sourcemanager-extracttext.swift ├── 25586-std-function-func-mapsignaturetype.swift ├── 25587-swift-typebase-getanyoptionalobjecttype.swift ├── 25588-swift-typedecl-getdeclaredinterfacetype.swift ├── 25589-swift-inflightdiagnostic.swift ├── 25590-swift-declcontext-getlocalconformances.swift ├── 25591-std-function-func-swift-archetypebuilder-maptypeintocontext.swift ├── 25592-swift-parser-parsetoken.swift ├── 25593-swift-inouttype-get.swift ├── 25594-swift-dependentmembertype-get.swift ├── 25595-swift-parser-parsegetset.swift ├── 25596-swift-modulefile-getimportedmodules.swift ├── 25597-swift-inflightdiagnostic.swift ├── 25598-swift-genericsignature-get.swift ├── 25599-swift-iterabledeclcontext-getmembers.swift ├── 25600-swift-declname-printpretty.swift ├── 25601-resolveidenttypecomponent.swift ├── 25602-swift-protocoltype-canonicalizeprotocols.swift ├── 25603-swift-sourcemanager-extracttext.swift ├── 25604-swift-funcdecl-funcdecl.swift ├── 25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 25606-swift-constraints-solution-solution.swift ├── 25607-swift-parserunit-implementation-implementation.swift ├── 25608-swift-iterabledeclcontext-getmembers.swift ├── 25609-swift-inouttype-get.swift ├── 25610-swift-metatypetype-get.swift ├── 25611-std-function-func-swift-typebase-gettypevariables.swift ├── 25612-swift-patternbindingdecl-create.swift ├── 25613-llvm-foldingset-swift-classtype-nodeequals.swift ├── 25614-llvm-mutablearrayref-swift-protocoldecl.swift ├── 25615-swift-typechecker-coercepatterntotype.swift ├── 25616-swift-parser-diagnose.swift ├── 25617-swift-typebase-getcanonicaltype.swift ├── 25618-swift-constraints-constraintsystem-simplifytype.swift ├── 25619-swift-typechecker-validatedecl.swift ├── 25620-swift-inflightdiagnostic-fixitreplacechars.swift ├── 25621-swift-metatypetype-get.swift ├── 25622-swift-inflightdiagnostic.swift ├── 25623-swift-modulefile-gettype.swift ├── 25624-swift-moduledecl-lookupvalue.swift ├── 25625-swift-typechecker-resolveinheritanceclause.swift ├── 25626-swift-nominaltypedecl-prepareextensions.swift ├── 25627-swift-archetypebuilder-addconformancerequirement.swift ├── 25628-swift-genericsignature-get.swift ├── 25629-swift-astcontext-allocate.swift ├── 25630-swift-typechecker-overapproximateosversionsatlocation.swift ├── 25631-swift-parser-parseexprpostfix.swift ├── 25632-swift-stmt-walk.swift ├── 25633-llvm-smdiagnostic-print.swift ├── 25634-swift-parser-parsetoken.swift ├── 25635-swift-expr-walk.swift ├── 25636-swift-typeloc-iserror.swift ├── 25637-swift-typechecker-lookupmember.swift ├── 25638-swift-modulefile-gettype.swift ├── 25639-swift-valuedecl-settype.swift ├── 25640-swift-modulefile-declcommenttableinfo-readdata.swift ├── 25641-swift-constraints-constraintsystem-computeassigndesttype.swift ├── 25642-swift-metatypetype-get.swift ├── 25643-swift-markasobjc.swift ├── 25644-swift-parser-parsedecl.swift ├── 25645-llvm-bitstreamcursor-read.swift ├── 25646-swift-parser-applyattributetotype.swift ├── 25647-swift-astcontext-setrawcomment.swift ├── 25648-swift-typechecker-overapproximateosversionsatlocation.swift ├── 25649-firsttarget.swift ├── 25650-checktypedeclavailability.swift ├── 25651-swift-constraints-constraintsystem-addoverloadset.swift ├── 25652-bool.swift ├── 25653-swift-tupletype-get.swift ├── 25654-swift-typechecker-typecheckdecl.swift ├── 25655-void.swift ├── 25656-swift-parser-applyattributetotype.swift ├── 25657-llvm-bitstreamcursor-read.swift ├── 25658-swift-inflightdiagnostic.swift ├── 25659-swift-modulefile-gettype.swift ├── 25660-swift-typechecker-buildrefexpr.swift ├── 25661-swift-parser-parsestmtif.swift ├── 25662-swift-valuedecl-settype.swift ├── 25663-swift-concretedeclref-specializeddeclref-create.swift ├── 25664-swift-typechecker-validatetype.swift ├── 25665-swift-inflightdiagnostic-fixitreplacechars.swift ├── 25666-swift-constraints-generalfailurediagnosis-diagnosegeneralconversionfailure.swift ├── 25667-swift-genericsignature-genericsignature.swift ├── 25668-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25669-swift-sourcefile-lookupcache-lookupvalue.swift ├── 25670-swift-conformancelookuptable-addprotocol.swift ├── 25671-swift-tuplepattern-create.swift ├── 25672-swift-astcontext-allocate.swift ├── 25673-swift-boundgenerictype-get.swift ├── 25674-swift-typechecker-validatedecl.swift ├── 25675-swift-typechecker-resolvesuperclass.swift ├── 25676-swift-functiontype-get.swift ├── 25677-swift-genericsignature-profile.swift ├── 25678-llvm-bitstreamcursor-read.swift ├── 25679-swift-declrefexpr-setspecialized.swift ├── 25680-swift-conformancelookuptable-lookupconformances.swift ├── 25681-std-function-func-swift-constraints-constraintgraph-verify.swift ├── 25682-swift-modulefile-gettype.swift ├── 25683-swift-valuedecl-getinterfacetype.swift ├── 25684-swift-typebase-isspecialized.swift ├── 25685-swift-parser-parsedeclenum.swift ├── 25686-swift-parser-parseexprclosure.swift ├── 25687-swift-removeshadoweddecls.swift ├── 25688-swift-lexer-lexidentifier.swift ├── 25689-swift-patternbindingdecl-getpatternentryindexforvardecl.swift ├── 25690-swift-astvisitor.swift ├── 25691-bool.swift ├── 25692-std-function-func-mapsignaturetype.swift ├── 25693-swift-typechecker-validatedecl.swift ├── 25694-llvm-foldingset-swift-classtype-nodeequals.swift ├── 25695-swift-typechecker-typecheckexpression.swift ├── 25696-llvm-bitstreamcursor-read.swift ├── 25697-swift-parser-parsegetsetimpl.swift ├── 25698-swift-parser-parsedeclinit.swift ├── 25699-swift-sourcefile-getcache.swift ├── 25700-llvm-optional-swift-diagnostic-operator.swift ├── 25701-swift-inflightdiagnostic.swift ├── 25702-swift-lexer-leximpl.swift ├── 25703-void.swift ├── 25704-vtable.swift ├── 25705-swift-typechecker-availablerange.swift ├── 25706-swift-genericsignature-get.swift ├── 25707-swift-inouttype-get.swift ├── 25708-swift-typechecker-resolvetypeincontext.swift ├── 25709-swift-lexer-leximpl.swift ├── 25710-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25711-swift-constraints-constraintsystem-optimizeconstraints.swift ├── 25712-swift-conformancelookuptable-updatelookuptable.swift ├── 25713-swift-dependentmembertype-get.swift ├── 25714-llvm-densemap-swift-identifier.swift ├── 25715-swift-parser-parseexprclosure.swift ├── 25716-swift-modulefile-getdecl.swift ├── 25717-swift-lexer-lexidentifier.swift ├── 25718-swift-genericsignature-genericsignature.swift ├── 25719-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 25720-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 25721-swift-astvisitor.swift ├── 25722-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 25723-swift-typechecker-checkinheritanceclause.swift ├── 25724-swift-valuedecl-getinterfacetype.swift ├── 25725-llvm-bitstreamcursor-read.swift ├── 25726-swift-parser-parsetoken.swift ├── 25727-swift-serialization-serializer-addconformanceref.swift ├── 25728-swift-modulefile-maybereadgenericparams.swift ├── 25729-void.swift ├── 25730-swift-nominaltypedecl-computeinterfacetype.swift ├── 25731-firsttarget.swift ├── 25732-std-function-func-mapsignaturetype.swift ├── 25733-swift-constraints-constraintsystem-solve.swift ├── 25734-swift-conformancelookuptable-updatelookuptable.swift ├── 25735-swift-modulefile-readmembers.swift ├── 25736-swift-lexer-lexidentifier.swift ├── 25737-swift-lexer-leximpl.swift ├── 25738-swift-conformancelookuptable-updatelookuptable.swift ├── 25739-swift-typechecker-coercepatterntotype.swift ├── 25740-swift-valuedecl-setinterfacetype.swift ├── 25741-vtable.swift ├── 25742-swift-moduledecl-lookupvalue.swift ├── 25743-swift-genericparamlist-create.swift ├── 25744-swift-sourcefile-lookupcache-lookupvalue.swift ├── 25745-swift-substitutedtype-get.swift ├── 25746-swift-normalprotocolconformance-setwitness.swift ├── 25747-swift-genericsignature-get.swift ├── 25748-swift-patternbindingdecl-hasstorage.swift ├── 25749-swift-astcontext-allocate.swift ├── 25750-swift-lvaluetype-get.swift ├── 25751-swift-expr-findexistinginitializercontext.swift ├── 25752-swift-astcontext-allocate.swift ├── 25753-swift-conformancelookuptable-updatelookuptable.swift ├── 25754-swift-astcontext-getconformance.swift ├── 25755-void.swift ├── 25756-void.swift ├── 25757-bool.swift ├── 25758-swift-sourcemanager-extracttext.swift ├── 25759-swift-typechecker-overapproximateosversionsatlocation.swift ├── 25760-swift-inouttype-get.swift ├── 25761-swift-typebase-getcanonicaltype.swift ├── 25762-no-stacktrace.swift ├── 25763-std-function-func.swift ├── 25764-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift ├── 25765-swift-iterabledeclcontext-getmembers.swift ├── 25766-swift-parser-parsedecl.swift ├── 25767-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 25768-swift-parser-parseexprcallsuffix.swift ├── 25769-llvm-foldingset-swift-structtype-nodeequals.swift ├── 25770-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 25771-swift-metatypetype-get.swift ├── 25772-swift-parser-parsenewdeclattribute.swift ├── 25773-swift-declcontext-isprotocolorprotocolextensioncontext.swift ├── 25774-swift-iterabledeclcontext-getmembers.swift ├── 25775-void.swift ├── 25776-swift-typechecker-validatedecl.swift ├── 25777-swift-modulefile-gettype.swift ├── 25778-swift-type-print.swift ├── 25779-swift-lexer-lexoperatoridentifier.swift ├── 25780-swift-scopeinfo-addtoscope.swift ├── 25781-swift-parser-parseexprcallsuffix.swift ├── 25782-swift-typebase-getcanonicaltype.swift ├── 25783-firsttarget.swift ├── 25784-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25785-swift-modulefile-gettype.swift ├── 25786-void.swift ├── 25787-swift-diagnosticengine-flushactivediagnostic.swift ├── 25788-swift-astcontext-implementation-implementation.swift ├── 25789-swift-lexer-leximpl.swift ├── 25790-swift-genericparamlist-addnestedarchetypes.swift ├── 25791-swift-modulefile-getdeclcontext.swift ├── 25792-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 25793-swift-typechecker-checkunsupportedprotocoltype.swift ├── 25794-swift-metatypetype-get.swift ├── 25795-swift-diagnosticengine-flushactivediagnostic.swift ├── 25796-swift-removeshadoweddecls.swift ├── 25797-void.swift ├── 25798-firsttarget.swift ├── 25799-swift-typechecker-checkconformance.swift ├── 25800-swift-structtype-get.swift ├── 25801-swift-sourcefile-lookupcache-lookupvalue.swift ├── 25802-extractparameteroutline.swift ├── 25803-swift-constructordecl-setbodyparams.swift ├── 25804-swift-parser-parseexprsequence.swift ├── 25805-swift-genericparamlist-create.swift ├── 25806-swift-derivedfileunit-lookupvalue.swift ├── 25807-swift-lexer-kindofidentifier.swift ├── 25808-swift-typechecker-validategenerictypesignature.swift ├── 25809-swift-sourcemanager-extracttext.swift ├── 25810-swift-astprinter-printtextimpl.swift ├── 25811-swift-lexer-lexidentifier.swift ├── 25812-swift-astcontext-allocate.swift ├── 25813-swift-diagnosticengine-flushactivediagnostic.swift ├── 25814-swift-typeloc-iserror.swift ├── 25815-swift-removeshadoweddecls.swift ├── 25816-swift-parser-parsedeclclass.swift ├── 25817-no-stacktrace.swift ├── 25818-swift-modulefile-getdecl.swift ├── 25819-std-function-func-swift-type-subst.swift ├── 25820-swift-decl-getrawcomment.swift ├── 25821-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25822-swift-typechecker-coercepatterntotype.swift ├── 25823-swift-typechecker-coercepatterntotype.swift ├── 25824-swift-modulefile-maybereadgenericparams.swift ├── 25825-swift-typechecker-checkinheritanceclause.swift ├── 25826-swift-modulefile-readmembers.swift ├── 25827-swift-typechecker-resolveinheritanceclause.swift ├── 25828-swift-archetypebuilder-finalize.swift ├── 25829-swift-typebase-getanyoptionalobjecttype.swift ├── 25830-swift-valuedecl-settype.swift ├── 25831-swift-parser-parsedecl.swift ├── 25832-resolveidenttypecomponent.swift ├── 25833-swift-typechecker-validatetype.swift ├── 25834-llvm-smallvectorimpl-swift-decl-insert.swift ├── 25835-swift-genericsignature-profile.swift ├── 25836-resolveidenttypecomponent.swift ├── 25837-swift-parser-parsedeclfunc.swift ├── 25838-swift-diagnosticengine-emitdiagnostic.swift ├── 25839-swift-iterabledeclcontext-getmembers.swift ├── 25840-swift-valuedecl-overwritetype.swift ├── 25841-swift-astcontext-getloadedmodule.swift ├── 25842-swift-diagnosticengine-diagnose.swift ├── 25843-swift-typechecker-validatedecl.swift ├── 25844-void.swift ├── 25845-swift-protocoltype-canonicalizeprotocols.swift ├── 25846-swift-typechecker-checkinheritanceclause.swift ├── 25847-emitsimpleassignment.swift ├── 25848-swift-generictypeparamtype-get.swift ├── 25849-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25850-swift-metatypetype-get.swift ├── 25851-swift-typechecker-resolveidentifiertype.swift ├── 25852-swift-funcdecl-create.swift ├── 25853-swift-typebase-getcanonicaltype.swift ├── 25854-swift-conformancelookuptable-updatelookuptable.swift ├── 25855-swift-lexer-kindofidentifier.swift ├── 25856-swift-typechecker-validategenericfuncsignature.swift ├── 25857-swift-abstractstoragedecl-makecomputed.swift ├── 25858-swift-nominaltypedecl-computeinterfacetype.swift ├── 25859-swift-tupletype-get.swift ├── 25860-swift-parser-parsetypeidentifier.swift ├── 25861-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25862-swift-astcontext-allocate.swift ├── 25863-swift-lexer-leximpl.swift ├── 25864-std-function-func-mapsignaturetype.swift ├── 25865-llvm-raw-fd-ostream-write-impl.swift ├── 25866-swift-silbuilder-createdeallocbox.swift ├── 25867-swift-valuedecl-getoverloadsignature.swift ├── 25868-swift-synthesizematerializeforset.swift ├── 25869-swift-typechecker-resolveidentifiertype.swift ├── 25870-swift-sourcemanager-extracttext.swift ├── 25871-swift-constraints-matchcallarguments.swift ├── 25872-swift-modulefile-maybereadforeignerrorconvention.swift ├── 25873-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25874-swift-metatypetype-get.swift ├── 25875-swift-valuedecl-overwritetype.swift ├── 25876-llvm-errs.swift ├── 25877-firsttarget.swift ├── 25878-swift-diagnosticengine-emitdiagnostic.swift ├── 25879-swift-sourcefile-getcache.swift ├── 25880-swift-conformancelookuptable-conformancelookuptable.swift ├── 25881-swift-sourcefile-lookupcache-lookupvalue.swift ├── 25882-swift-genericparamlist-deriveallarchetypes.swift ├── 25883-swift-constraints-simplifylocator.swift ├── 25884-swift-parser-parsedeclvargetset.swift ├── 25885-swift-valuedecl-settype.swift ├── 25886-swift-astcontext-getidentifier.swift ├── 25887-swift-funcdecl-funcdecl.swift ├── 25888-swift-genericfunctiontype-get.swift ├── 25889-swift-inflightdiagnostic.swift ├── 25890-swift-typechecker-checkdeclattributesearly.swift ├── 25891-swift-type-print.swift ├── 25892-llvm-mutablearrayref-swift-protocoldecl.swift ├── 25893-swift-declcontext-lookupqualified.swift ├── 25894-swift-inflightdiagnostic.swift ├── 25895-swift-diagnosticengine-emitdiagnostic.swift ├── 25896-swift-serialization-serializer-writedeclattribute.swift ├── 25897-swift-typebase-getsuperclass.swift ├── 25898-swift-parser-parsedeclinit.swift ├── 25899-swift-tupleexpr-tupleexpr.swift ├── 25900-swift-constraints-constraintsystem-matchtypes.swift ├── 25901-swift-typechecker-resolveidentifiertype.swift ├── 25902-swift-archetypebuilder-finalize.swift ├── 25903-swift-diagnosticengine-flushactivediagnostic.swift ├── 25904-swift-parser-parseexprcallsuffix.swift ├── 25905-swift-genericsignature-genericsignature.swift ├── 25906-swift-typechecker-checkdeclarationavailability.swift ├── 25907-swift-parser-skipsingle.swift ├── 25908-swift-constraints-solution-computesubstitutions.swift ├── 25909-swift-constraints-solution-simplifytype.swift ├── 25910-swift-valuedecl.swift ├── 25911-swift-valuedecl-setinterfacetype.swift ├── 25912-firsttarget.swift ├── 25913-swift-valuedecl-settype.swift ├── 25914-swift-typebase-isequal.swift ├── 25915-swift-typebase-getanyoptionalobjecttype.swift ├── 25916-swift-classtype-get.swift ├── 25917-void.swift ├── 25918-swift-parser-parseidentifier.swift ├── 25919-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 25920-swift-patternbindingdecl-setpattern.swift ├── 25921-swift-valuedecl-getinterfacetype.swift ├── 25922-swift-typechecker-validatedecl.swift ├── 25923-swift-typechecker-typecheckexpression.swift ├── 25924-std-function-func-swift-type-subst.swift ├── 25925-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 25926-swift-parser-isstartofdecl.swift ├── 25927-swift-modulefile-loadextensions.swift ├── 25928-swift-parser-skipsingle.swift ├── 25929-swift-typechecker-validatetype.swift ├── 25930-swift-parser-parsetoken.swift ├── 25931-std-function-func-mapsignaturetype.swift ├── 25932-swift-parser-parsedecl.swift ├── 25933-swift-typechecker-resolveidentifiertype.swift ├── 25934-swift-vardecl-getparentinitializer.swift ├── 25935-swift-metatypetype-get.swift ├── 25936-swift-conformancelookuptable-getimplicitprotocols.swift ├── 25937-swift-valuedecl.swift ├── 25938-swift-typechecker-checkdeclarationavailability.swift ├── 25939-swift-tupleexpr-tupleexpr.swift ├── 25940-swift-parser-parseexprsequence.swift ├── 25941-swift-modulefile-gettype.swift ├── 25942-swift-lexer-kindofidentifier.swift ├── 25943-swift-boundgenerictype-get.swift ├── 25944-swift-parser-parsestmtfor.swift ├── 25945-swift-conformancelookuptable-expandimpliedconformances.swift ├── 25946-cleanupillformedexpression.swift ├── 25947-llvm-tinyptrvector-swift-valuedecl-push-back.swift ├── 25948-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 25949-std-function-func-mapsignaturetype.swift ├── 25950-swift-markasobjc.swift ├── 25951-swift-modulefile-maybereadforeignerrorconvention.swift ├── 25952-swift-tuplepattern-createsimple.swift ├── 25953-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25954-swift-parser-parseidentifier.swift ├── 25955-swift-tupletype-get.swift ├── 25956-swift-inflightdiagnostic.swift ├── 25957-swift-parser-diagnose.swift ├── 25958-swift-inflightdiagnostic.swift ├── 25959-firsttarget.swift ├── 25960-std-function-func-setboundvarstypeerror.swift ├── 25961-swift-sourcemanager-extracttext.swift ├── 25963-swift-typechecker-validatedecl.swift ├── 25964-swift-typechecker-resolvetypeincontext.swift ├── 25965-firsttarget.swift ├── 25966-llvm-densemap-swift-normalprotocolconformance.swift ├── 25967-swift-typebase-getcanonicaltype.swift ├── 25968-std-function-func-mapsignaturetype.swift ├── 25969-swift-protocoldecl-existentialtypesupportedslow.swift ├── 25970-swift-inflightdiagnostic.swift ├── 25971-swift-inflightdiagnostic.swift ├── 25972-swift-parser-skipsingle.swift ├── 25973-swift-parser-skipsingle.swift ├── 25974-swift-parser-parseexprcallsuffix.swift ├── 25975-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 25976-swift-inflightdiagnostic.swift ├── 25977-swift-parser-parseexprcallsuffix.swift ├── 25978-swift-inflightdiagnostic.swift ├── 25979-swift-constraints-constraintsystem-optimizeconstraints.swift ├── 25980-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 25981-llvm-smallvectorimpl-swift-decl-insert.swift ├── 25982-swift-parser-skipsingle.swift ├── 25983-swift-inflightdiagnostic.swift ├── 25984-swift-lexer-getlocforendoftoken.swift ├── 25985-swift-constructordecl-setbodyparams.swift ├── 25986-swift-constraints-constraintsystem-optimizeconstraints.swift ├── 25987-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 25988-swift-typebase-getcanonicaltype.swift ├── 25989-std-function-func-swift-type-subst.swift ├── 25990-swift-sourcemanager-extracttext.swift ├── 25991-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 25992-swift-typebase-getsuperclass.swift ├── 25993-swift-inflightdiagnostic.swift ├── 25994-swift-typechecker-resolvetypeincontext.swift ├── 25995-swift-modulefile-getcommentfordecl.swift ├── 25996-llvm-bitstreamcursor-read.swift ├── 25997-swift-parser-parsedeclstruct.swift ├── 25998-swift-conformancelookuptable-updatelookuptable.swift ├── 25999-swift-nominaltype-get.swift ├── 26000-swift-typebase-getcanonicaltype.swift ├── 26001-swift-astcontext-astcontext.swift ├── 26002-swift-nominaltype-get.swift ├── 26003-swift-valuedecl-settype.swift ├── 26004-swift-diagnosticengine-emitdiagnostic.swift ├── 26005-swift-typechecker-resolvepattern.swift ├── 26006-swift-typechecker-checkdeclarationavailability.swift ├── 26007-swift-constraints-solution-computesubstitutions.swift ├── 26008-swift-modulefile-getdecl.swift ├── 26009-swift-lexer-kindofidentifier.swift ├── 26010-no-stacktrace.swift ├── 26011-swift-typechecker-definedefaultconstructor.swift ├── 26013-swift-parser-parseparameterclause.swift ├── 26014-swift-conformancelookuptable-getallprotocols.swift ├── 26015-llvm-optional-swift-diagnostic-operator.swift ├── 26016-swift-modulefile-getimportedmodules.swift ├── 26017-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26018-swift-parser-skipsingle.swift ├── 26019-swift-compilerinvocation-parseargs.swift ├── 26020-swift-parser-skipsingle.swift ├── 26021-swift-lexer-lexoperatoridentifier.swift ├── 26022-swift-conformancelookuptable-getsatisfiedprotocolrequirementsformember.swift ├── 26023-swift-createimplicitconstructor.swift ├── 26024-std-function-func-mapsignaturetype.swift ├── 26025-swift-lexer-lexidentifier.swift ├── 26026-swift-archetypebuilder-finalize.swift ├── 26027-swift-inflightdiagnostic.swift ├── 26028-swift-parser-skipsingle.swift ├── 26029-std-function-func-swift-type-subst.swift ├── 26030-llvm-bitstreamcursor-read.swift ├── 26031-swift-nominaltypedecl-prepareextensions.swift ├── 26032-swift-typechecker-availablerange.swift ├── 26033-swift-parser-parsetoken.swift ├── 26034-swift-parser-parseexprcallsuffix.swift ├── 26035-swift-sourcemanager-extracttext.swift ├── 26036-bool.swift ├── 26037-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26038-swift-parser-diagnose.swift ├── 26039-swift-valuedecl-settype.swift ├── 26040-swift-parser-parsetoken.swift ├── 26041-swift-astcontext-getidentifier.swift ├── 26042-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26043-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26044-llvm-raw-ostream-write.swift ├── 26045-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26046-swift-constraints-constraintgraph-change-undo.swift ├── 26047-swift-genericsignature-get.swift ├── 26048-swift-genericparamlist-create.swift ├── 26049-swift-modulefile-lookupvalue.swift ├── 26050-swift-parser-parsedeclenumcase.swift ├── 26051-swift-diagnosticengine-emitdiagnostic.swift ├── 26052-swift-iterabledeclcontext-getmembers.swift ├── 26053-llvm-bitstreamcursor-read.swift ├── 26054-swift-lexer-leximpl.swift ├── 26055-swift-parser-skipsingle.swift ├── 26056-swift-inflightdiagnostic.swift ├── 26057-swift-valuedecl-settype.swift ├── 26058-swift-lexer-getlocforendoftoken.swift ├── 26059-std-function-func-mapsignaturetype.swift ├── 26060-swift-parser-parsetypeidentifier.swift ├── 26061-swift-removeshadoweddecls.swift ├── 26062-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26063-swift-tuplepattern-createsimple.swift ├── 26064-bool.swift ├── 26065-swift-tuplepattern-create.swift ├── 26066-swift-diagnosticengine-flushactivediagnostic.swift ├── 26067-swift-sourcemanager-extracttext.swift ├── 26068-swift-archetypebuilder-addrequirement.swift ├── 26069-swift-archetypebuilder-potentialarchetype-getdependenttype.swift ├── 26070-swift-serialization-serializer-writedecl.swift ├── 26071-swift-valuedecl-settype.swift ├── 26072-swift-lexer-leximpl.swift ├── 26073-finalizegenericparamlist.swift ├── 26074-swift-lexer-lexidentifier.swift ├── 26075-swift-parser-skipsingle.swift ├── 26076-swift-parser-skipsingle.swift ├── 26077-swift-diagnosticengine-emitdiagnostic.swift ├── 26078-swift-constraints-constraintsystem-matchtypes.swift ├── 26079-swift-parser-parseexprpostfix.swift ├── 26080-swift-tuplepattern-create.swift ├── 26081-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26082-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26083-std-function-func-swift-type-subst.swift ├── 26084-swift-typebase-getsuperclass.swift ├── 26085-swift-archetypebuilder-resolvearchetype.swift ├── 26086-swift-typebase-getsuperclass.swift ├── 26087-swift-typebase-getanyoptionalobjecttype.swift ├── 26088-swift-arrayslicetype-get.swift ├── 26089-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 26090-swift-constraints-constraintsystem-opengeneric.swift ├── 26092-std-function-func-swift-type-subst.swift ├── 26093-swift-declname-printpretty.swift ├── 26094-swift-typebase-getsuperclass.swift ├── 26095-swift-generictypeparamtype-get.swift ├── 26096-llvm-errs.swift ├── 26097-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26098-swift-funcdecl-setdeserializedsignature.swift ├── 26099-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 26100-swift-protocoltype-canonicalizeprotocols.swift ├── 26101-swift-parser-parsenewdeclattribute.swift ├── 26102-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26103-swift-constraints-constraintsystem-solve.swift ├── 26104-swift-vardecl-getparentinitializer.swift ├── 26105-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26106-swift-typebase-getsuperclass.swift ├── 26107-llvm-foldingset-swift-structtype-nodeequals.swift ├── 26108-swift-genericparamlist-deriveallarchetypes.swift ├── 26109-swift-constraints-constraintsystem-solvesimplified.swift ├── 26110-swift-nominaltypedecl-preparelookuptable.swift ├── 26111-swift-modulefile-maybereadpattern.swift ├── 26112-swift-genericsignature-get.swift ├── 26113-swift-archetypebuilder-addgenericsignature.swift ├── 26114-swift-iterabledeclcontext-getmembers.swift ├── 26115-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 26116-swift-parser-parsedecl.swift ├── 26117-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26118-swift-lexer-leximpl.swift ├── 26119-swift-typeloc-iserror.swift ├── 26120-swift-removeshadoweddecls.swift ├── 26121-swift-type-walk.swift ├── 26122-swift-lexer-lexidentifier.swift ├── 26123-swift-metatypetype-get.swift ├── 26124-swift-genericparamlist-deriveallarchetypes.swift ├── 26125-swift-modulefile-lookupvalue.swift ├── 26126-std-function-func-swift-type-subst.swift ├── 26127-swift-modulefile-gettype.swift ├── 26128-swift-typebase-getcanonicaltype.swift ├── 26129-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26130-swift-tupletype-get.swift ├── 26131-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26132-swift-boundgenerictype-get.swift ├── 26133-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 26134-swift-constraints-constraintsystem-solverstate-solverstate.swift ├── 26136-swift-astcontext-getloadedmodule.swift ├── 26137-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 26138-swift-typebase-getcanonicaltype.swift ├── 26139-swift-abstractclosureexpr-setparams.swift ├── 26140-swift-modulefile-getdecl.swift ├── 26141-swift-lexer-getlocforendoftoken.swift ├── 26142-llvm-raw-ostream-setbuffered.swift ├── 26143-swift-declattribute-canattributeappearondeclkind.swift ├── 26144-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26145-swift-lexer-getlocforendoftoken.swift ├── 26146-swift-genericsignature-genericsignature.swift ├── 26147-llvm-foldingset-swift-classtype-nodeequals.swift ├── 26148-swift-typebase-getmembersubstitutions.swift ├── 26149-swift-boundgenerictype-get.swift ├── 26150-swift-genericsignature-genericsignature.swift ├── 26151-swift-genericfunctiontype-get.swift ├── 26152-swift-diagnosticengine-emitdiagnostic.swift ├── 26153-swift-astprinter-printtextimpl.swift ├── 26154-swift-typebase-getcanonicaltype.swift ├── 26155-swift-constraints-constraintgraph-change-undo.swift ├── 26156-swift-parser-consumeidentifier.swift ├── 26157-resolveidenttypecomponent.swift ├── 26158-swift-parser-parsetypeattribute.swift ├── 26159-llvm-foldingset-swift-structtype-nodeequals.swift ├── 26160-swift-astcontext-getidentifier.swift ├── 26161-swift-patternbindingdecl-setpattern.swift ├── 26162-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 26163-swift-metatypetype-get.swift ├── 26164-std-function-func-swift-type-subst.swift ├── 26165-swift-diagnosticengine-emitdiagnostic.swift ├── 26166-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26167-swift-modulefile-getdecl.swift ├── 26168-swift-modulefile-maybereadpattern.swift ├── 26169-swift-protocoltype-canonicalizeprotocols.swift ├── 26170-swift-parser-skipsingle.swift ├── 26171-swift-astcontext-allocate.swift ├── 26172-swift-modulefile-lookupvalue.swift ├── 26173-swift-typechecker-validatedecl.swift ├── 26174-swift-typebase-getcanonicaltype.swift ├── 26175-swift-genericparamlist-addnestedarchetypes.swift ├── 26176-swift-declcontext-isprotocolorprotocolextensioncontext.swift ├── 26177-swift-typechecker-typecheckexpression.swift ├── 26178-swift-modulefile-getdecl.swift ├── 26179-swift-metatypetype-get.swift ├── 26180-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 26181-swift-modulefile-getdecl.swift ├── 26183-swift-constraints-constraintgraphnode-addconstraint.swift ├── 26184-llvm-yaml-input-preflightkey.swift ├── 26185-swift-constraints-constraintsystem-matchtypes.swift ├── 26186-swift-modulefile-gettype.swift ├── 26187-void.swift ├── 26188-swift-typechecker-checkgenericarguments.swift ├── 26189-swift-typebase-getcanonicaltype.swift ├── 26190-swift-iterabledeclcontext-getmembers.swift ├── 26191-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 26192-swift-maybeaddaccessorstovariable.swift ├── 26193-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 26194-swift-constraints-constraintsystem-simplifytype.swift ├── 26195-swift-tuplepattern-create.swift ├── 26196-swift-metatypetype-get.swift ├── 26197-load-method-type.swift ├── 26198-swift-inflightdiagnostic.swift ├── 26199-swift-modulefile-lookupvalue.swift ├── 26200-llvm-bitstreamcursor-read.swift ├── 26201-swift-astcontext-allocate.swift ├── 26202-swift-lexer-leximpl.swift ├── 26203-swift-metatypetype-get.swift ├── 26204-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26205-swift-lexer-leximpl.swift ├── 26206-swift-constraints-constraintsystem-opengeneric.swift ├── 26207-swift-astcontext-allocate.swift ├── 26208-swift-modulefile-getdecl.swift ├── 26209-swift-astcontext-getidentifier.swift ├── 26210-swift-boundgenerictype-get.swift ├── 26211-swift-typechecker-coercepatterntotype.swift ├── 26212-swift-modulefile-getimportedmodules.swift ├── 26213-swift-typechecker-resolvetypeincontext.swift ├── 26214-swift-conformancelookuptable-getconformance.swift ├── 26215-swift-parser-consumeidentifier.swift ├── 26216-swift-parser-parsebraceitems.swift ├── 26217-swift-typebase-gettypevariables.swift ├── 26218-swift-metatypetype-get.swift ├── 26219-swift-astcontext-allocate.swift ├── 26220-swift-metatypetype-get.swift ├── 26221-swift-astcontext-loadextensions.swift ├── 26222-swift-genericfunctiontype-get.swift ├── 26223-swift-typechecker-validatedecl.swift ├── 26224-swift-astcontext-allocate.swift ├── 26225-swift-iterabledeclcontext-getmembers.swift ├── 26226-swift-constraints-constraintsystem-assignfixedtype.swift ├── 26227-swift-lexer-lexoperatoridentifier.swift ├── 26228-void.swift ├── 26229-swift-astcontext-allocate.swift ├── 26230-swift-modulefile-getdeclcontext.swift ├── 26231-swift-constraints-constraintgraph-change-undo.swift ├── 26232-swift-tuplepattern-create.swift ├── 26233-swift-iterabledeclcontext-getmembers.swift ├── 26234-swift-sourcemanager-extracttext.swift ├── 26235-swift-modulefile-getimportedmodules.swift ├── 26236-swift-astcontext-getloadedmodule.swift ├── 26237-swift-modulefile-maybereadforeignerrorconvention.swift ├── 26238-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift ├── 26239-swift-parser-parsedeclvar.swift ├── 26240-swift-astcontext-allocate.swift ├── 26241-swift-genericsignature-genericsignature.swift ├── 26242-swift-typechecker-validatedecl.swift ├── 26243-swift-parser-consumeidentifier.swift ├── 26244-swift-archetypebuilder-finalize.swift ├── 26246-llvm-raw-ostream-setbuffered.swift ├── 26247-swift-constraints-constraintsystem-matchtypes.swift ├── 26248-swift-generictypeparamtype-get.swift ├── 26249-swift-typebase-isspecialized.swift ├── 26250-swift-constraints-constraintsystem-recordopenedtypes.swift ├── 26251-swift-modulefile-gettype.swift ├── 26253-swift-typechecker-validatedecl.swift ├── 26254-swift-constraints-constraintsystem-solvesimplified.swift ├── 26255-std-function-func-swift-type-subst.swift ├── 26256-swift-typechecker-validatedecl.swift ├── 26257-swift-functiontype-get.swift ├── 26258-swift-constraints-constraintsystem-matchtypes.swift ├── 26259-swift-protocoltype-canonicalizeprotocols.swift ├── 26260-swift-abstractclosureexpr-setparams.swift ├── 26261-swift-parser-skipsingle.swift ├── 26262-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 26263-swift-protocoltype-canonicalizeprotocols.swift ├── 26264-swift-conformancelookuptable-updatelookuptable.swift ├── 26265-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 26266-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26267-swift-astprinter-printtextimpl.swift ├── 26268-swift-lexer-lexidentifier.swift ├── 26269-swift-modulefile-readmembers.swift ├── 26270-swift-genericfunctiontype-get.swift ├── 26271-swift-typechecker-validatedecl.swift ├── 26272-swift-modulefile-gettype.swift ├── 26273-swift-inflightdiagnostic.swift ├── 26274-swift-typebase-getanyoptionalobjecttype.swift ├── 26275-llvm-optional-swift-diagnostic-operator.swift ├── 26276-swift-modulefile-maybereadforeignerrorconvention.swift ├── 26277-swift-typechecker-resolvetypeincontext.swift ├── 26278-swift-conformancelookuptable-updatelookuptable.swift ├── 26279-swift-constraints-constraintsystem-simplifytype.swift ├── 26280-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26281-swift-inflightdiagnostic.swift ├── 26282-swift-genericsignature-genericsignature.swift ├── 26283-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 26284-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26285-swift-parser-consumeidentifier.swift ├── 26286-swift-modulefile-gettype.swift ├── 26287-swift-constraints-constraintsystem-solve.swift ├── 26288-std-function-func-mapsignaturetype.swift ├── 26289-swift-typechecker-typecheckexpression.swift ├── 26290-swift-inouttype-get.swift ├── 26291-swift-diagnosticengine-emitdiagnostic.swift ├── 26292-swift-modulefile-getimportedmodules.swift ├── 26293-swift-conformancelookuptable-getconformance.swift ├── 26294-void.swift ├── 26298-llvm-densemapbase.swift ├── 26303-llvm-llvm-unreachable-internal.swift ├── 26305-swift-diagnosticengine-emitdiagnostic.swift ├── 26306-llvm-stringmapimpl-lookupbucketfor.swift ├── 26307-swift-parser-isstartofdecl.swift ├── 26308-swift-genericsignature-get.swift ├── 26309-swift-typebase-getimplicitlyunwrappedoptionalobjecttype.swift ├── 26310-swift-parser-parsedecl.swift ├── 26311-swift-parser-parseanyidentifier.swift ├── 26312-swift-typechecker-resolvesuperclass.swift ├── 26313-llvm-densemapbase-llvm-densemap-swift-silbasicblock.swift ├── 26314-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26315-swift-astcontext-allocate.swift ├── 26316-swift-genericparamlist-create.swift ├── 26317-swift-memberlookuptable-addmember.swift ├── 26318-swift-substitutedtype-get.swift ├── 26319-swift-genericparamlist-addnestedarchetypes.swift ├── 26320-swift-modulefile-getimportedmodules.swift ├── 26321-swift-genericparamlist-create.swift ├── 26322-swift-conformancelookuptable-expandimpliedconformances.swift ├── 26323-swift-genericparamlist-deriveallarchetypes.swift ├── 26324-llvm-raw-ostream-write.swift ├── 26325-swift-patternbindingdecl-setpattern.swift ├── 26326-swift-parser-parseexprpostfix.swift ├── 26327-swift-modulefile-gettype.swift ├── 26328-swift-typechecker-validatedecl.swift ├── 26329-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 26330-firsttarget.swift ├── 26331-swift-parser-skipsingle.swift ├── 26332-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26333-swift-typechecker-validatedecl.swift ├── 26334-swift-arrayslicetype-get.swift ├── 26335-swift-parser-parsedeclenumcase.swift ├── 26336-swift-modulefile-maybereadgenericparams.swift ├── 26337-swift-modulefile-maybereadgenericparams.swift ├── 26338-swift-constraints-constraintsystem-simplifytype.swift ├── 26339-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 26340-swift-lexer-getlocforendoftoken.swift ├── 26341-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 26342-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26343-swift-constraints-constraintsystem-simplify.swift ├── 26344-swift-parser-parseexprclosure.swift ├── 26345-swift-constraints-solution-solution.swift ├── 26346-llvm-smallvectorimpl-swift-decl-insert.swift ├── 26347-swift-parser-parsedecl.swift ├── 26348-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 26349-swift-metatypetype-get.swift ├── 26350-swift-lexer-kindofidentifier.swift ├── 26351-swift-modulefile-maybereadpattern.swift ├── 26352-swift-modulefile-getimportedmodules.swift ├── 26353-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26354-vtable.swift ├── 26355-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 26356-swift-lexer-kindofidentifier.swift ├── 26357-swift-typechecker-validatetype.swift ├── 26358-swift-typechecker-checkinheritanceclause.swift ├── 26359-swift-parser-parsedecl.swift ├── 26360-swift-typechecker-validategenericfuncsignature.swift ├── 26361-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 26362-swift-archetypetype-getnew.swift ├── 26363-llvm-errs.swift ├── 26364-swift-sourcemanager-extracttext.swift ├── 26365-swift-constraints-constraintgraph-gatherconstraints.swift ├── 26366-swift-nominaltypedecl-preparelookuptable.swift ├── 26367-swift-lexer-kindofidentifier.swift ├── 26368-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift ├── 26369-swift-substitutedtype-get.swift ├── 26370-swift-typebase-getcanonicaltype.swift ├── 26371-swift-typechecker-validatetype.swift ├── 26372-void.swift ├── 26373-swift-parser-skipsingle.swift ├── 26374-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26375-vtable.swift ├── 26376-swift-metatypetype-get.swift ├── 26377-swift-astcontext-allocate.swift ├── 26378-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26379-swift-astcontext-getidentifier.swift ├── 26380-swift-boundgenerictype-get.swift ├── 26381-swift-genericsignature-genericsignature.swift ├── 26382-swift-modulefile-gettype.swift ├── 26383-swift-typebase-isspecialized.swift ├── 26384-swift-lexer-getlocforendoftoken.swift ├── 26385-swift-typevariabletype-implementation-assignfixedtype.swift ├── 26386-swift-typevisitor.swift ├── 26387-swift-parser-diagnose.swift ├── 26388-swift-typebase-getcanonicaltype.swift ├── 26389-swift-typechecker-validatedecl.swift ├── 26390-swift-mangle-mangler-mangledeclname.swift ├── 26391-swift-scopeinfo-addtoscope.swift ├── 26392-swift-abstractclosureexpr-setparams.swift ├── 26393-swift-modulefile-gettype.swift ├── 26394-swift-parser-parsedecl.swift ├── 26395-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift ├── 26396-swift-inflightdiagnostic.swift ├── 26397-swift-sourcemanager-extracttext.swift ├── 26398-swift-parser-parseexprclosure.swift ├── 26399-swift-genericparamlist-addnestedarchetypes.swift ├── 26400-swift-tupletype-get.swift ├── 26401-swift-typechecker-resolveidentifiertype.swift ├── 26402-swift-scopeinfo-addtoscope.swift ├── 26403-llvm-densemapbase-llvm-smalldensemap-std-pair-llvm-arrayref-std-pair-swift-identifier.swift ├── 26404-swift-parser-parsedecl.swift ├── 26405-swift-typechecker-validatedecl.swift ├── 26406-swift-constraints-constraintgraph-change-undo.swift ├── 26407-llvm-smallvectorbase-grow-pod.swift ├── 26408-swift-iterabledeclcontext-addmember.swift ├── 26409-swift-tuplepattern-createsimple.swift ├── 26410-std-function-func-swift-typechecker-typecheckbinding.swift ├── 26411-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 26412-swift-parser-parseexprclosure.swift ├── 26413-swift-sourcemanager-getbytedistance.swift ├── 26414-swift-genericsignature-genericsignature.swift ├── 26415-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 26416-swift-parser-parsedecl.swift ├── 26417-swift-modulefile-gettype.swift ├── 26418-swift-genericsignature-get.swift ├── 26419-swift-modulefile-gettype.swift ├── 26420-swift-astcontext-getidentifier.swift ├── 26421-swift-generictypeparamtype-get.swift ├── 26422-swift-typevariabletype-implementation-assignfixedtype.swift ├── 26423-llvm-bumpptrallocatorimpl-llvm-mallocallocator.swift ├── 26424-swift-lexer-getlocforendoftoken.swift ├── 26425-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26426-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26427-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26428-swift-parser-parsegenericwhereclause.swift ├── 26429-getfileaux.swift ├── 26430-swift-expr-walk.swift ├── 26431-swift-genericparamlist-deriveallarchetypes.swift ├── 26432-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 26433-swift-diagnosticengine-emitdiagnostic.swift ├── 26434-swift-typeloc-iserror.swift ├── 26435-swift-arrayexpr-create.swift ├── 26436-swift-lexer-kindofidentifier.swift ├── 26437-swift-typebase-getcanonicaltype.swift ├── 26438-swift-typebase-isequal.swift ├── 26439-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 26440-swift-constraints-constraintsystem-salvage.swift ├── 26441-swift-parser-parseexprcollection.swift ├── 26442-swift-typebase-gatherallsubstitutions.swift ├── 26443-swift-parser-parsedeclvar.swift ├── 26444-swift-genericparamlist-create.swift ├── 26445-swift-scopeinfo-addtoscope.swift ├── 26446-swift-generictypeparamtype-get.swift ├── 26447-swift-parser-diagnose.swift ├── 26448-swift-declcontext-isprotocolorprotocolextensioncontext.swift ├── 26449-swift-parser-parsetoken.swift ├── 26450-swift-constraints-constraintsystem-applysolution.swift ├── 26451-swift-parser-parsedecl.swift ├── 26452-swift-sourcemanager-extracttext.swift ├── 26453-swift-astcontext-getloadedmodule.swift ├── 26454-swift-typebase-isequal.swift ├── 26455-swift-parser-parsedecl.swift ├── 26456-swift-lvaluetype-get.swift ├── 26457-swift-constraints-constraintsystem-addconstraint.swift ├── 26458-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 26459-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26460-std-function-func-swift-constraints-solution-simplifytype.swift ├── 26461-void.swift ├── 26462-swift-modulefile-getdecl.swift ├── 26463-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26464-getfileaux.swift ├── 26465-swift-typebase-gettypevariables.swift ├── 26466-swift-typebase-getcanonicaltype.swift ├── 26467-swift-parser-parsedecl.swift ├── 26468-swift-lexer-leximpl.swift ├── 26469-swift-parser-parseexprpostfix.swift ├── 26470-swift-inflightdiagnostic.swift ├── 26471-swift-iterabledeclcontext-getmembers.swift ├── 26472-swift-typebase-isequal.swift ├── 26473-swift-constraints-constraint-constraint.swift ├── 26474-std-function-func-swift-typechecker-validategenericfuncsignature.swift ├── 26475-llvm-bitstreamcursor-read.swift ├── 26476-swift-astcontext-allocate.swift ├── 26477-swift-modulefile-getdecl.swift ├── 26478-swift-archetypetype-resolvenestedtype.swift ├── 26479-swift-parser-applyattributetotype.swift ├── 26480-swift-typebase-getsuperclass.swift ├── 26481-swift-genericsignature-get.swift ├── 26482-swift-genericparamlist-addnestedarchetypes.swift ├── 26483-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift ├── 26484-swift-lexer-leximpl.swift ├── 26485-swift-constraints-constraintgraphnode-getadjacency.swift ├── 26486-swift-modulefile-maybereadpattern.swift ├── 26487-swift-astcontext-allocate.swift ├── 26488-swift-expr-walk.swift ├── 26489-swift-parser-parseexpridentifier.swift ├── 26490-swift-conformancelookuptable-resolveconformances.swift ├── 26491-swift-abstractstoragedecl-makecomputed.swift ├── 26492-swift-astcontext-getidentifier.swift ├── 26493-swift-protocoltype-canonicalizeprotocols.swift ├── 26494-swift-diagnosticengine-flushactivediagnostic.swift ├── 26495-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 26496-swift-parser-skipsingle.swift ├── 26497-swift-diagnosticengine-emitdiagnostic.swift ├── 26498-swift-sourcefile-lookupcache-lookupvalue.swift ├── 26499-swift-constraints-constraintgraph-addconstraint.swift ├── 26500-swift-modulefile-getdeclcontext.swift ├── 26501-swift-lexer-leximpl.swift ├── 26502-swift-protocoltype-canonicalizeprotocols.swift ├── 26503-swift-diagnosticengine-emitdiagnostic.swift ├── 26504-swift-lexer-leximpl.swift ├── 26505-llvm-foldingset-swift-classtype-nodeequals.swift ├── 26506-swift-diagnosticengine-emitdiagnostic.swift ├── 26507-swift-sourcemanager-extracttext.swift ├── 26508-llvm-smallvectorbase-grow-pod.swift ├── 26509-swift-functiontype-get.swift ├── 26510-swift-inflightdiagnostic.swift ├── 26511-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26512-swift-iterabledeclcontext-getmembers.swift ├── 26513-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 26514-swift-parser-skipsingle.swift ├── 26515-swift-metatypetype-get.swift ├── 26516-swift-boundgenerictype-get.swift ├── 26517-swift-type-transform.swift ├── 26518-swift-diagnosticengine-flushactivediagnostic.swift ├── 26519-swift-lexer-lexstringliteral.swift ├── 26520-swift-typechecker-checkgenericarguments.swift ├── 26521-swift-modulefile-getdeclcontext.swift ├── 26522-no-stacktrace.swift ├── 26523-swift-constraints-constraintgraph-gatherconstraints.swift ├── 26524-swift-functiontype-get.swift ├── 26525-swift-modulefile-maybereadgenericparams.swift ├── 26526-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26527-swift-parser-isstartofdecl.swift ├── 26528-swift-modulefile-lookupvalue.swift ├── 26529-swift-typechecker-validatetype.swift ├── 26530-llvm-foldingsetimpl-findnodeorinsertpos.swift ├── 26531-swift-modulefile-maybereadgenericparams.swift ├── 26532-swift-substitutedtype-get.swift ├── 26533-checktypeaccessibility.swift ├── 26534-swift-modulefile-getdecl.swift ├── 26535-swift-typebase-getimplicitlyunwrappedoptionalobjecttype.swift ├── 26536-std-function-func-swift-type-subst.swift ├── 26537-swift-abstractstoragedecl-getobjcgetterselector.swift ├── 26538-swift-parser-parsegetsetimpl.swift ├── 26539-swift-constraints-constraintsystem-simplifytype.swift ├── 26540-no-stacktrace.swift ├── 26541-swift-lexer-lexstringliteral.swift ├── 26542-swift-typechecker-validatedecl.swift ├── 26543-swift-parser-parsedecl.swift ├── 26544-swift-sourcefile-lookupcache-lookupvalue.swift ├── 26545-swift-lexer-lexidentifier.swift ├── 26546-swift-parser-skipsingle.swift ├── 26547-swift-sourcefile-lookupcache-lookupvalue.swift ├── 26548-swift-lexer-lexoperatoridentifier.swift ├── 26549-swift-typechecker-resolvetypeincontext.swift ├── 26550-swift-functiontype-get.swift ├── 26551-swift-protocoltype-canonicalizeprotocols.swift ├── 26552-swift-parser-parsedecl.swift ├── 26553-swift-parser-parseexprpostfix.swift ├── 26554-swift-metatypetype-get.swift ├── 26555-swift-typechecker-checkgenericarguments.swift ├── 26556-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26557-swift-expr-walk.swift ├── 26558-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 26559-swift-metatypetype-get.swift ├── 26560-swift-diagnosticengine-flushactivediagnostic.swift ├── 26561-swift-sourcemanager-extracttext.swift ├── 26562-swift-metatypetype-get.swift ├── 26563-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 26564-swift-parser-parsedecl.swift ├── 26565-swift-constraints-constraintsystem-salvage.swift ├── 26566-swift-parser-parsedecl.swift ├── 26567-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 26568-swift-typechecker-validatedecl.swift ├── 26569-swift-constraints-constraintsystem-optimizeconstraints.swift ├── 26570-swift-valuedecl-getinterfacetype.swift ├── 26571-swift-constraints-constraintsystem-recordopenedtypes.swift ├── 26572-swift-typechecker-checkinheritanceclause.swift ├── 26573-swift-parser-parseanyidentifier.swift ├── 26574-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26575-llvm-bitstreamcursor-read.swift ├── 26576-llvm-foldingset-swift-structtype-nodeequals.swift ├── 26577-swift-abstractclosureexpr-setparams.swift ├── 26578-swift-expr-walk.swift ├── 26579-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26580-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 26581-swift-typechecker-checkdeclarationavailability.swift ├── 26582-swift-modulefile-gettype.swift ├── 26583-swift-typechecker-validatedecl.swift ├── 26584-swift-constraints-constraintgraph-change-undo.swift ├── 26585-swift-modulefile-gettype.swift ├── 26586-swift-typechecker-validatedecl.swift ├── 26587-swift-typechecker-computeaccessibility.swift ├── 26588-swift-genericparamlist-create.swift ├── 26589-swift-astcontext-allocate.swift ├── 26590-swift-genericparamlist-deriveallarchetypes.swift ├── 26591-swift-modulefile-getdeclcontext.swift ├── 26592-swift-modulefile-gettype.swift ├── 26593-void.swift ├── 26594-swift-parser-parsetoken.swift ├── 26595-swift-lexer-lexoperatoridentifier.swift ├── 26596-swift-removeshadoweddecls.swift ├── 26597-swift-typebase-isequal.swift ├── 26598-swift-modulefile-getdecl.swift ├── 26599-swift-abstractclosureexpr-setparams.swift ├── 26600-swift-inflightdiagnostic.swift ├── 26601-swift-genericsignature-genericsignature.swift ├── 26602-swift-astcontext-allocate.swift ├── 26603-swift-lexer-kindofidentifier.swift ├── 26604-swift-typechecker-validatedecl.swift ├── 26605-swift-parser-diagnose.swift ├── 26606-swift-genericsignature-get.swift ├── 26607-swift-parser-parsedecl.swift ├── 26608-std-function-func.swift ├── 26609-swift-parser-parsedecl.swift ├── 26610-swift-parser-parsedecl.swift ├── 26611-swift-genericsignature-get.swift ├── 26612-swift-inflightdiagnostic.swift ├── 26613-swift-archetypebuilder-potentialarchetype-addconformance.swift ├── 26614-swift-genericparamlist-deriveallarchetypes.swift ├── 26615-swift-abstractstoragedecl-makecomputed.swift ├── 26616-swift-maybeaddaccessorstovariable.swift ├── 26617-swift-inouttype-get.swift ├── 26618-swift-sourcemanager-extracttext.swift ├── 26619-swift-functiontype-get.swift ├── 26620-swift-tupletype-get.swift ├── 26621-swift-astcontext-allocate.swift ├── 26622-swift-sourcemanager-extracttext.swift ├── 26623-std-function-func-swift-constraints-solution-computesubstitutions.swift ├── 26624-swift-typebase-getcanonicaltype.swift ├── 26625-swift-typechecker-resolveinheritanceclause.swift ├── 26626-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 26627-swift-lexer-lexoperatoridentifier.swift ├── 26628-swift-type-subst.swift ├── 26629-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 26630-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 26631-swift-sourcemanager-getbytedistance.swift ├── 26632-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 26633-swift-constraints-constraintsystem-applysolutionshallow.swift ├── 26634-swift-funcdecl-setdeserializedsignature.swift ├── 26635-swift-modulefile-getdecl.swift ├── 26636-swift-tuplepattern-create.swift ├── 26637-swift-parser-skipsingle.swift ├── 26638-bool.swift ├── 26639-void.swift ├── 26640-swift-functiontype-get.swift ├── 26641-swift-parser-skipsingle.swift ├── 26642-swift-genericsignature-get.swift ├── 26643-resolveidenttypecomponent.swift ├── 26644-swift-typebase-getcanonicaltype.swift ├── 26645-swift-functiontype-get.swift ├── 26646-swift-constraints-constraintgraphnode-addconstraint.swift ├── 26647-swift-parser-skipsingle.swift ├── 26648-swift-lexer-lexidentifier.swift ├── 26649-swift-lexer-leximpl.swift ├── 26650-swift-protocoltype-canonicalizeprotocols.swift ├── 26651-swift-genericsignature-get.swift ├── 26652-std-function-func-mapsignaturetype.swift ├── 26653-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26654-swift-markasobjc.swift ├── 26655-vtable.swift ├── 26656-swift-lexer-lexstringliteral.swift ├── 26657-swift-tupletype-get.swift ├── 26658-swift-parser-skipsingle.swift ├── 26659-swift-genericsignature-getcanonicalmanglingsignature.swift ├── 26660-swift-constraints-constraintsystem-solve.swift ├── 26661-swift-typechecker-coercepatterntotype.swift ├── 26662-swift-diagnosticengine-diagnose.swift ├── 26663-swift-parser-parseexprcallsuffix.swift ├── 26664-swift-parser-skipsingle.swift ├── 26665-swift-conformancelookuptable-lookupconformance.swift ├── 26666-swift-lexer-lexoperatoridentifier.swift ├── 26667-swift-iterabledeclcontext-getmembers.swift ├── 26668-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 26669-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26670-swift-modulefile-gettype.swift ├── 26671-swift-typechecker-checkinheritanceclause.swift ├── 26672-swift-diagnosticengine-flushactivediagnostic.swift ├── 26673-llvm-triple-getosname.swift ├── 26674-swift-sourcemanager-getbytedistance.swift ├── 26675-llvm-optional-swift-diagnostic-operator.swift ├── 26676-swift-parser-parsetoken.swift ├── 26677-swift-parser-diagnoseredefinition.swift ├── 26678-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26679-vtable.swift ├── 26680-swift-modulefile-getdeclcontext.swift ├── 26681-swift-sourcemanager-getbytedistance.swift ├── 26682-swift-constraints-constraint-constraint.swift ├── 26683-swift-generictypetoarchetyperesolver-resolvegenerictypeparamtype.swift ├── 26684-swift-arrayexpr-create.swift ├── 26685-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26686-swift-substitutedtype-get.swift ├── 26687-bool.swift ├── 26688-swift-parser-parseexprcallsuffix.swift ├── 26689-swift-modulefile-gettype.swift ├── 26690-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 26691-swift-serialization-serializer-writedecl.swift ├── 26692-swift-astcontext-getloadedmodule.swift ├── 26693-swift-parser-skipsingle.swift ├── 26694-void.swift ├── 26695-swift-genericsignature-profile.swift ├── 26696-swift-genericparamlist-create.swift ├── 26697-swift-genericparamlist-deriveallarchetypes.swift ├── 26698-swift-genericsignature-genericsignature.swift ├── 26699-swift-expr-walk.swift ├── 26700-swift-metatypetype-get.swift ├── 26701-swift-genericparamlist-addnestedarchetypes.swift ├── 26702-swift-inflightdiagnostic.swift ├── 26703-swift-modulefile-getdeclcontext.swift ├── 26704-swift-substitutedtype-get.swift ├── 26705-swift-constraints-constraintsystem-finalize.swift ├── 26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 26707-swift-moduledecl-lookupconformance.swift ├── 26708-swift-parser-parseversiontuple.swift ├── 26709-swift-parser-parseexprcallsuffix.swift ├── 26710-swift-constraints-constraintsystem-computeassigndesttype.swift ├── 26711-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 26712-swift-genericparamlist-addnestedarchetypes.swift ├── 26713-swift-removeshadoweddecls.swift ├── 26714-swift-parser-parsedeclextension.swift ├── 26715-swift-declname-printpretty.swift ├── 26716-swift-patternbindingdecl-create.swift ├── 26717-swift-typevisitor.swift ├── 26718-swift-parser-parsedeclvar.swift ├── 26719-swift-structtype-get.swift ├── 26720-void.swift ├── 26721-swift-parser-skipsingle.swift ├── 26722-swift-parser-parsedaccessors-record.swift ├── 26723-swift-modulefile-getdecl.swift ├── 26724-clang-declvisitor-base-clang-declvisitor-make-const-ptr.swift ├── 26725-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 26726-swift-inflightdiagnostic.swift ├── 26727-swift-modulefile-getdecl.swift ├── 26728-swift-constraints-constraintlocator-profile.swift ├── 26729-swift-parser-skipsingle.swift ├── 26730-no-stacktrace.swift ├── 26731-swift-protocoltype-canonicalizeprotocols.swift ├── 26732-std-function-func-swift-type-subst.swift ├── 26733-swift-diagnosticengine-emitdiagnostic.swift ├── 26734-swift-diagnosticengine-flushactivediagnostic.swift ├── 26735-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26736-swift-tupletype-get.swift ├── 26737-swift-structtype-get.swift ├── 26738-swift-inflightdiagnostic-fixitreplacechars.swift ├── 26739-llvm-bitstreamcursor-read.swift ├── 26740-swift-inflightdiagnostic.swift ├── 26741-swift-abstractstoragedecl-makecomputed.swift ├── 26742-swift-nominaltypedecl-prepareextensions.swift ├── 26743-swift-typechecker-checkinheritanceclause.swift ├── 26744-bool.swift ├── 26745-swift-typechecker-addimplicitconstructors.swift ├── 26746-swift-parser-skipsingle.swift ├── 26747-llvm-errs.swift ├── 26748-swift-constraints-constraintsystem-recordfix.swift ├── 26749-swift-constraints-constraintsystem-solve.swift ├── 26750-swift-modulefile-lookupvalue.swift ├── 26751-swift-lexer-kindofidentifier.swift ├── 26752-swift-typeloc-iserror.swift ├── 26753-swift-parser-parsegenericwhereclause.swift ├── 26754-swift-abstractstoragedecl-setinvalidbracesrange.swift ├── 26755-swift-constraints-constraintsystem-solverstate-solverstate.swift ├── 26756-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 26757-swift-typebase-getcanonicaltype.swift ├── 26758-swift-genericparamlist-deriveallarchetypes.swift ├── 26759-swift-parser-skipsingle.swift ├── 26760-swift-diagnosticengine-emitdiagnostic.swift ├── 26761-swift-constraints-constraintsystem-solvesimplified.swift ├── 26762-swift-constraints-constraintgraph-addconstraint.swift ├── 26763-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26764-swift-parser-parsedeclenumcase.swift ├── 26765-swift-conformancelookuptable-getimplicitprotocols.swift ├── 26766-swift-typebase-getcanonicaltype.swift ├── 26767-swift-modulefile-maybereadgenericparams.swift ├── 26768-std-function-func-mapsignaturetype.swift ├── 26769-swift-tuplepattern-createsimple.swift ├── 26770-swift-protocoltype-get.swift ├── 26771-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26772-swift-sourcemanager-extracttext.swift ├── 26773-swift-diagnosticengine-diagnose.swift ├── 26774-swift-protocoltype-canonicalizeprotocols.swift ├── 26775-swift-lexer-kindofidentifier.swift ├── 26776-swift-typebase-getanyoptionalobjecttype.swift ├── 26777-swift-typechecker-resolveidentifiertype.swift ├── 26778-firsttarget.swift ├── 26779-swift-parser-diagnose.swift ├── 26780-swift-parser-parsestmt.swift ├── 26781-swift-type-subst.swift ├── 26782-swift-genericfunctiontype-partialsubstgenericargs.swift ├── 26783-swift-lexer-kindofidentifier.swift ├── 26784-swift-constraints-constraintsystem-solve.swift ├── 26785-swift-typechecker-addimplicitconstructors.swift ├── 26786-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 26787-swift-declname-printpretty.swift ├── 26788-swift-typebase-getsuperclass.swift ├── 26789-swift-lexer-lexidentifier.swift ├── 26790-swift-type-getstring.swift ├── 26791-swift-typechecker-validatedecl.swift ├── 26792-swift-classtype-get.swift ├── 26793-swift-abstractclosureexpr-setparams.swift ├── 26794-firsttarget.swift ├── 26795-swift-typechecker-validatetype.swift ├── 26796-swift-constraints-constraintsystem-simplifytype.swift ├── 26797-swift-generictypeparamtype-get.swift ├── 26798-void.swift ├── 26799-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26800-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 26801-swift-lexer-leximpl.swift ├── 26802-swift-lexer-kindofidentifier.swift ├── 26803-swift-parser-skipsingle.swift ├── 26804-swift-conformancelookuptable-lookupconformance.swift ├── 26805-void.swift ├── 26806-swift-genericparamlist-create.swift ├── 26807-swift-metatypetype-get.swift ├── 26813-generic-enum-tuple-optional-payload.swift ├── 26816-checkenumrawvalues.swift ├── 26817-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26818-swift-typechecker-coercepatterntotype.swift ├── 26819-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26820-swift-constraints-constraintsystem-opengeneric.swift ├── 26821-swift-declcontext-getlocalconformances.swift ├── 26822-swift-modulefile-getdecl.swift ├── 26823-swift-typebase-getmembersubstitutions.swift ├── 26824-swift-modulefile-getimportedmodules.swift ├── 26825-std-function-func-mapsignaturetype.swift ├── 26826-swift-constraints-constraintsystem-solvesimplified.swift ├── 26827-swift-typebase-getcanonicaltype.swift ├── 26828-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 26829-swift-declcontext-getlocalconformances.swift ├── 26830-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift ├── 26832-swift-typechecker-conformstoprotocol.swift ├── 26833-llvm-mapvector-swift-declcontext.swift ├── 26834-swift-constraints-constraintsystem-generateconstraints.swift ├── 26835-llvm-foldingset-swift-classtype-nodeequals.swift ├── 26836-swift-conformancelookuptable-lookupconformances.swift ├── 26837-swift-abstractfunctiondecl-getobjcselector.swift ├── 26838-swift-patternbindingdecl-setpattern.swift ├── 26839-swift-declcontext-lookupqualified.swift ├── 26840-swift-typechecker-validatedecl.swift ├── 26841-std-function-func-swift-type-subst.swift ├── 26842-swift-streamprinter-printtext.swift ├── 26843-std-function-func-mapsignaturetype.swift ├── 26844-swift-typechecker-isdeclavailable.swift ├── 26845-swift-substitutedtype-get.swift ├── 26846-formatdiagnostictext.swift ├── 26847-swift-valuedecl-getoverloadsignature.swift ├── 26848-swift-metatypetype-get.swift ├── 26849-swift-constraints-constraintsystem-generateconstraints.swift ├── 26850-swift-existentialmetatypetype-get.swift ├── 26851-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26852-swift-modulefile-lookupvalue.swift ├── 26853-std-function-func-swift-type-subst.swift ├── 26854-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 26855-swift-nominaltypedecl-prepareextensions.swift ├── 26856-swift-constraints-constraintsystem-solverec.swift ├── 26857-swift-typechecker-validatedecl.swift ├── 26858-swift-streamprinter-printtext.swift ├── 26859-swift-classdecl-classdecl.swift ├── 26860-swift-typebase-gatherallsubstitutions.swift ├── 26861-swift-typechecker-resolveidentifiertype.swift ├── 26862-swift-typechecker-resolvepattern.swift ├── 26863-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 26864-std-function-func-swift-type-subst.swift ├── 26865-swift-conformancelookuptable-getimplicitprotocols.swift ├── 26866-swift-nominaltypedecl-getmembers.swift ├── 26867-std-function-func-swift-type-subst.swift ├── 26868-std-function-func-swift-type-subst.swift ├── 26869-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26870-swift-mangle-mangler-mangleidentifier.swift ├── 26871-swift-typechecker-computeaccessibility.swift ├── 26872-std-function-func.swift ├── 26873-void.swift ├── 26874-swift-nominaltypedecl-getmembers.swift ├── 26875-swift-typechecker-checkunsupportedprotocoltype.swift ├── 26876-swift-inflightdiagnostic.swift ├── 26877-swift-constraints-constraint-create.swift ├── 26878-swift-conformancelookuptable-updatelookuptable.swift ├── 26879-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 26880-swift-astvisitor.random.swift ├── 26881-std-function-func-swift-type-subst.swift ├── 26882-swift-typechecker-definedefaultconstructor.swift ├── 26883-swift-modulefile-readmembers.swift ├── 26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26885-swift-constraints-constraintgraph-removeconstraint.swift ├── 26886-swift-stmt-walk.swift ├── 26887-swift-generictypeparamtype-get.swift ├── 26888-swift-nominaltypedecl-preparelookuptable.swift ├── 26889-swift-tupletype-get.swift ├── 26890-swift-typechecker-isdeclavailable.swift ├── 26891-vtable.swift ├── 26892-swift-diagnosticengine-emitdiagnostic.swift ├── 26893-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 26894-swift-lexer-kindofidentifier.swift ├── 26895-swift-lexer-lexidentifier.swift ├── 26896-swift-diagnosticengine-emitdiagnostic.swift ├── 26897-swift-constraints-constraintsystem-simplifytype.swift ├── 26898-swift-abstractclosureexpr-setparams.swift ├── 26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26900-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26901-swift-typechecker-coercepatterntotype.swift ├── 26902-swift-typechecker-resolvetypeincontext.swift ├── 26903-swift-constraints-constraintgraph-addconstraint.swift ├── 26904-swift-typechecker-definedefaultconstructor.swift ├── 26905-swift-type-transform.swift ├── 26906-swift-declcontext-isclassorclassextensioncontext.swift ├── 26907-swift-lexer-leximpl.swift ├── 26908-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 26909-swift-constraints-constraintsystem-solverec.swift ├── 26910-swift-type-transform.swift ├── 26911-swift-modulefile-getimportedmodules.swift ├── 26912-swift-patternbindingdecl-setpattern.swift ├── 26913-swift-markasobjc.swift ├── 26914-void.swift ├── 26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 26916-swift-typechecker-definedefaultconstructor.swift ├── 26917-swift-nominaltype-get.swift ├── 26918-swift-constraints-constraintlocator-profile.swift ├── 26919-swift-type-walk.swift ├── 26920-swift-typebase-getanyoptionalobjecttype.swift ├── 26921-swift-typechecker-overapproximateosversionsatlocation.swift ├── 26922-swift-constraints-constraintsystem-opengeneric.swift ├── 26923-swift-typechecker-typecheckexpression.swift ├── 26924-mapsignaturefunctiontype.swift ├── 26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 26926-swift-typechecker-checkinheritanceclause.swift ├── 26927-swift-modulefile-maybereadgenericparams.swift ├── 26928-swift-typebase-isequal.swift ├── 26929-swift-modulefile-maybereadpattern.swift ├── 26930-swift-constraints-constraintgraph-change-undo.swift ├── 26931-swift-modulefile-lookupvalue.swift ├── 26932-swift-typebase-isequal.swift ├── 26933-swift-typechecker-coercepatterntotype.swift ├── 26934-swift-lexer-leximpl.swift ├── 26935-swift-patternbindingdecl-setpattern.swift ├── 26936-std-function-func-mapsignaturetype.swift ├── 26937-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 26938-swift-diagnosticengine-flushactivediagnostic.swift ├── 26939-swift-patternbindingdecl-setpattern.swift ├── 26940-swift-conformancelookuptable-getconformance.swift ├── 26941-swift-typechecker-checkinheritanceclause.swift ├── 26942-swift-nominaltypedecl-computeinterfacetype.swift ├── 26943-swift-typebase-getsuperclass.swift ├── 26944-swift-astprinter-printtextimpl.swift ├── 26945-swift-typebase-getmembersubstitutions.swift ├── 26946-swift-conformancelookuptable-updatelookuptable.swift ├── 26947-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 26948-swift-nominaltypedecl-getmembers.swift ├── 26949-swift-typeloc-iserror.swift ├── 26950-swift-constraints-constraintsystem-solve.swift ├── 26951-swift-modulefile-resolvecrossreference.swift ├── 26952-swift-lexer-lexidentifier.swift ├── 26953-std-function-func-mapsignaturetype.swift ├── 26954-swift-functiontype-get.swift ├── 26955-swift-boundgenerictype-get.swift ├── 26956-swift-constructordecl-constructordecl.swift ├── 26957-swift-functiontype-get.swift ├── 26958-swift-typebase-isequal.swift ├── 26959-std-function-func-swift-type-subst.swift ├── 26960-void.swift ├── 26961-llvm-foldingset-swift-classtype-nodeequals.swift ├── 26962-swift-typechecker-validategenericfuncsignature.swift ├── 26963-checkenumrawvalues.swift ├── 26964-swift-type-transform.swift ├── 26965-swift-functiontype-get.swift ├── 26966-swift-parentype-get.swift ├── 26967-swift-typechecker-validatedecl.swift ├── 26968-swift-typechecker-isdeclavailable.swift ├── 26969-swift-modulefile-lookupvalue.swift ├── 26970-swift-abstractstoragedecl-makeaddressedwithobservers.swift ├── 26971-swift-constraints-constraintsystem-solvesimplified.swift ├── 26972-swift-type-transform.swift ├── 26973-swift-boundgenerictype-get.swift ├── 26974-swift-typechecker-checkinheritanceclause.swift ├── 26975-swift-constraints-solution-solution.swift ├── 26976-swift-constraints-constraintsystem-opentype.swift ├── 26977-checkenumrawvalues.swift ├── 26978-swift-typebase-getcanonicaltype.swift ├── 26979-std-function-func-swift-type-subst.swift ├── 26980-swift-conformancelookuptable-lookupconformance.swift ├── 26981-swift-typechecker-validatedecl.swift ├── 26982-swift-nominaltypedecl-getmembers.swift ├── 26983-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift ├── 26984-swift-dependentmembertype-get.swift ├── 26985-swift-genericparamlist-addnestedarchetypes.swift ├── 26986-swift-modulefile-maybereadforeignerrorconvention.swift ├── 26987-swift-constraints-constraintsystem-addconstraint.swift ├── 26988-swift-modulefile-getimportedmodules.swift ├── 26989-swift-typechecker-definedefaultconstructor.swift ├── 26990-swift-importdecl-findbestimportkind.swift ├── 26991-swift-abstractclosureexpr-setparams.swift ├── 26992-swift-archetypetype-getnew.swift ├── 26993-swift-valuedecl-settype.swift ├── 26994-swift-nominaltypedecl-prepareextensions.swift ├── 26995-swift-typebase-isequal.swift ├── 26996-swift-classtype-get.swift ├── 26997-swift-stmt-walk.swift ├── 26998-std-function-func-setboundvarstypeerror.swift ├── 26999-swift-genericsignature-profile.swift ├── 27000-swift-typebase-gettypevariables.swift ├── 27001-swift-constraints-solution-solution.swift ├── 27002-swift-pattern-clone.swift ├── 27003-swift-typebase-getcanonicaltype.swift ├── 27004-swift-constraints-constraintsystem-matchtypes.swift ├── 27005-vtable.swift ├── 27006-formatdiagnostictext.swift ├── 27007-swift-type-transform.swift ├── 27008-llvm-optional-swift-diagnostic-operator.swift ├── 27009-swift-abstractclosureexpr-setparams.swift ├── 27010-swift-patternbindingdecl-setpattern.swift ├── 27011-swift-typechecker-validatetype.swift ├── 27012-swift-constraints-constraintsystem-solvesimplified.swift ├── 27013-mapsignaturefunctiontype.swift ├── 27014-swift-modulefile-loadextensions.swift ├── 27015-swift-typechecker-validatedecl.swift ├── 27016-swift-constraints-constraintsystem-solverec.swift ├── 27017-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift ├── 27018-swift-conformancelookuptable-getallprotocols.swift ├── 27019-swift-genericfunctiontype-get.swift ├── 27020-llvm-foldingset-swift-tupletype-getnodeprofile.swift ├── 27021-swift-constraints-constraintgraph-removeconstraint.swift ├── 27022-swift-classtype-get.swift ├── 27023-swift-typechecker-validatedecl.swift ├── 27024-swift-constraints-solution-simplifytype.swift ├── 27025-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27026-void.swift ├── 27027-swift-namelookup-lookupinmodule.swift ├── 27028-swift-nominaltypedecl-preparelookuptable.swift ├── 27029-swift-typebase-isemptyexistentialcomposition.swift ├── 27030-std-function-func-swift-type-subst.swift ├── 27031-swift-genericparamlist-addnestedarchetypes.swift ├── 27032-swift-nominaltypedecl-computeinterfacetype.swift ├── 27033-swift-mangle-mangler-mangleidentifier.swift ├── 27034-swift-typechecker-validatedecl.swift ├── 27035-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 27036-swift-astvisitor.swift ├── 27037-swift-nominaltype-get.swift ├── 27038-swift-constraints-constraintsystem-matchtypes.swift ├── 27039-swift-typechecker-validatedecl.swift ├── 27040-swift-clangimporter-loadextensions.swift ├── 27041-swift-type-walk.swift ├── 27042-swift-conformancelookuptable-expandimpliedconformances.swift ├── 27043-swift-typechecker-typecheckexpressionshallow.swift ├── 27044-swift-functiontype-get.swift ├── 27045-swift-lexer-diagnose.swift ├── 27046-swift-declcontext-getlocalconformances.swift ├── 27047-swift-inflightdiagnostic.swift ├── 27048-swift-modulefile-getimportedmodules.swift ├── 27049-swift-markasobjc.swift ├── 27050-swift-typechecker-coercepatterntotype.swift ├── 27051-swift-constraints-constraint-create.swift ├── 27052-swift-moduledecl-lookupconformance.swift ├── 27053-swift-typechecker-checkdeclarationavailability.swift ├── 27054-void.swift ├── 27055-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27056-swift-classtype-get.swift ├── 27057-addminimumprotocols.swift ├── 27058-llvm-optional-swift-diagnostic-operator.swift ├── 27059-swift-optionaltype-get.swift ├── 27060-swift-inflightdiagnostic.swift ├── 27061-swift-archetypebuilder-getallarchetypes.swift ├── 27062-std-function-func-swift-type-subst.swift ├── 27063-swift-conformancelookuptable-lookupconformances.swift ├── 27064-swift-conformancelookuptable-updatelookuptable.swift ├── 27065-swift-typechecker-typecheckclosurebody.swift ├── 27066-swift-constraints-constraintsystem-applysolution.swift ├── 27067-swift-valuedecl-settype.swift ├── 27068-swift-conformancelookuptable-conformancelookuptable.swift ├── 27069-swift-tupletype-get.swift ├── 27070-no-stacktrace.swift ├── 27071-swift-nominaltypedecl-computeinterfacetype.swift ├── 27072-swift-createimplicitconstructor.swift ├── 27073-swift-constraints-constraint-create.swift ├── 27074-swift-nominaltypedecl-preparelookuptable.swift ├── 27075-swift-type-transform.swift ├── 27076-swift-declcontext-getlocalconformances.swift ├── 27077-swift-modulefile-gettype.swift ├── 27078-swift-abstractclosureexpr-setparams.swift ├── 27079-swift-clangmoduleunit-lookupvalue.swift ├── 27080-swift-typechecker-typecheckpattern.swift ├── 27081-swift-protocoltype-canonicalizeprotocols.swift ├── 27082-swift-constraints-constraintgraph-addconstraint.swift ├── 27083-swift-typechecker-coercepatterntotype.swift ├── 27084-swift-abstractclosureexpr-setparams.swift ├── 27085-swift-protocoldecl-existentialconformstoselfslow.swift ├── 27086-llvm-bitstreamcursor-read.swift ├── 27087-swift-declcontext-getlocalconformances.swift ├── 27088-swift-modulefile-gettype.swift ├── 27089-swift-typebase-getcanonicaltype.swift ├── 27090-swift-conformancelookuptable-expandimpliedconformances.swift ├── 27091-swift-typechecker-validatedecl.swift ├── 27092-swift-typeloc-iserror.swift ├── 27093-swift-constraints-constraintsystem-solve.swift ├── 27094-resolveidenttypecomponent.swift ├── 27095-swift-nominaltypedecl-getmembers.swift ├── 27096-void.swift ├── 27097-swift-constraints-constraintgraph-change-undo.swift ├── 27098-swift-type-transform.swift ├── 27099-swift-decl-walk.swift ├── 27100-swift-genericsignature-getcanonical.swift ├── 27101-swift-constraints-constraintgraph-gatherconstraints.swift ├── 27102-void.swift ├── 27103-swift-typebase-getanyoptionalobjecttype.swift ├── 27104-swift-modulefile-lookupvalue.swift ├── 27105-swift-typebase-gettypevariables.swift ├── 27106-llvm-foldingset-swift-structtype-nodeequals.swift ├── 27107-swift-typeloc-iserror.swift ├── 27108-swift-conformancelookuptable-updatelookuptable.swift ├── 27109-swift-diagnosticengine-flushactivediagnostic.swift ├── 27110-swift-patternbindingdecl-setpattern.swift ├── 27111-swift-valuedecl-getoverloadsignature.swift ├── 27112-swift-typechecker-validatedecl.swift ├── 27113-swift-nominaltypedecl-getmembers.swift ├── 27114-swift-valuedecl-settype.swift ├── 27115-swift-constraints-constraintsystem-simplifytype.swift ├── 27116-swift-constraints-constraintgraph-unbindtypevariable.swift ├── 27117-swift-clangimporter-implementation-importdeclimpl.swift ├── 27118-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 27119-void.swift ├── 27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 27121-vtable.swift ├── 27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27123-swift-valuedecl-getoverloadsignature.swift ├── 27124-swift-modulefile-lookupvalue.swift ├── 27125-swift-typechecker-coercepatterntotype.swift ├── 27126-swift-constraints-solution-solution.swift ├── 27127-swift-constraints-constraintgraph-change-undo.swift ├── 27128-swift-nominaltypedecl-preparelookuptable.swift ├── 27129-swift-typebase-getcanonicaltype.swift ├── 27130-swift-typechecker-validatetype.swift ├── 27131-isvalidoverload.swift ├── 27132-swift-availabilityinference-applyinferredavailableattrs.swift ├── 27133-swift-genericparamlist-getasgenericsignatureelements.swift ├── 27134-swift-structtype-get.swift ├── 27135-swift-patternbindingdecl-setpattern.swift ├── 27136-swift-constructordecl-setbodyparams.swift ├── 27137-swift-typechecker-coercepatterntotype.swift ├── 27138-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 27139-swift-type-subst.swift ├── 27140-swift-metatypetype-get.swift ├── 27141-swift-inflightdiagnostic.swift ├── 27142-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 27143-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27144-swift-typebase-getsuperclass.swift ├── 27145-swift-archetypebuilder-addgenericsignature.swift ├── 27146-llvm-foldingset-swift-structtype-nodeequals.swift ├── 27147-swift-boundgenerictype-get.swift ├── 27148-swift-typechecker-validatedecl.swift ├── 27149-swift-typeloc-iserror.swift ├── 27150-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 27151-swift-expr-walk.swift ├── 27152-swift-lexer-getlocforendoftoken.swift ├── 27153-swift-conformancelookuptable-updatelookuptable.swift ├── 27154-swift-modulefile-getdecl.swift ├── 27155-swift-attributebase-operator.swift ├── 27156-swift-typechecker-applygenericarguments.swift ├── 27157-swift-type-transform.swift ├── 27158-swift-inflightdiagnostic.swift ├── 27159-swift-protocoldecl-existentialconformstoselfslow.swift ├── 27160-swift-classtype-get.swift ├── 27161-swift-typechecker-typecheckpattern.swift ├── 27162-swift-type-transform.swift ├── 27163-swift-abstractclosureexpr-setparams.swift ├── 27164-swift-parser-parsetypeidentifier.swift ├── 27165-swift-typechecker-checkunsupportedprotocoltype.swift ├── 27166-swift-typebase-isspecialized.swift ├── 27167-swift-valuedecl-overwritetype.swift ├── 27168-swift-constraints-constraintsystem-matchtypes.swift ├── 27169-swift-typechecker-validategenericfuncsignature.swift ├── 27170-swift-protocoltype-canonicalizeprotocols.swift ├── 27171-swift-typebase-getanyoptionalobjecttype.swift ├── 27172-swift-typebase-isemptyexistentialcomposition.swift ├── 27173-swift-namelookup-findlocalval-visitbracestmt.swift ├── 27174-swift-valuedecl-getoverloadsignature.swift ├── 27175-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27176-swift-streamprinter-printtext.swift ├── 27177-swift-funcdecl-setdeserializedsignature.swift ├── 27178-vtable.swift ├── 27179-swift-modulefile-gettype.swift ├── 27180-swift-constraints-constraintsystem-simplifytype.swift ├── 27181-swift-patternbindingdecl-setpattern.swift ├── 27182-swift-lexer-leximpl.swift ├── 27183-swift-diagnosticengine-flushactivediagnostic.swift ├── 27184-swift-lexer-getlocforendoftoken.swift ├── 27185-swift-astcontext-getbridgedtoobjc.swift ├── 27186-swift-diagnosticengine-emitdiagnostic.swift ├── 27187-swift-protocoltype-canonicalizeprotocols.swift ├── 27188-swift-diagnosticengine-emitdiagnostic.swift ├── 27189-swift-archetypebuilder-maptypeintocontext.swift ├── 27190-swift-typechecker-checkunsupportedprotocoltype.swift ├── 27191-swift-metatypetype-get.swift ├── 27192-swift-dependentmembertype-get.swift ├── 27193-swift-typeloc-iserror.swift ├── 27194-swift-pattern-foreachvariable.swift ├── 27195-swift-protocoltype-canonicalizeprotocols.swift ├── 27196-swift-typebase-getanyoptionalobjecttype.swift ├── 27197-std-function-func-swift-type-subst.swift ├── 27198-swift-substitutedtype-get.swift ├── 27199-swift-conformancelookuptable-lookupconformances.swift ├── 27200-swift-abstractclosureexpr-setparams.swift ├── 27201-swift-diagnosticengine-emitdiagnostic.swift ├── 27202-swift-parser-consumetoken.swift ├── 27203-swift-typeloc-iserror.swift ├── 27204-swift-expr-getloc.swift ├── 27205-swift-nominaltypedecl-getmembers.swift ├── 27206-llvm-foldingset-swift-classtype-nodeequals.swift ├── 27207-swift-stmt-walk.swift ├── 27208-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift ├── 27209-swift-type-transform.swift ├── 27210-swift-diagnosticengine-emitdiagnostic.swift ├── 27211-llvm-foldingsetnodeid-operator.swift ├── 27212-swift-removeshadoweddecls.swift ├── 27213-llvm-foldingset-swift-structtype-nodeequals.swift ├── 27214-checkenumrawvalues.swift ├── 27215-llvm-smallvectorimpl-swift-protocolconformance-operator.swift ├── 27216-swift-typebase-getcanonicaltype.swift ├── 27217-swift-funcdecl-setdeserializedsignature.swift ├── 27218-swift-vardecl-getparentpattern.swift ├── 27219-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27220-swift-constraints-constraintsystem-matchtypes.swift ├── 27221-swift-typechecker-lookupunqualified.swift ├── 27222-swift-typebase-getanyoptionalobjecttype.swift ├── 27223-swift-typechecker-checkinheritanceclause.swift ├── 27224-swift-constraints-constraintgraph-gatherconstraints.swift ├── 27225-swift-polymorphicfunctiontype-get.swift ├── 27226-swift-lexer-leximpl.swift ├── 27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift ├── 27228-swift-conformancelookuptable-addprotocol.swift ├── 27229-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27230-swift-declcontext-lookupqualified.swift ├── 27231-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 27232-swift-funcdecl-isunaryoperator.swift ├── 27233-swift-modulefile-loadextensions.swift ├── 27234-swift-protocoldecl-existentialtypesupportedslow.swift ├── 27235-swift-lexer-getlocforendoftoken.swift ├── 27236-swift-typechecker-typecheckbinding.swift ├── 27237-swift-metatypetype-get.swift ├── 27238-swift-typechecker-validatedecl.swift ├── 27239-swift-typechecker-definedefaultconstructor.swift ├── 27240-no-stacktrace.swift ├── 27241-swift-constraints-constraintsystem-recordopenedtypes.swift ├── 27242-swift-genericparamlist-addnestedarchetypes.swift ├── 27243-swift-typebase-gettypevariables.swift ├── 27244-swift-lexer-lexoperatoridentifier.swift ├── 27245-swift-archetypebuilder-addconformancerequirement.swift ├── 27246-swift-genericsignature-get.swift ├── 27247-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 27248-swift-conformancelookuptable-lookupconformance.swift ├── 27249-std-function-func.swift ├── 27250-swift-nominaltype-get.swift ├── 27251-swift-nominaltype-get.swift ├── 27252-swift-moduledecl-lookupconformance.swift ├── 27253-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27254-swift-functiontype-get.swift ├── 27255-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27256-swift-constraints-constraintlocator-profile.swift ├── 27257-swift-lexer-kindofidentifier.swift ├── 27258-swift-abstractclosureexpr-setparams.swift ├── 27259-std-function-func-swift-type-subst.swift ├── 27260-swift-constraints-constraintlocator-profile.swift ├── 27261-swift-modulefile-getcommentfordecl.swift ├── 27262-swift-modulefile-getdecl.swift ├── 27263-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 27264-swift-modulefile-maybereadgenericparams.swift ├── 27265-resolveidenttypecomponent.swift ├── 27266-swift-constraints-constraintsystem-solverec.swift ├── 27267-swift-genericparamlist-create.swift ├── 27268-swift-astcontext-getsubstitutions.swift ├── 27269-void.swift ├── 27270-swift-astcontext-loadextensions.swift ├── 27271-swift-typechecker-validatedecl.swift ├── 27272-swift-constraints-constraintgraph-addconstraint.swift ├── 27273-swift-constraints-constraintsystem-solvesimplified.swift ├── 27274-swift-functiontype-get.swift ├── 27275-swift-genericfunctiontype-get.swift ├── 27276-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 27277-swift-stmt-walk.swift ├── 27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27279-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27280-swift-type-transform.swift ├── 27281-swift-constraints-simplifylocator.swift ├── 27282-swift-boundgenerictype-get.swift ├── 27283-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27284-swift-associatedtypedecl-associatedtypedecl.swift ├── 27285-swift-typechecker-resolvetypeincontext.swift ├── 27286-swift-extensiondecl-getmembers.swift ├── 27287-swift-inflightdiagnostic.swift ├── 27288-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 27289-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27290-vtable.swift ├── 27291-swift-modulefile-getdeclcontext.swift ├── 27292-swift-abstractclosureexpr-setparams.swift ├── 27293-swift-metatypetype-get.swift ├── 27294-swift-existentialmetatypetype-get.swift ├── 27295-swift-structtype-get.swift ├── 27296-swift-astcontext-getstringdecl.swift ├── 27297-llvm-bitstreamcursor-readrecord.swift ├── 27298-swift-modulefile-gettype.swift ├── 27299-swift-enumtype-get.swift ├── 27300-swift-unboundgenerictype-get.swift ├── 27301-swift-type-walk.swift ├── 27302-swift-conformancelookuptable-conformancelookuptable.swift ├── 27303-swift-typechecker-substituteinputsugartypeforresult.swift ├── 27304-swift-patternbindingdecl-setpattern.swift ├── 27305-swift-markasobjc.swift ├── 27306-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27307-swift-modulefile-gettype.swift ├── 27308-swift-inflightdiagnostic.swift ├── 27309-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27310-swift-modulefile-gettype.swift ├── 27311-swift-typechecker-typecheckexpression.swift ├── 27312-swift-substitutedtype-get.swift ├── 27313-swift-genericfunctiontype-get.swift ├── 27314-swift-markasobjc.swift ├── 27315-swift-tupletype-get.swift ├── 27316-swift-constraints-constraintsystem-solverscope-solverscope.swift ├── 27317-swift-genericparamlist-addnestedarchetypes.swift ├── 27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 27319-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27320-swift-boundgenerictype-get.swift ├── 27321-swift-createimplicitconstructor.swift ├── 27322-swift-constraints-constraintgraph-addconstraint.swift ├── 27323-swift-constraints-constraintgraph-addconstraint.swift ├── 27324-swift-constraints-constraintsystem-finalize.swift ├── 27325-swift-maybeaddaccessorstovariable.swift ├── 27326-swift-conformancelookuptable-updatelookuptable.swift ├── 27327-swift-genericparamlist-deriveallarchetypes.swift ├── 27328-swift-moduledecl-lookupvalue.swift ├── 27329-llvm-foldingset-swift-classtype-nodeequals.swift ├── 27330-swift-conformancelookuptable-lookupconformance.swift ├── 27331-swift-patternbindingdecl-setpattern.swift ├── 27332-swift-constraints-constraintsystem-simplifytype.swift ├── 27333-swift-constraints-constraintsystem-solve.swift ├── 27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift ├── 27335-swift-constraints-constraintsystem-assignfixedtype.swift ├── 27336-swift-existentialmetatypetype-get.swift ├── 27337-swift-valuedecl-overwritetype.swift ├── 27338-swift-inflightdiagnostic.swift ├── 27339-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27340-swift-constraints-constraintsystem-simplifytype.swift ├── 27341-swift-conformancelookuptable-getallprotocols.swift ├── 27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 27343-llvm-smallvectorimpl-swift-protocolconformance-operator.swift ├── 27344-swift-inflightdiagnostic.swift ├── 27345-swift-modulefile-maybereadpattern.swift ├── 27346-swift-markasobjc.swift ├── 27347-swift-inflightdiagnostic.swift ├── 27348-swift-constraints-constraintsystem-solve.swift ├── 27349-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27350-swift-metatypetype-get.swift ├── 27351-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27352-swift-astprinter-printtextimpl.swift ├── 27353-void.swift ├── 27354-swift-typebase-getmembersubstitutions.swift ├── 27355-swift-typebase-getcanonicaltype.swift ├── 27356-swift-constraints-constraintgraph-addconstraint.swift ├── 27357-swift-constraints-constraintsystem-lookupmember.swift ├── 27358-swift-constraints-constraintgraph-removeconstraint.swift ├── 27359-swift-valuedecl-settype.swift ├── 27360-swift-modulefile-gettype.swift ├── 27361-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 27362-swift-stmt-walk.swift ├── 27363-swift-type-transform.swift ├── 27364-swift-typechecker-conformstoprotocol.swift ├── 27365-swift-modulefile-getcommentfordecl.swift ├── 27366-swift-type-transform.swift ├── 27367-swift-boundgenerictype-getsubstitutions.swift ├── 27368-swift-modulefile-lookupvalue.swift ├── 27369-swift-type-transform.swift ├── 27370-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 27371-std-function-func-swift-type-subst.swift ├── 27372-void.swift ├── 27373-swift-conformancelookuptable-lookupconformances.swift ├── 27374-swift-structtype-get.swift ├── 27375-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27376-swift-abstractstoragedecl-getobjcgetterselector.swift ├── 27377-swift-typechecker-isdeclavailable.swift ├── 27378-swift-modulefile-maybereadpattern.swift ├── 27379-swift-constraints-constraintgraphnode-getadjacency.swift ├── 27380-swift-lexer-kindofidentifier.swift ├── 27381-std-function-func-mapsignaturetype.swift ├── 27382-void.swift ├── 27383-swift-declcontext-lookupqualified.swift ├── 27385-swift-modulefile-getdecl.swift ├── 27386-swift-cantype-isobjcexistentialtypeimpl.swift ├── 27387-swift-structtype-get.swift ├── 27388-swift-metatypetype-get.swift ├── 27389-swift-typeexpr-typeexpr.swift ├── 27390-swift-typechecker-computeaccessibility.swift ├── 27391-swift-typechecker-checkinheritanceclause.swift ├── 27392-swift-constraints-constraintsystem-finalize.swift ├── 27393-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 27394-swift-type-transform.swift ├── 27395-swift-nominaltypedecl-preparelookuptable.swift ├── 27396-swift-typebase-getimplicitlyunwrappedoptionalobjecttype.swift ├── 27397-swift-patternbindingdecl-setpattern.swift ├── 27398-swift-declcontext-getlocalconformances.swift ├── 27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift ├── 27400-swift-protocolconformance-getinheritedconformance.swift ├── 27401-void.swift ├── 27402-std-function-func-checkaccessibility.swift ├── 27403-swift-typechecker-resolveinheritanceclause.swift ├── 27404-swift-constraints-constraintlocator-profile.swift ├── 27405-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 27406-swift-protocoltype-canonicalizeprotocols.swift ├── 27407-swift-constraints-simplifylocator.swift ├── 27408-swift-removeshadoweddecls.swift ├── 27409-llvm-foldingset-swift-enumtype-nodeequals.swift ├── 27410-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27411-swift-constraints-constraintsystem-simplifytype.swift ├── 27412-swift-typechecker-validatedecl.swift ├── 27413-swift-modulefile-getimportedmodules.swift ├── 27414-llvm-errs.swift ├── 27415-swift-namelookup-lookupinmodule.swift ├── 27416-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 27418-swift-typechecker-lookupmember.swift ├── 27419-swift-boundgenerictype-get.swift ├── 27420-llvm-optional-swift-diagnostic-operator.swift ├── 27421-formatdiagnostictext.swift ├── 27422-swift-lexer-leximpl.swift ├── 27423-swift-constraints-constraintsystem-finalize.swift ├── 27424-swift-genericparamlist-addnestedarchetypes.swift ├── 27425-swift-substitutedtype-get.swift ├── 27426-swift-typechecker-validatedecl.swift ├── 27427-swift-protocolcompositiontyperepr-create.swift ├── 27428-swift-diagnosticengine-emitdiagnostic.swift ├── 27429-swift-typechecker-typecheckexpressionshallow.swift ├── 27430-swift-boundgenerictype-getsubstitutions.swift ├── 27431-swift-constraints-constraintsystem-finalize.swift ├── 27432-swift-typechecker-validatetype.swift ├── 27433-std-function-func-swift-parser-parsenominaldeclmembers.swift ├── 27434-swift-parser-diagnose.swift ├── 27435-swift-constraints-solution-solution.swift ├── 27436-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27437-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 27438-swift-typechecker-checkinheritanceclause.swift ├── 27439-swift-funcdecl-setdeserializedsignature.swift ├── 27440-void.swift ├── 27441-swift-metatypetype-get.swift ├── 27442-swift-parser-parseexprclosure.swift ├── 27443-matchwitness.swift ├── 27444-swift-typebase-getanyoptionalobjecttype.swift ├── 27445-swift-type-subst.swift ├── 27446-swift-conformancelookuptable-updatelookuptable.swift ├── 27447-swift-diagnosticengine-flushactivediagnostic.swift ├── 27448-swift-nominaltypedecl-computeinterfacetype.swift ├── 27449-swift-constraints-constraintsystem-solverec.swift ├── 27450-bool.swift ├── 27451-swift-parser-parsedeclstruct.swift ├── 27452-swift-nominaltypedecl-computetype.swift ├── 27453-diagnoseredundantaccessors.swift ├── 27454-swift-parser-parsetoken.swift ├── 27455-swift-modulefile-loadextensions.swift ├── 27456-swift-abstractclosureexpr-setparams.swift ├── 27457-llvm-tinyptrvector-swift-valuedecl-push-back.swift ├── 27458-swift-constraints-constraintsystem-solve.swift ├── 27459-swift-genericsignature-get.swift ├── 27460-swift-protocoltype-compareprotocols.swift ├── 27461-swift-genericparamlist-addnestedarchetypes.swift ├── 27462-swift-modulefile-lookupvalue.swift ├── 27463-swift-parser-parseexprpostfix.swift ├── 27464-swift-typebase-isequal.swift ├── 27465-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 27466-swift-lexer-lexidentifier.swift ├── 27467-vtable.swift ├── 27468-swift-funcdecl-isunaryoperator.swift ├── 27469-swift-patternbindingdecl-create.swift ├── 27470-swift-constraints-constraintsystem-solverec.swift ├── 27471-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27472-swift-decl-walk.swift ├── 27473-swift-inflightdiagnostic.swift ├── 27474-swift-typechecker-checkdeclarationavailability.swift ├── 27475-swift-typebase-getcanonicaltype.swift ├── 27476-swift-modulefile-maybereadforeignerrorconvention.swift ├── 27477-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift ├── 27478-llvm-errs.swift ├── 27479-swift-type-subst.swift ├── 27480-void.swift ├── 27481-swift-conformancelookuptable-resolveconformances.swift ├── 27482-swift-parser-parseexprpostfix.swift ├── 27483-swift-namelookup-findlocalval-visitbracestmt.swift ├── 27484-swift-typebase-isspecialized.swift ├── 27485-swift-bracestmt-create.swift ├── 27486-swift-constraints-constraintsystem-findbestsolution.swift ├── 27487-swift-sourcemanager-addnewsourcebuffer.swift ├── 27488-swift-conformancelookuptable-expandimpliedconformances.swift ├── 27489-swift-typechecker-checkgenericarguments.swift ├── 27490-swift-inflightdiagnostic.swift ├── 27491-swift-modulefile-maybereadgenericparams.swift ├── 27492-swift-inouttype-get.swift ├── 27493-swift-parser-consumetoken.swift ├── 27494-swift-conformancelookuptable-lookupconformance.swift ├── 27495-swift-typechecker-addimplicitconstructors.swift ├── 27496-swift-modulefile-declcommenttableinfo-readdata.swift ├── 27497-swift-decl-walk.swift ├── 27498-swift-typechecker-typecheckpatternbinding.swift ├── 27499-llvm-bitstreamcursor-read.swift ├── 27500-swift-constructordecl-constructordecl.swift ├── 27501-swift-namelookup-lookupinmodule.swift ├── 27502-swift-typebase-getdesugaredtype.swift ├── 27503-swift-conformancelookuptable-expandimpliedconformances.swift ├── 27504-swift-typebase-getmembersubstitutions.swift ├── 27505-swift-diagnosticengine-emitdiagnostic.swift ├── 27506-swift-modulefile-gettype.swift ├── 27507-swift-modulefile-lookupvalue.swift ├── 27508-swift-typebase-getdesugaredtype.swift ├── 27509-swift-inflightdiagnostic.swift ├── 27510-swift-boundgenerictype-get.swift ├── 27511-swift-constraints-constraintsystem-performmemberlookup.swift ├── 27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift ├── 27513-swift-typeloc-iserror.swift ├── 27514-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 27515-swift-typechecker-overapproximateosversionsatlocation.swift ├── 27516-swift-nominaltypedecl-classifyasoptionaltype.swift ├── 27517-swift-valuedecl-overwritetype.swift ├── 27518-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift ├── 27519-swift-pattern-buildforwardingrefexpr.swift ├── 27520-swift-typechecker-substituteinputsugartypeforresult.swift ├── 27521-swift-parser-parseexprpostfix.swift ├── 27522-swift-typechecker-validatedecl.swift ├── 27523-swift-lexer-leximpl.swift ├── 27524-swift-type-subst.swift ├── 27525-swift-constraints-constraintsystem-matchtupletypes.swift ├── 27526-swift-structtype-get.swift ├── 27527-swift-nominaltypedecl-getmembers.swift ├── 27528-swift-constraints-constraintsystem-solve.swift ├── 27529-swift-typechecker-gettypeofrvalue.swift ├── 27530-resolveidenttypecomponent.swift ├── 27531-swift-typechecker-coercepatterntotype.swift ├── 27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 27533-swift-ide-printdeclusr.swift ├── 27534-swift-genericparamlist-addnestedarchetypes.swift ├── 27535-swift-diagnosticengine-flushactivediagnostic.swift ├── 27536-swift-namelookup-findlocalval-visitbracestmt.swift ├── 27537-swift-clangimporter-implementation-finishpendingactions.swift ├── 27538-swift-typebase-getanyoptionalobjecttype.swift ├── 27539-swift-parser-parsetoken.swift ├── 27540-swift-type-walk.swift ├── 27541-swift-modulefile-maybereadgenericparams.swift ├── 27542-swift-genericfunctiontype-get.swift ├── 27543-swift-typechecker-checkgenericarguments.swift ├── 27544-bool.swift ├── 27545-swift-nominaltypedecl-classifyasoptionaltype.swift ├── 27546-swift-clangimporter-lookupvalue.swift ├── 27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift ├── 27548-swift-constraints-constraintsystem-assignfixedtype.swift ├── 27549-swift-namelookup-findlocalval-visitbracestmt.swift ├── 27550-swift-moduledecl-lookupconformance.swift ├── 27551-swift-protocoldecl-existentialtypesupportedslow.swift ├── 27552-swift-constraints-constraintsystem-solverstate-solverstate.swift ├── 27553-swift-conformancelookuptable-getconformingcontext.swift ├── 27554-swift-modulefile-gettype.swift ├── 27555-swift-constraints-constraintgraph-lookupnode.swift ├── 27556-swift-genericfunctiontype-get.swift ├── 27557-swift-parser-parseidentifier.swift ├── 27558-swift-parser-parsetypeidentifier.swift ├── 27559-swift-modulefile-maybereadforeignerrorconvention.swift ├── 27560-swift-typechecker-addimplicitconstructors.swift ├── 27561-swift-functiontype-get.swift ├── 27562-swift-genericsignature-get.swift ├── 27563-swift-funcdecl-isunaryoperator.swift ├── 27564-swift-constraints-constraintsystem-matchfunctiontypes.swift ├── 27565-swift-typechecker-checkinheritanceclause.swift ├── 27566-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 27567-swift-constraints-constraintsystem-addoverloadset.swift ├── 27568-swift-polymorphicfunctiontype-get.swift ├── 27569-swift-typechecker-validatedecl.swift ├── 27570-checkenumrawvalues.swift ├── 27571-swift-inflightdiagnostic.swift ├── 27572-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 27573-swift-modulefile-maybereadpattern.swift ├── 27574-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27575-swift-type-subst.swift ├── 27576-swift-markasobjc.swift ├── 27577-swift-funcdecl-setdeserializedsignature.swift ├── 27578-void.swift ├── 27579-vtable.swift ├── 27580-swift-typebase-getmembersubstitutions.swift ├── 27581-swift-modulefile-maybereadgenericparams.swift ├── 27582-swift-valuedecl-settype.swift ├── 27583-swift-functiontype-get.swift ├── 27584-swift-typechecker-isdeclavailable.swift ├── 27585-swift-astcontext-loadextensions.swift ├── 27586-swift-parser-consumetoken.swift ├── 27587-llvm-foldingset-swift-classtype-nodeequals.swift ├── 27588-swift-constraints-constraintsystem-simplifyconstraint.swift ├── 27589-swift-typechecker-validatedecl.swift ├── 27590-swift-generictypeparamtype-get.swift ├── 27591-swift-modulefile-gettype.swift ├── 27592-swift-genericparamlist-addnestedarchetypes.swift ├── 27593-swift-genericparamlist-deriveallarchetypes.swift ├── 27594-swift-getbuiltinvaluedecl.swift ├── 27595-swift-parser-parsedeclvar.swift ├── 27596-llvm-foldingset-swift-enumtype-nodeequals.swift ├── 27597-swift-modulefile-maybereadpattern.swift ├── 27598-swift-typechecker-coercepatterntotype.swift ├── 27599-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 27600-swift-constraints-constraintsystem-recordopenedtypes.swift ├── 27601-swift-inflightdiagnostic.swift ├── 27602-swift-inflightdiagnostic.swift ├── 27603-swift-typechecker-validatedecl.swift ├── 27604-swift-valuedecl-getoverloadsignature.swift ├── 27605-swift-parser-parsedeclprotocol.swift ├── 27606-swift-astcontext-addedexternaldecl.swift ├── 27607-swift-constraints-constraintsystem-matchfunctiontypes.swift ├── 27608-llvm-errs.swift ├── 27609-std-function-func-checkaccessibility.swift ├── 27610-swift-conformancelookuptable-lookupconformances.swift ├── 27611-swift-parser-parsegetsetimpl.swift ├── 27612-swift-typechecker-checkunsupportedprotocoltype.swift ├── 27613-swift-patternbindingdecl-hasstorage.swift ├── 27614-swift-typebase-getcanonicaltype.swift ├── 27615-swift-nominaltypedecl-prepareextensions.swift ├── 27616-swift-nominaltypedecl-getmembers.swift ├── 27617-swift-markasobjc.swift ├── 27618-swift-modulefile-getimportedmodules.swift ├── 27619-swift-modulefile-getdecl.swift ├── 27620-swift-genericsignature-genericsignature.swift ├── 27621-swift-getbuiltinvaluedecl.swift ├── 27622-swift-typebase-isemptyexistentialcomposition.swift ├── 27623-swift-boundgenerictype-get.swift ├── 27624-swift-typebase-isequal.swift ├── 27625-swift-typechecker-typecheckpattern.swift ├── 27626-llvm-smdiagnostic-smdiagnostic.swift ├── 27627-swift-typechecker-checkdeclarationavailability.swift ├── 27628-swift-abstractclosureexpr-setparams.swift ├── 27629-swift-associatedtypedecl-associatedtypedecl.swift ├── 27630-swift-scopeinfo-addtoscope.swift ├── 27631-swift-nominaltypedecl-getmembers.swift ├── 27632-swift-typechecker-typecheckdecl.swift ├── 27633-swift-inflightdiagnostic.swift ├── 27634-swift-lexer-kindofidentifier.swift ├── 27635-swift-protocoltype-canonicalizeprotocols.swift ├── 27636-swift-typechecker-resolvetypeincontext.swift ├── 27637-swift-typechecker-checkunsupportedprotocoltype.swift ├── 27638-swift-structtype-get.swift ├── 27639-swift-enumtype-get.swift ├── 27640-swift-functiontype-get.swift ├── 27641-swift-parser-parseexprpostfix.swift ├── 27642-swift-inflightdiagnostic.swift ├── 27643-swift-valuedecl-settype.swift ├── 27644-llvm-optional-swift-diagnostic-operator.swift ├── 27645-swift-typechecker-lookupunqualified.swift ├── 27646-swift-markasobjc.swift ├── 27647-swift-tuplepattern-createsimple.swift ├── 27648-llvm-smallvectorimpl-swift-decl-insert.swift ├── 27649-swift-constraints-constraintsystem-finalize.swift ├── 27650-swift-metatypetype-get.swift ├── 27651-swift-genericparamlist-deriveallarchetypes.swift ├── 27652-swift-typechecker-checkdeclattributes.swift ├── 27653-swift-archetypebuilder-getallarchetypes.swift ├── 27654-swift-streamprinter-printtext.swift ├── 27655-swift-constraints-solution-solution.swift ├── 27656-swift-abstractfunctiondecl-getobjcselector.swift ├── 27657-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 27658-swift-constraints-constraintgraph-removeconstraint.swift ├── 27659-swift-parser-parsedeclclass.swift ├── 27660-no-stacktrace.swift ├── 27661-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 27662-swift-valuedecl-settype.swift ├── 27663-swift-nominaltypedecl-prepareextensions.swift ├── 27664-swift-nominaltypedecl-prepareextensions.swift ├── 27665-swift-conformancelookuptable-getallprotocols.swift ├── 27666-swift-modulefile-loadextensions.swift ├── 27667-swift-modulefile-getdecl.swift ├── 27668-swift-boundgenerictype-get.swift ├── 27669-swift-parser-skipsingle.swift ├── 27670-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27671-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 27672-swift-dependentmembertype-get.swift ├── 27673-swift-parser-parseidentifier.swift ├── 27674-swift-extensiondecl-getmembers.swift ├── 27675-vtable.swift ├── 27676-swift-moduledecl-lookupvalue.swift ├── 27677-std-function-func-swift-constraints-constraintsystem-simplifytype.swift ├── 27678-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27679-swift-constraints-constraintsystem-solverstate-solverstate.swift ├── 27680-swift-structtype-get.swift ├── 27681-swift-constraints-constraintsystem-assignfixedtype.swift ├── 27682-swift-removeshadoweddecls.swift ├── 27683-swift-tuplepattern-create.swift ├── 27684-swift-constraints-constraintsystem-getalternativeliteraltypes.swift ├── 27685-swift-pattern-foreachvariable.swift ├── 27686-swift-conformancelookuptable-updatelookuptable.swift ├── 27687-swift-classtype-get.swift ├── 27688-swift-vardecl-isanonclosureparam.swift ├── 27689-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 27690-swift-typechecker-substituteinputsugartypeforresult.swift ├── 27691-void.swift ├── 27692-swift-constraints-simplifylocator.swift ├── 27693-swift-constraints-constraintsystem-opengeneric.swift ├── 27694-swift-nominaltypedecl-preparelookuptable.swift ├── 27695-swift-constraints-constraintsystem-performmemberlookup.swift ├── 27696-swift-constraints-constraintsystem-matchtypes.swift ├── 27697-std-function-func-setboundvarstypeerror.swift ├── 27698-swift-parser-parseexprimpl.swift ├── 27699-swift-typebase-isemptyexistentialcomposition.swift ├── 27700-swift-modulefile-loadallmembers.swift ├── 27701-swift-getllvmintrinsicid.swift ├── 27702-swift-conformancelookuptable-resolveconformances.swift ├── 27703-swift-astprinter-printtextimpl.swift ├── 27704-swift-modulefile-declcommenttableinfo-readdata.swift ├── 27705-swift-lexer-getlocforendoftoken.swift ├── 27706-swift-availabilityinference-applyinferredavailableattrs.swift ├── 27707-swift-typebase-getcanonicaltype.swift ├── 27708-swift-constraints-solution-solution.swift ├── 27709-swift-removeshadoweddecls.swift ├── 27710-swift-lexer-getlocforendoftoken.swift ├── 27711-swift-declcontext-getlocalconformances.swift ├── 27712-swift-constraints-constraintsystem-solvesimplified.swift ├── 27713-swift-constraints-constraintgraph-gatherconstraints.swift ├── 27714-llvm-optional-swift-diagnostic-operator.swift ├── 27715-swift-constraints-constraintsystem-matchtypes.swift ├── 27716-swift-lexer-getlocforendoftoken.swift ├── 27717-swift-constraints-constraintsystem-matchtypes.swift ├── 27718-swift-parser-parseidentifier.swift ├── 27719-std-function-func-swift-type-subst.swift ├── 27720-swift-valuedecl-overwritetype.swift ├── 27721-swift-typebase-getcanonicaltype.swift ├── 27722-swift-removeshadoweddecls.swift ├── 27723-swift-constraints-constraint-createbindoverload.swift ├── 27724-swift-constraints-constraintgraph-change-undo.swift ├── 27725-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27726-swift-modulefile-declcommenttableinfo-readdata.swift ├── 27727-swift-abstractclosureexpr-setparams.swift ├── 27728-swift-modulefile-loadextensions.swift ├── 27729-swift-typechecker-coercepatterntotype.swift ├── 27730-swift-modulefile-resolvecrossreference.swift ├── 27731-swift-removeshadoweddecls.swift ├── 27732-swift-valuedecl-getinterfacetype.swift ├── 27733-swift-constraints-constraintsystem-constraintsystem.swift ├── 27734-swift-typechecker-coercepatterntotype.swift ├── 27735-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27736-void.swift ├── 27737-swift-parentype-get.swift ├── 27738-swift-inflightdiagnostic.swift ├── 27739-swift-conformancelookuptable-resolveconformances.swift ├── 27740-swift-modulefile-getdeclcontext.swift ├── 27741-swift-structtype-get.swift ├── 27742-matchwitness.swift ├── 27743-swift-constraints-constraintsystem-solvesimplified.swift ├── 27744-swift-astprinter-printtextimpl.swift ├── 27745-swift-modulefile-getdecl.swift ├── 27746-void.swift ├── 27747-swift-typebase-getcanonicaltype.swift ├── 27748-swift-conformancelookuptable-getimplicitprotocols.swift ├── 27749-swift-archetypetype-getnew.swift ├── 27750-swift-metatypetype-get.swift ├── 27751-swift-functiontype-get.swift ├── 27752-swift-parser-parsebraceitems.swift ├── 27753-std-function-func-setboundvarstypeerror.swift ├── 27754-swift-typechecker-resolvetypeincontext.swift ├── 27755-swift-typechecker-validatedecl.swift ├── 27756-swift-modulefile-gettype.swift ├── 27757-swift-parser-parsebraceitems.swift ├── 27758-std-function-func-swift-type-subst.swift ├── 27759-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 27760-swift-inflightdiagnostic.swift ├── 27761-swift-archetypebuilder-addgenericsignature.swift ├── 27762-swift-typechecker-validategenericfuncsignature.swift ├── 27763-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 27764-swift-constraints-simplifylocator.swift ├── 27765-swift-typechecker-typecheckpatternbinding.swift ├── 27766-swift-constraints-solution-solution.swift ├── 27767-swift-constructordecl-constructordecl.swift ├── 27768-swift-typechecker-lookupunqualified.swift ├── 27769-swift-patternbindingdecl-create.swift ├── 27770-swift-typechecker-resolvetypeincontext.swift ├── 27771-swift-typebase-isequal.swift ├── 27772-swift-modulefile-loadextensions.swift ├── 27773-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 27774-filtervalues.swift ├── 27775-swift-typechecker-typecheckpattern.swift ├── 27776-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27777-swift-clangimporter-loadextensions.swift ├── 27778-swift-astcontext-getbridgedtoobjc.swift ├── 27779-swift-abstractstoragedecl-getobjcgetterselector.swift ├── 27780-swift-conformancelookuptable-lookupconformances.swift ├── 27781-swift-typechecker-resolvetypeincontext.swift ├── 27782-swift-genericsignature-profile.swift ├── 27783-swift-genericparamlist-deriveallarchetypes.swift ├── 27784-swift-printingdiagnosticconsumer-handlediagnostic.swift ├── 27785-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 27786-swift-inflightdiagnostic.swift ├── 27787-swift-typechecker-overapproximateosversionsatlocation.swift ├── 27788-swift-constraints-solution-solution.swift ├── 27789-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 27790-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27791-swift-conformancelookuptable-updatelookuptable.swift ├── 27792-swift-funcdecl-setdeserializedsignature.swift ├── 27793-swift-typechecker-checkdeclattributes.swift ├── 27794-swift-constraints-constraintlocator-profile.swift ├── 27795-swift-typebase-isequal.swift ├── 27796-swift-modulefile-maybereadforeignerrorconvention.swift ├── 27797-swift-typechecker-typecheckbinding.swift ├── 27798-swift-typechecker-overapproximateosversionsatlocation.swift ├── 27799-swift-modulefile-getimportedmodules.swift ├── 27800-swift-protocoltype-canonicalizeprotocols.swift ├── 27801-swift-clangimporter-lookupvalue.swift ├── 27802-swift-constraints-constraintsystem-finalize.swift ├── 27803-swift-typechecker-validatedecl.swift ├── 27804-swift-constraints-constraintsystem-applysolution.swift ├── 27805-swift-markasobjc.swift ├── 27806-swift-declcontext-lookupqualified.swift ├── 27807-swift-scopeinfo-addtoscope.swift ├── 27808-swift-constructordecl-constructordecl.swift ├── 27809-void.swift ├── 27810-swift-sourcefile-getcache.swift ├── 27811-swift-constraints-solution-computesubstitutions.swift ├── 27812-swift-archetypebuilder-addgenericsignature.swift ├── 27813-no-stacktrace.swift ├── 27814-swift-parser-parseexprclosure.swift ├── 27815-swift-archetypetype-getnew.swift ├── 27821-swift-typechecker-definedefaultconstructor.swift ├── 27822-swift-modulefile-loadextensions.swift ├── 27823-swift-parser-parsetoken.swift ├── 27824-swift-modulefile-maybereadgenericparams.swift ├── 27825-swift-functiontype-get.swift ├── 27826-swift-lexer-lexstringliteral.swift ├── 27827-swift-constraints-simplifylocator.swift ├── 27828-swift-conformancelookuptable-getallprotocols.swift ├── 27829-swift-typechecker-lookupmembertype.swift ├── 27830-swift-constraints-constraintsystem-simplifytype.swift ├── 27831-swift-bracestmt-create.swift ├── 27832-swift-typechecker-resolvetypeincontext.swift ├── 27833-swift-conformancelookuptable-lookupconformances.swift ├── 27834-swift-constraints-constraintgraphscope-constraintgraphscope.swift ├── 27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift ├── 27836-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift ├── 27837-swift-inflightdiagnostic.swift ├── 27838-swift-conformancelookuptable-updatelookuptable.swift ├── 27839-swift-archetypebuilder-potentialarchetype-addconformance.swift ├── 27841-swift-parser-createbindingfrompattern.swift ├── 27842-swift-conformancelookuptable-addprotocol.swift ├── 27843-llvm-foldingset-swift-classtype-nodeequals.swift ├── 27844-swift-typechecker-getinterfacetypefrominternaltype.swift ├── 27845-swift-typebase-isequal.swift ├── 27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift ├── 27848-swift-tupletype-get.swift ├── 27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 27851-swift-structtype-get.swift ├── 27852-swift-valuedecl-getoverloadsignature.swift ├── 27853-swift-constraints-constraintsystem-addconstraint.swift ├── 27854-swift-clangimporter-loadextensions.swift ├── 27855-swift-nominaltype-get.swift ├── 27856-swift-constraints-constraintlocator-profile.swift ├── 27857-vtable.swift ├── 27858-swift-inouttype-get.swift ├── 27859-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift ├── 27861-swift-tuplepattern-createsimple.swift ├── 27862-swift-type-walk.swift ├── 27863-swift-serializedmoduleloader-loadextensions.swift ├── 27865-swift-conformancelookuptable-getimplicitprotocols.swift ├── 27866-swift-typebase-getoptionalobjecttype.swift ├── 27867-swift-typerepr-getsourcerange.swift ├── 27868-swift-typechecker-getdefaulttype.swift ├── 27869-swift-nominaltypedecl-computeinterfacetype.swift ├── 27870-swift-constraints-constraintsystem-optimizeconstraints.swift ├── 27871-swift-typechecker-typecheckpatternbinding.swift ├── 27872-swift-metatypetype-get.swift ├── 27873-void.swift ├── 27874-swift-enumtype-get.swift ├── 27876-filtervalues.swift ├── 27877-swift-constructordecl-setbodyparams.swift ├── 27878-swift-expr-walk.swift ├── 27879-swift-polymorphicfunctiontype-get.swift ├── 27880-swift-nominaltypedecl-preparelookuptable.swift ├── 27881-swift-declcontext-getlocalconformances.swift ├── 27882-swift-clangmoduleunit-lookupvalue.swift ├── 27883-swift-archetypebuilder-addconformancerequirement.swift ├── 27884-swift-typechecker-callwitness.swift ├── 27885-bool.swift ├── 27887-swift-protocolcompositiontyperepr-create.swift ├── 27888-swift-typechecker-resolveinheritanceclause.swift ├── 27889-void.swift ├── 27890-swift-typechecker-validategenerictypesignature.swift ├── 27891-swift-typechecker-resolvesuperclass.swift ├── 27892-swift-extensiondecl-getmembers.swift ├── 27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift ├── 27894-swift-parser-parsedecl.swift ├── 27895-swift-sourcefile-getcache.swift ├── 27896-swift-modulefile-configurestorage.swift ├── 27897-swift-typeloc-iserror.swift ├── 27898-void.swift ├── 27899-swift-unboundgenerictype-get.swift ├── 27900-swift-constraints-constraintsystem-assignfixedtype.swift ├── 27902-llvm-foldingset-swift-boundgenerictype-nodeequals.swift ├── 27903-swift-genericfunctiontype-get.swift ├── 27904-swift-funcdecl-isdeferbody.swift ├── 27905-swift-constraints-constraintgraph-change-undo.swift ├── 27906-swift-valuedecl.swift ├── 27907-swift-constraints-constraintsystem-solvesimplified.swift ├── 27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift ├── 27909-llvm-densemapbase-llvm-densemap-swift-identifier.swift ├── 27910-swift-conformancelookuptable-updatelookuptable.swift ├── 27911-swift-declcontext-getdeclaredtypeincontext.swift ├── 27912-swift-classtype-get.swift ├── 27913-swift-typechecker-checkgenericarguments.swift ├── 27915-swift-typechecker-checkomitneedlesswords.swift ├── 27916-swift-sourcemanager-getmessage.swift ├── 27917-swift-printdecldescription.swift ├── 27918-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 27919-swift-stmt-walk.swift ├── 27920-void.swift ├── 27921-swift-conformancelookuptable-expandimpliedconformances.swift ├── 27922-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27923-swift-modulefile-gettype.swift ├── 27924-swift-typechecker-typecheckexpression.swift ├── 27925-swift-modulefile-loadextensions.swift ├── 27926-swift-clangmoduleunit-lookupvalue.swift ├── 27927-swift-modulefile-maybereadpattern.swift ├── 27928-swift-typechecker-validatedecl.swift ├── 27929-swift-clangimporter-lookupvalue.swift ├── 27930-swift-clangimporter-implementation-importattributes.swift ├── 27931-swift-constraints-constraintsystem-salvage.swift ├── 27932-swift-constraints-constraintsystem-generateconstraints.swift ├── 27933-swift-constraints-constraintsystem-simplifytype.swift ├── 27934-swift-genericsignature-getcanonical.swift ├── 27935-swift-moduledecl-lookupconformance.swift ├── 27936-swift-structtype-get.swift ├── 27937-swift-substitutedtype-get.swift ├── 27938-swift-arrayexpr-create.swift ├── 27939-vtable.swift ├── 27940-swift-typechecker-resolvesuperclass.swift ├── 27941-swift-constraints-constraintgraph-removeconstraint.swift ├── 27942-resolveidenttypecomponent.swift ├── 27943-swift-astcontext-getinheritedconformance.swift ├── 27944-swift-astvisitor.swift ├── 27945-swift-conformancelookuptable-resolveconformances.swift ├── 27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift ├── 27947-swift-parser-parsebraceitems.swift ├── 27948-swift-constraints-constraintsystem-performmemberlookup.swift ├── 27949-swift-genericparamlist-create.swift ├── 27950-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 27951-swift-astcontext-getspecializedconformance.swift ├── 27953-swift-modulefile-getcommentfordecl.swift ├── 27955-swift-declattribute-print.swift ├── 27956-swift-expr-walk.swift ├── 27957-swift-inflightdiagnostic-fixitremove.swift ├── 27958-swift-typechecker-isdeclavailable.swift ├── 27959-swift-conformancelookuptable-conformancelookuptable.swift ├── 27960-swift-constraints-constraintsystem-opentype.swift ├── 27961-swift-inflightdiagnostic.swift ├── 27962-swift-rebindselfinconstructorexpr-getcalledconstructor.swift ├── 27963-swift-typechecker-checkunsupportedprotocoltype.swift ├── 27964-swift-conformancelookuptable-compareprotocolconformances.swift ├── 27965-llvm-foldingset-swift-tupletype-nodeequals.swift ├── 27966-swift-dependentmembertype-get.swift ├── 27967-swift-valuedecl-getoverloadsignature.swift ├── 27969-void.swift ├── 27970-swift-typechecker-typecheckbinding.swift ├── 27971-swift-constraints-constraintsystem-applysolution.swift ├── 27972-swift-maybeaddaccessorstovariable.swift ├── 27973-swift-typechecker-substituteinputsugartypeforresult.swift ├── 27974-swift-inflightdiagnostic-fixitreplacechars.swift ├── 27975-swift-genericsignature-get.swift ├── 27976-swift-mangle-mangler-mangletype.swift ├── 27977-swift-substitutedtype-get.swift ├── 27978-swift-typechecker-solveforexpression.swift ├── 27979-swift-conformancelookuptable-lookupconformances.swift ├── 27980-matchcallarguments.swift ├── 27981-std-function-func.swift ├── 27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 27984-llvm-densemapbase-llvm-densemap-swift-declname.swift ├── 27986-swift-abstractfunctiondecl-setgenericparams.swift ├── 27988-swift-inflightdiagnostic-fixitreplacechars.swift ├── 27989-swift-typechecker-lookupmember.swift ├── 27990-swift-constraints-constraintsystem-computeassigndesttype.swift ├── 27991-void.swift ├── 27992-swift-createimplicitconstructor.swift ├── 27993-swift-parser-parsedeclfunc.swift ├── 27995-swift-constraints-constraintsystem-simplifyconstructionconstraint.swift ├── 27996-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift ├── 27997-swift-typechecker-computeaccessibility.swift ├── 27998-swift-parser-consumetoken.swift ├── 27999-swift-constraints-solution-solution.swift ├── 28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift ├── 28001-swift-parser-parsetypesimple.swift ├── 28002-swift-parser-parsebraceitems.swift ├── 28003-swift-constraints-constraintsystem-recordfix.swift ├── 28004-swift-parser-parseexprsequence.swift ├── 28005-swift-constraints-constraintgraphnode-getadjacency.swift ├── 28006-swift-typechecker-resolveidentifiertype.swift ├── 28007-swift-scopeinfo-addtoscope.swift ├── 28008-swift-builtinunit-lookupcache-lookupvalue.swift ├── 28009-swift-parser-parsedeclenum.swift ├── 28010-swift-typechecker-typecheckdecl.swift ├── 28011-swift-typebase-getcanonicaltype.swift ├── 28012-swift-inflightdiagnostic.swift ├── 28013-std-function-func-swift-archetypebuilder-visitinherited.swift ├── 28014-swift-decl-walk.swift ├── 28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift ├── 28016-swift-typebase-getcanonicaltype.swift ├── 28017-swift-protocoldecl-existentialtypesupportedslow.swift ├── 28018-swift-valuedecl-overwritetype.swift ├── 28019-swift-typechecker-checkdeclarationavailability.swift ├── 28020-llvm-smallvectorimpl-swift-decl-insert.swift ├── 28021-swift-decl-getrawcomment.swift ├── 28022-swift-typechecker-diagnoseexplicitunavailability.swift ├── 28023-swift-typechecker-diagnoseexplicitunavailability.swift ├── 28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift ├── 28025-swift-markasobjc.swift ├── 28026-swift-protocolcompositiontype-build.swift ├── 28027-swift-typebase-getmembersubstitutions.swift ├── 28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift ├── 28029-swift-constraints-constraintsystem-performmemberlookup.swift ├── 28031-swift-clangimporter-lookupvalue.swift ├── 28032-swift-typechecker-computecaptures.swift ├── 28033-swift-configureconstructortype.swift ├── 28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28035-swift-archetypebuilder-getallarchetypes.swift ├── 28037-swift-inflightdiagnostic.swift ├── 28038-swift-parser-parsetype.swift ├── 28039-swift-constraints-solution-computesubstitutions.swift ├── 28040-swift-genericparamlist-addnestedarchetypes.swift ├── 28041-swift-typechecker-lookupunqualified.swift ├── 28042-void.swift ├── 28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift ├── 28045-swift-typechecker-typecheckpatternbinding.swift ├── 28046-swift-typechecker-substituteinputsugartypeforresult.swift ├── 28047-swift-constraints-constraintsystem-recordfix.swift ├── 28048-swift-astcontext-getspecializedconformance.swift ├── 28050-swift-abstractfunctiondecl-setgenericparams.swift ├── 28051-swift-parser-parseexprimpl.swift ├── 28052-swift-moduledecl-lookupvalue.swift ├── 28053-swift-parser-parsedeclvar.swift ├── 28054-ldstninstinfo.swift ├── 28055-swift-parser-parsegetsetimpl.swift ├── 28056-swift-valuedecl-settype.swift ├── 28057-swift-modulefile-declcommenttableinfo-readdata.swift ├── 28058-swift-lexer-leximpl.swift ├── 28059-swift-conformancelookuptable-updatelookuptable.swift ├── 28060-std-function-func.swift ├── 28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift ├── 28062-swift-classdecl-checkobjcancestry.swift ├── 28064-swift-stmtconditionelement-walk.swift ├── 28065-swift-constraints-constraintsystem-mergeequivalenceclasses.swift ├── 28066-swift-parentype-get.swift ├── 28067-no-stacktrace.swift ├── 28068-swift-declcontext-getlocalconformances.swift ├── 28069-swift-nominaltypedecl-classifyasoptionaltype.swift ├── 28070-swift-lexer-diagnose.swift ├── 28071-swift-clangimporter-implementation-importdeclandcacheimpl.swift ├── 28072-swift-typechecker-buildrefexpr.swift ├── 28073-swift-parser-parsestmt.swift ├── 28074-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 28075-swift-lexer-lexstringliteral.swift ├── 28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift ├── 28077-swift-parser-parsedeclsubscript.swift ├── 28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift ├── 28079-swift-lexer-leximpl.swift ├── 28080-swift-parser-diagnose.swift ├── 28081-swift-inflightdiagnostic.swift ├── 28082-bool.swift ├── 28083-swift-enumtype-get.swift ├── 28084-swift-modulefile-loadallmembers.swift ├── 28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift ├── 28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift ├── 28087-swift-genericsignature-profile.swift ├── 28088-swift-nominaltypedecl-markinvalidgenericsignature.swift ├── 28089-extractsimplefield.swift ├── 28090-bool.swift ├── 28091-swift-diagnosticengine-flushactivediagnostic.swift ├── 28092-swift-parser-parseexpridentifier.swift ├── 28093-swift-archetypetype-getnew.swift ├── 28094-swift-parser-parsetypedpattern.swift ├── 28095-swift-parser-parsedeclstruct.swift ├── 28096-swift-parser-parsedecl.swift ├── 28097-swift-astprinter-printname.swift ├── 28098-swift-constraints-constraintsystem-performmemberlookup.swift ├── 28099-swift-conformancelookuptable-updatelookuptable.swift ├── 28100-swift-tupletype-get.swift ├── 28101-swift-constraints-constraint-create.swift ├── 28102-swift-parser-parseidentifier.swift ├── 28103-swift-parser-parsetoken.swift ├── 28104-void.swift ├── 28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 28106-swift-astcontext-setrawcomment.swift ├── 28107-swift-typechecker-checkconformance.swift ├── 28108-swift-genericsignature-genericsignature.swift ├── 28109-swift-constraints-constraintgraph-removeconstraint.swift ├── 28110-swift-typechecker-resolvetypeincontext.swift ├── 28111-swift-modulefile-readnormalconformance.swift ├── 28112-no-stacktrace.swift ├── 28113-swift-constraints-constraintgraph-gatherconstraints.swift ├── 28114-swift-tuplepattern-create.swift ├── 28115-swift-patternbindingdecl-create.swift ├── 28116-swift-parser-skipsingle.swift ├── 28117-resolveidenttypecomponent.swift ├── 28118-resolveidenttypecomponent.swift ├── 28119-void.swift ├── 28120-swift-unqualifiedlookup-unqualifiedlookup.swift ├── 28121-swift-typechecker-coercepatterntotype.swift ├── 28122-swift-inflightdiagnostic.swift ├── 28123-swift-constraints-constraintsystem-matchtypes.swift ├── 28124-swift-typevisitor.swift ├── 28125-swift-constraints-constraint-createbindoverload.swift ├── 28126-swift-getbuiltinvaluedecl.swift ├── 28127-swift-typebase-getmembersubstitutions.swift ├── 28128-swift-parser-parseidentifier.swift ├── 28129-no-stacktrace.swift ├── 28130-swift-constraints-constraintsystem-solverscope-solverscope.swift ├── 28131-void.swift ├── 28132-swift-namelookup-findlocalval-visitifstmt.swift ├── 28133-swift-parser-parsedeclenum.swift ├── 28134-swift-typebase-getmembersubstitutions.swift ├── 28135-swift-parser-parseexprlist.swift ├── 28136-swift-valuedecl-getinterfacetype.swift ├── 28137-swift-identtyperepr-create.swift ├── 28138-swift-constraints-constraintsystem-addoverloadset.swift ├── 28139-swift-classdecl-findoverridingdecl.swift ├── 28140-swift-typedecl-getdeclaredinterfacetype.swift ├── 28141-swift-typechecker-addimplicitconstructors.swift ├── 28142-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 28143-llvm-foldingset-swift-structtype-computenodehash.swift ├── 28144-swift-typechecker-substituteinputsugartypeforresult.swift ├── 28145-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift ├── 28147-swift-mangle-mangler-mangledefaultargumententity.swift ├── 28148-swift-constraints-constraintsystem-getconstraintlocator.swift ├── 28149-addcurriedselftype.swift ├── 28150-swift-astcontext-loadextensions.swift ├── 28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift ├── 28152-swift-conformancelookuptable-lookupconformance.swift ├── 28153-swift-normalprotocolconformance-setwitness.swift ├── 28154-swift-genericsignature-get.swift ├── 28155-swift-typechecker-validategenericfuncsignature.swift ├── 28156-swift-typechecker-lookupunqualified.swift ├── 28157-swift-constraints-constraintsystem-solverstate-solverstate.swift ├── 28158-swift-parser-diagnose.swift ├── 28159-swift-clangimporter-lookupvalue.swift ├── 28160-swift-inflightdiagnostic.swift ├── 28161-swift-constraints-constraintsystem-solvesingle.swift ├── 28162-swift-astcontext-addedexternaldecl.swift ├── 28163-swift-astcontext-getoptionaldecl.swift ├── 28164-swift-typebase-getdesugaredtype.swift ├── 28165-swift-archetypetype-getnestedtype.swift ├── 28166-swift-parser-parsedecl.swift ├── 28167-swift-generictypeparamtype-get.swift ├── 28168-bool.swift ├── 28169-swift-parser-parsestmtreturn.swift ├── 28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift ├── 28172-swift-parser-parsedeclstruct.swift ├── 28173-swift-typebase-isspecialized.swift ├── 28174-swift-constraints-constraintsystem-simplify.swift ├── 28175-swift-parser-parsedeclextension.swift ├── 28176-swift-parser-parsegenericparameters.swift ├── 28177-swift-constraints-solution-coercetotype.swift ├── 28178-swift-astcontext-getprotocol.swift ├── 28179-void.swift ├── 28180-rawrepresentable-extension-with-initializer.swift ├── 28182-anonymous-namespace-favorcalloverloads.swift ├── 28183-swift-typebase-isequal.swift ├── 28184-swift-constraints-constraintsystem-gettypeofmemberreference.swift ├── 28185-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift ├── 28186-swift-silwitnessvisitor-visitprotocoldecl.swift ├── 28187-llvm-foldingset-swift-constraints-constraintlocator.swift ├── 28189-swift-valuedecl-settype.swift ├── 28191-swift-typebase-getcanonicaltype.swift ├── 28192-swift-genericfunctiontype-get.swift ├── 28193-swift-typechecker-lookupmembertype.swift ├── 28194-swift-abstractstoragedecl-isgettermutating.swift ├── 28195-swift-constraints-constraintsystem-resolveoverload.swift ├── 28196-swift-constraints-constraintgraph-addconstraint.swift ├── 28197-swift-typebase-getdesugaredtype.swift ├── 28198-swift-typerepr-walk.swift ├── 28199-swift-constraints-constraintsystem-performmemberlookup.swift ├── 28200-swift-typebase-getdesugaredtype.swift ├── 28201-swift-typechecker-resolvetypewitness.swift ├── 28202-swift-typechecker-applygenericarguments.swift ├── 28203-swift-typebase-getdesugaredtype.swift ├── 28205-swift-typechecker-checkgenericarguments.swift ├── 28206-swift-typechecker-validatedecl.swift ├── 28207-swift-dependentgenerictyperesolver-resolveselfassociatedtype.swift ├── 28209-swift-protocoldecl-requiresclassslow.swift ├── 28212-swift-typechecker-resolvetypeincontext.swift ├── 28213-swift-expr-walk.swift ├── 28216-swift-expr-propagatelvalueaccesskind.swift ├── 28217-swift-diagnosticengine-emitdiagnostic.swift ├── 28218-swift-valuedecl-settype.swift ├── 28219-swift-lvaluetype-get.swift ├── 28220-swift-lvaluetype-get.swift ├── 28221-swift-typebase-getmembersubstitutions.swift ├── 28223-swift-type-transform.swift ├── 28224-swift-genericfunctiontype-get.swift ├── 28225-swift-typechecker-checkconformance.swift ├── 28227-swift-typechecker-gettypeofrvalue.swift ├── 28229-swift-valuedecl-getinterfacetype.swift ├── 28231-swift-constraints-constraintsystem-solvesimplified.swift ├── 28232-swift-typechecker-typecheckfunctionbodyuntil.swift ├── 28233-swift-typebase-getmembersubstitutions.swift ├── 28235-swift-archetypebuilder-addsametyperequirementtoconcrete.swift ├── 28236-swift-typebase-getmembersubstitutions.swift ├── 28237-swift-archetypebuilder-addgenericparameter.swift ├── 28239-swift-declcontext-lookupqualified.swift ├── 28240-swift-archetypebuilder-addrequirement.swift ├── 28241-swift-valuedecl-isaccessiblefrom.swift ├── 28242-swift-constraints-constraintsystem-simplify.swift ├── 28243-swift-typebase-getcanonicaltype.swift ├── 28244-swift-valuedecl-isinstancemember.swift ├── 28245-swift-dependentgenerictyperesolver-resolveselfassociatedtype.swift ├── 28246-swift-expr-propagatelvalueaccesskind.swift ├── 28247-swift-constraints-constraintsystem-solverscope-solverscope.swift ├── 28248-swift-dynamicselftype-get.swift ├── 28249-swift-typechecker-validategenericfuncsignature.swift ├── 28250-swift-typechecker-typecheckdecl.swift ├── 28251-swift-typechecker-addimplicitconstructors.swift ├── 28253-swift-constraints-constraintsystem-matchdeepequalitytypes.swift ├── 28254-swift-enumelementdecl-getargumentinterfacetype.swift ├── 28258-swift-specializedprotocolconformance-gettypewitnesssubstanddecl.swift ├── 28259-swift-typechecker-validatedecl.swift ├── 28260-swift-constraints-constraintgraphnode-getmembertype.swift ├── 28261-swift-iterativetypechecker-satisfy.swift ├── 28262-swift-typechecker-applyunboundgenericarguments.swift ├── 28263-swift-typechecker-validatedecl.swift ├── 28264-swift-valuedecl-getinterfacetype.swift ├── 28265-swift-expr-walk.swift ├── 28266-swift-moduledecl-lookupprefixoperator.swift ├── 28267-swift-typechecker-checkconformance.swift ├── 28268-swift-type-transform.swift ├── 28269-swift-expr-walk.swift ├── 28270-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28271-swift-archetypebuilder-getallarchetypes.swift ├── 28272-swift-expr-walk.swift ├── 28274-swift-valuedecl-isinstancemember.swift ├── 28275-swift-typebase-getsuperclass.swift ├── 28276-swift-typechecker-computedefaultaccessibility.swift ├── 28277-swift-archetypebuilder-getgenericsignature.swift ├── 28278-swift-archetypebuilder-getgenericsignature.swift ├── 28279-swift-archetypebuilder-potentialarchetype-getnestedtype.swift ├── 28280-swift-typechecker-resolveidentifiertype.swift ├── 28281-swift-typechecker-resolvewitness.swift ├── 28282-swift-constraints-solution-coercetotype.swift ├── 28283-swift-archetypebuilder-finalize.swift ├── 28284-swift-cantype-isreferencetypeimpl.swift ├── 28285-swift-typechecker-typecheckpattern.swift ├── 28286-swift-typechecker-applyunboundgenericarguments.swift ├── 28287-swift-type-transform.swift ├── 28288-swift-genericparamlist-getsubstitutionmap.swift ├── 28289-swift-type-transform.swift ├── 28290-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28291-swift-constraints-constraintsystem-comparesolutions.swift ├── 28292-swift-valuedecl-settype.swift ├── 28293-irgensilfunction-visitfullapplysite.swift ├── 28294-swift-archetypebuilder-addsuperclassrequirement.swift ├── 28295-swift-namelookup-lookupvisibledeclsinmodule.swift ├── 28296-swift-genericsignature-getsubstitutionmap.swift ├── 28297-swift-lookupvisibledecls.swift ├── 28298-swift-namealiastype-getsinglydesugaredtype.swift ├── 28299-swift-lookupvisibledecls.swift ├── 28300-swift-type-transform.swift ├── 28301-swift-constraints-constraintsystem-simplifyconstructionconstraint.swift ├── 28302-swift-paramdecl-createunboundself.swift ├── 28306-swift-lookupvisibledecls.swift ├── 28309-swift-typechecker-addimplicitconstructors.swift ├── 28315-swift-declcontext-iscascadingcontextforlookup.swift ├── 28316-swift-typechecker-checkgenericparamlist.swift ├── 28318-swift-constraints-constraintgraphnode-getmembertype.swift ├── 28319-swift-typechecker-checkconformance.swift ├── 28320-swift-archetypebuilder-enumeraterequirements.swift ├── 28321-swift-constraints-constraintsystem-resolveoverload.swift ├── 28322-swift-typechecker-resolvetypeincontext.swift ├── 28323-swift-typebase-getstring.swift ├── 28324-swift-diagnosticengine-emitdiagnostic.swift ├── 28325-swift-typebase-getcanonicaltype.swift ├── 28326-swift-typebase-getmembersubstitutions.swift ├── 28327-swift-expr-walk.swift ├── 28328-swift-typebase-getdesugaredtype.swift ├── 28329-swift-archetypebuilder-potentialarchetype-gettype.swift ├── 28330-swift-genericparamlist-getsubstitutionmap.swift ├── 28331-swift-createdesignatedinitoverride.swift ├── 28332-swift-archetypebuilder-getgenericsignature.swift ├── 28333-swift-typedecl-getdeclaredtype.swift ├── 28334-swift-typechecker-resolvetypewitness.swift ├── 28335-swift-type-print.swift ├── 28336-swift-archetypebuilder-addrequirement.swift ├── 28337-swift-typebase-getcanonicaltype.swift ├── 28338-swift-genericsignature-getsubstitutionmap.swift ├── 28339-swift-typechecker-addimplicitconstructors.swift ├── 28340-swift-type-getstring.swift ├── 28341-swift-typechecker-typecheckdecl.swift ├── 28342-getpointerelementtype-is-not-storagetype.swift ├── 28343-swift-genericfunctiontype-get.swift ├── 28344-swift-type-transform.swift ├── 28345-swift-iterativetypechecker-processtypechecksuperclass.swift ├── 28346-swift-typebase-getdesugaredtype.swift ├── 28347-swift-typechecker-checkinheritanceclause.swift ├── 28348-swift-typechecker-validatedecl.swift ├── 28349-swift-typebase-gatherallsubstitutions.swift ├── 28350-swift-typechecker-performtypocorrection.swift ├── 28351-swift-functiontype-get.swift ├── 28352-swift-typechecker-configureinterfacetype.swift ├── 28353-swift-removeoverriddendecls.swift ├── 28354-swift-conformancelookuptable-lookupconformances.swift ├── 28355-swift-genericsignature-getsubstitutionmap.swift ├── 28356-swift-typechecker-resolvetypewitness.swift ├── 28357-swift-iterativetypechecker-processtypechecksuperclass.swift ├── 28358-swift-typechecker-validatedecl.swift ├── 28359-swift-constraints-constraintsystem-addtypevariableconstraintstoworklist.swift ├── 28360-swift-archetypebuilder-maptypeoutofcontext.swift ├── 28361-swift-archetypebuilder-maptypeintocontext.swift ├── 28362-swift-constraints-constraintgraphnode-getadjacency.swift ├── 28363-swift-expr-walk.swift ├── 28364-swift-typechecker-addimplicitconstructors.swift ├── 28365-swift-constraints-constraintgraphnode-getmembertype.swift ├── 28366-swift-archetypebuilder-finalize.swift ├── 28367-swift-declcontext-isgenericcontext.swift ├── 28368-swift-expr-propagatelvalueaccesskind.swift ├── 28369-swift-decl-walk.swift ├── 28370-swift-decomposeparamtype.swift ├── 28371-swift-genericparamlist-getsubstitutionmap.swift ├── 28372-swift-printoptions-setarchetypeanddynamicselftransform.swift ├── 28373-swift-printoptions-setarchetypeselftransform.swift ├── 28374-swift-typechecker-resolvewitness.swift ├── 28375-swift-typechecker-lookupmembertype.swift ├── 28376-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28377-swift-expr-walk.swift ├── 28378-swift-typechecker-resolvewitness.swift ├── 28379-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28380-swift-type-transform.swift ├── 28381-swift-archetypebuilder-addrequirement.swift ├── 28382-swift-archetypebuilder-maptypeoutofcontext.swift ├── 28383-swift-constraints-constraintgraphnode-getmembertype.swift ├── 28385-swift-constraints-constraintgraph-addconstraint.swift ├── 28386-swift-typebase-getdesugaredtype.swift ├── 28387-swift-typebase-gatherallsubstitutions.swift ├── 28388-swift-typebase-getcanonicaltype.swift ├── 28389-swift-lookupvisibledecls.swift ├── 28390-swift-expr-walk.swift ├── 28391-swift-typechecker-validatedecl.swift ├── 28392-swift-dependentgenerictyperesolver-resolveselfassociatedtype.swift ├── 28393-swift-type-transform.swift ├── 28394-swift-typechecker-checkconformance.swift ├── 28395-swift-expr-propagatelvalueaccesskind.swift ├── 28396-swift-lowering-silgenfunction-emitclosurevalue.swift ├── 28397-getselftypeforcontainer.swift ├── 28398-swift-archetypebuilder-getgenericsignature.swift ├── 28399-getpointerelementtype-is-not-storagetype.swift ├── 28400-swift-nominaltypedecl-prepareextensions.swift ├── 28401-swift-boundgenerictype-get.swift ├── 28402-swift-typebase-getcanonicaltype.swift ├── 28403-swift-genericsignature-getsubstitutionmap.swift ├── 28405-swift-constraints-constraintsystem-resolveoverload.swift ├── 28406-swift-decomposeparamtype.swift ├── 28407-swift-genericsignature-getsubstitutionmap.swift ├── 28408-swift-typechecker-checkinheritanceclause.swift ├── 28409-swift-archetypebuilder-maptypeintocontext.swift ├── 28410-swift-typechecker-typecheckdecl.swift ├── 28411-swift-typechecker-resolveidentifiertype.swift ├── 28412-swift-sourcefile-lookupcache-lookupclassmembers.swift ├── 28413-swift-typebase-getcanonicaltype.swift ├── 28414-swift-typechecker-resolvewitness.swift ├── 28415-swift-iterativetypechecker-processtypechecksuperclass.swift ├── 28416-swift-typechecker-resolveidentifiertype.swift ├── 28417-swift-genericsignature-getsubstitutions.swift ├── 28418-swift-typechecker-validatedecl.swift ├── 28419-swift-silmodule-constructsil.swift ├── 28420-swift-lowering-emitconditionalcheckedcast.swift ├── 28421-swift-constraints-constraintsystem-diagnosefailureforexpr.swift ├── 28422-swift-genericfunctiontype-get.swift ├── 28423-swift-typechecker-validatedecl.swift ├── 28424-swift-valuedecl-getformalaccessscope.swift ├── 28425-swift-constraints-solution-convertbooleantypetobuiltini.swift ├── 28426-swift-expr-walk.swift ├── 28427-swift-lexer-lexstringliteral.swift ├── 28428-swift-typebase-gatherallsubstitutions.swift ├── 28429-swift-decl-print.swift ├── 28430-swift-lexer-lexoperatoridentifier.swift ├── 28431-swift-lexer-lexoperatoridentifier.swift ├── 28432-swift-typechecker-validatedecl.swift ├── 28433-swift-typechecker-typecheckdecl.swift ├── 28434-swift-type-transform.swift ├── 28435-swift-genericenvironment-maptypeintocontext.swift ├── 28436-swift-typechecker-typecheckdecl.swift ├── 28437-swift-typechecker-validatedecl.swift ├── 28438-swift-typebase-getcanonicaltype.swift ├── 28439-swift-type-transform.swift ├── 28440-swift-typechecker-resolveidentifiertype.swift ├── 28441-swift-typerepr-walk.swift ├── 28442-swift-typebase-getrvaluetype.swift ├── 28444-resolver-unable-to-resolve-type-witness-failed.swift ├── 28445-gp-getouterparameters-proto-getdeclcontext-getgenericparamsofcontext-failed.swift ├── 28446-activediagnostic-already-have-an-active-diagnostic-failed.swift ├── 28447-result-case-not-implemented-failed.swift ├── 28448-dist-nested-type-should-have-matched-associated-type-failed.swift ├── 28449-impl-getgraphindex-typevariables-size-out-of-bounds-index-failed.swift ├── 28450-underlyingty-gettype-isnull-getting-invalid-underlying-type-failed.swift ├── 28451-boundgeneric-getgenericargs-size-genericsig-getinnermostgenericparams-size-failed.swift ├── 28452-this-genericenv-already-have-generic-context-failed.swift ├── 28453-found-interfacetoarchetypemap-end-missing-generic-parameter-failed.swift ├── 28454-hasval-failed.swift ├── 28455-type-hastypeparameter-type-haserror-not-fully-substituted-failed.swift ├── 28456-unreachable-executed-at-swift-lib-ast-module-cpp-614.swift ├── 28457-unreachable-executed-at-swift-include-swift-ast-cantypevisitor-h-41.swift ├── 28458-resultreplacement-istypeparameter-cant-be-dependent.swift ├── 28459-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28460-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28461-child-source-range-not-contained-within-its-parent-if-stmt.swift ├── 28462-segfault-0xcdc361-0xd051ef-0xcdc361-0xd051ef.swift ├── 28463-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28464-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28465-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28466-segfault-0xc27624-0xc2741f-0xc25bb5-0xbcdbbb.swift ├── 28467-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28468-segfault-0xd09050-0xd08dfd-0xbe9d76-0xbeb154.swift ├── 28469-segfault-0x4674de-0x464be6.swift ├── 28470-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28471-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28472-swift-modulefile-getdecl-llvm-pointerembeddedint-unsigned-int-31-llvm-optional-s.swift ├── 28473-typevariables-impl-getgraphindex-typevar-type-variable-mismatch.swift ├── 28474-unreachable-executed-at-swift-lib-ast-type-cpp-1325.swift ├── 28475-swift-typechecker-validatedecl-swift-valuedecl-bool.swift ├── 28476-anonymous-namespace-verifier-walktodeclpost-swift-decl.swift ├── 28477-anonymous-namespace-declchecker-visitconstructordecl-swift-constructordecl.swift ├── 28478-swift-typebase-getdesugaredtype.swift ├── 28479-unreachable-executed-at-swift-include-swift-ast-typevisitor-h-39.swift ├── 28480-unreachable-executed-at-swift-lib-sema-csdiag-cpp-6261.swift ├── 28481-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28482-hasaccessibility-accessibility-not-computed-yet.swift ├── 28483-unreachable-executed-at-swift-lib-ast-type-cpp-1117.swift ├── 28484-isa-x-val-cast-ty-argument-of-incompatible-type.swift ├── 28485-swift-dependentmembertype-getname-const.swift ├── 28486-this-genericenv-already-have-generic-context.swift ├── 28487-parent-parent-is-nominaltype-parent-is-boundgenerictype-parent-is-unboundgeneric.swift ├── 28488-conforms-replacement-haserror-isopenedanyobject-replacement-replacement-is-gener.swift ├── 28489-this-genericenv-already-have-generic-context.swift ├── 28490-result-case-not-implemented.swift ├── 28491-result-case-not-implemented.swift ├── 28492-isa-abstractfunctiondecl-dc-isa-fileunit-dc-unknown-declcontext.swift ├── 28493-resolveidenttypecomponent-swift-typechecker-swift-declcontext-llvm-arrayref-swif.swift ├── 28494-conforms-type-does-not-conform-to-protocol.swift ├── 28495-ed-getdeclcontext-ismodulescopecontext-non-top-level-extensions-make-private-fil.swift ├── 28496-args-size-fnref-getnumargumentsforfullapply-partial-application-was-throwing.swift ├── 28497-unreachable-executed-at-swift-lib-ast-type-cpp-294.swift ├── 28498-anonymous-namespace-verifier-walktostmtpost-swift-stmt.swift ├── 28499-start-isvalid-end-isvalid-start-and-end-should-either-both-be-valid-or-both-be-i.swift ├── 28500-unreachable-executed-at-swift-lib-sema-typecheckdecl-cpp-1687.swift ├── 28501-haderror-m-is-sourcefile-m-get-sourcefile-aststage-sourcefile-typechecked-overlo.swift ├── 28502-tok-isnot-tok-eof-lexing-past-eof.swift ├── 28503-iscomplete-missing-inherited-mapping-in-conformance.swift ├── 28504-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28505-failed-call-arguments-did-not-match-up.swift ├── 28506-swift-iterativetypechecker-issatisfied-swift-typecheckrequest.swift ├── 28507-swift-typerepr-getsourcerange-const.swift ├── 28508-unreachable-executed-at-swift-lib-sema-csgen-cpp-2656.swift ├── 28509-allowoverwrite-e-haslvalueaccesskind-l-value-access-kind-has-already-been-set.swift ├── 28510-size-t-llvm-sys-locale-columnwidth-i-gettext-i-gettext-size.swift ├── 28511-swift-astvisitor-anonymous-namespace-attributechecker-void-void-void-void-void-v.swift ├── 28512-anonymous-namespace-traversal-visit-swift-typerepr.swift ├── 28513-swift-modulefile-getdecl-llvm-pointerembeddedint-unsigned-int-31-llvm-optional-s.swift ├── 28514-assign-isfolded-already-folded-assign-expr-in-sequence.swift ├── 28515-getmutableaddressor.swift ├── 28516-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28517-getstoragekind-stored-storagekind-already-set.swift ├── 28518-anonymous-namespace-verifier-walktoexprpost-swift-expr.swift ├── 28519-conformance-must-conform-to-literal-protocol.swift ├── 28520-args-size-fnref-getnumargumentsforfullapply-partial-application-was-throwing.swift ├── 28521-hastype-declaration-has-no-type-set-yet.swift ├── 28522-anonymous-namespace-verifier-walktostmtpost-swift-stmt.swift ├── 28523-child-source-range-not-contained-within-its-parent-sequence-expr-type-null.swift ├── 28524-swift-iterativetypechecker-issatisfied-swift-typecheckrequest.swift ├── 28525-tok-isany-tok-identifier-tok-kw-self-tok-kw-self-tok-kw-throws.swift ├── 28526-objectty-is-lvaluetype-objectty-is-inouttype-cannot-have-inout-or-lvalue-wrapped.swift ├── 28527-e-gettype-isassignabletype-setting-access-kind-on-non-l-value.swift ├── 28528-replacement-ismaterializable-cannot-substitute-with-a-non-materializable-type.swift ├── 28529-arrow-isfolded-already-folded-expr-in-sequence.swift ├── 28530-dc-closure-getparent-decl-context-isnt-correct.swift ├── 28531-swift-modulefile-getdecl-llvm-pointerembeddedint-unsigned-int-31-llvm-optional-s.swift ├── 28532-unreachable-executed-at-swift-lib-ast-type-cpp-174.swift ├── 28533-swift-unqualifiedlookup-unqualifiedlookup-swift-declname-swift-declcontext-swift.swift ├── 28534-swift-unqualifiedlookup-unqualifiedlookup-swift-declname-swift-declcontext-swift.swift ├── 28535-unreachable-executed-at-swift-lib-parse-parsedecl-cpp-610.swift ├── 28536-swift-namelookup-lookupinmodule-swift-moduledecl-llvm-arrayref-std-pair-swift-id.swift ├── 28537-result-case-not-implemented.swift ├── 28538-swift-removeshadoweddecls-llvm-smallvectorimpl-swift-valuedecl-swift-moduledecl-.swift ├── 28539-swift-unqualifiedlookup-unqualifiedlookup-swift-declname-swift-declcontext-swift.swift ├── 28540-swift-namelookup-findlocalval-visitguardstmt-swift-guardstmt.swift ├── 28541-anonymous-namespace-verifier-walktodeclpost-swift-decl.swift ├── 28542-swift-genericsignature-getsubstitutionmap-llvm-arrayref-swift-substitution-swift.swift ├── 28543-unreachable-executed-at-swift-include-swift-ast-typevisitor-h-39.swift ├── 28544-swift-type-transform-llvm-function-ref-swift-type-swift-type-const.swift ├── 28545-swift-archetypebuilder-potentialarchetype-gettype-swift-archetypebuilder.swift ├── 28546-anonymous-namespace-verifier-walktodeclpost-swift-decl.swift ├── 28547-env-dependent-type-in-non-generic-context.swift ├── 28548-cantype-hastypeparameter-already-have-an-interface-type.swift ├── 28549-swift-typebase-getdesugaredtype.swift ├── 28550-unreachable-executed-at-swift-include-swift-ast-typevisitor-h-39.swift ├── 28551-anonymous-namespace-verifier-walktostmtpost-swift-stmt.swift ├── 28552-as-isfolded-already-folded-as-expr-in-sequence.swift ├── 28553-resolver-unable-to-resolve-type-witness.swift ├── 28554-reftype-hastypeparameter-cannot-have-a-dependent-type-here.swift ├── 28555-unreachable-executed-at-swift-lib-ast-type-cpp-1318.swift ├── 28556-val-isa-used-on-a-null-pointer.swift ├── 28557-swift-astvisitor-anonymous-namespace-printtyperepr-void-void-void-void-void-void.swift ├── 28558-known-typewitnesses-end-didnt-resolve-witness.swift ├── 28559-result-case-not-implemented.swift ├── 28560-unreachable-executed-at-swift-lib-ast-type-cpp-1104.swift ├── 28561-input-hastypevariable-output-hastypevariable.swift ├── 28562-swift-typebase-getcanonicaltype.swift ├── 28563-swift-modulefile-lookupvalue-swift-declname-llvm-smallvectorimpl-swift-valuedecl.swift ├── 28564-swift-nominaltypedecl-getdeclaredtype-const.swift ├── 28565-swift-constraints-constraintsystem-removeinactiveconstraint-swift-constraints-co.swift ├── 28566-env-dependent-type-in-non-generic-context.swift ├── 28567-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28568-result-case-not-implemented.swift ├── 28569-swift-declcontext-getastypeortypeextensioncontext-const.swift ├── 28570-labelinfo-tryloc-isvalid-unlabeled-directives-should-be-handled-earlier.swift ├── 28571-hasinterfacetype-no-interface-type-was-set.swift ├── 28572-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28573-type-hasarchetype-archetype-in-interface-type.swift ├── 28574-iscomplete-isinvalid-resolver-did-not-resolve-requirement.swift ├── 28575-unreachable-executed-at-swift-lib-sema-csapply-cpp-5647.swift ├── 28576-anonymous-namespace-findcapturedvars-checktype-swift-type-swift-sourceloc.swift ├── 28577-isa-x-val-cast-ty-argument-of-incompatible-type.swift ├── 28578-result-case-not-implemented.swift ├── 28579-unreachable-executed-at-swift-lib-sema-csdiag-cpp-5054.swift ├── 28580-hastype-e-expected-type-to-have-been-set.swift ├── 28581-anonymous-namespace-findcapturedvars-checktype-swift-type-swift-sourceloc.swift ├── 28582-result-case-not-implemented.swift ├── 28583-unreachable-executed-at-swift-lib-ast-type-cpp-1098.swift ├── 28584-loc-isvalid.swift ├── 28585-anonymous-namespace-verifier-walktostmtpost-swift-stmt.swift ├── 28586-objectty-is-lvaluetype-objectty-is-inouttype-cannot-have-inout-or-lvalue-wrapped.swift ├── 28587-child-source-range-not-contained-within-its-parent-sequence-expr-type-null.swift ├── 28588-unreachable-executed-at-swift-lib-sema-csapply-cpp-5770.swift ├── 28589-swift-type-transform-llvm-function-ref-swift-type-swift-type-const.swift ├── 28590-exprtypes-e-isequal-e-gettype-expected-type-in-map-to-be-the-same-type-in-expres.swift ├── 28591-swift-constraints-constraintsystem-solvesimplified-llvm-smallvectorimpl-swift-co.swift ├── 28592-objectty-is-lvaluetype-objectty-is-inouttype-cannot-have-inout-or-lvalue-wrapped.swift ├── 28593-unreachable-executed-at-swift-lib-ast-type-cpp-3771.swift ├── 28594-anonymous-namespace-verifier-verifychecked-swift-vardecl.swift ├── 28595-typeincontext-isnull-no-contextual-type-set-yet.swift ├── 28596-unreachable-executed-at-swift-lib-sema-csapply-cpp-5466.swift ├── 28597-first-char-of-sub-string-may-not-be-a-digit.swift ├── 28598-issatisfied-request.swift ├── 28599-false-should-have-found-context-by-now.swift ├── 28600-isinsilmode-sil-should-only-be-a-keyword-in-sil-mode.swift ├── 28601-getkind-exprkind-binary-isa-tupleexpr-e-binaryexprs-must-have-a-tupleexpr-as-the.swift ├── 28602-c1-size-c2-size.swift ├── 28603-argumentlabels-size-1.swift ├── 28604-isinheritedprotocolsvalid.swift ├── 28605-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28606-swift-typebase-getcanonicaltype.swift ├── 28607-hasinterfacetype-no-interface-type-was-set.swift ├── 28608-swift-typebase-getcanonicaltype.swift ├── 28609-unreachable-executed-at-swift-lib-sema-csapply-cpp-5859.swift ├── 28610-elements-size-1-even-number-of-elements-in-sequence.swift ├── 28611-isa-x-val-cast-ty-argument-of-incompatible-type.swift ├── 28612-val-isa-used-on-a-null-pointer.swift ├── 28613-matchcanfail-failed-call-arguments-did-not-match-up.swift ├── 28614-args-size-fnref-getnumargumentsforfullapply-partial-application-was-throwing.swift ├── 28615-swift-constraints-constraintgraph-bindtypevariable-swift-typevariabletype-swift.swift ├── 28616-swift-parser-parseexprsequence-swift-diag-bool-bool.swift ├── 28617-child-source-range-not-contained-within-its-parent-guard-stmt.swift ├── 28618-unreachable-executed-at-swift-include-swift-ast-exprnodes-def-78.swift ├── 28619-basety-islvaluetype-basety-is-anymetatypetype.swift ├── 28620-type-mayhavemembers.swift ├── 28621-typevariables-impl-getgraphindex-typevar-type-variable-mismatch.swift ├── 28622-vd-getdeclcontext-ismodulescopecontext.swift ├── 28623-swift-tupletype-get-llvm-arrayref-swift-tupletypeelt-swift-astcontext-const.swift ├── 28624-swift-type-transform-llvm-function-ref-swift-type-swift-type-const.swift ├── 28625-destoptionals-size-destextraoptionals-srcoptionals-size.swift ├── 28626-objectty-is-lvaluetype-objectty-is-inouttype-cannot-have-inout-or-lvalue-wrapped.swift ├── 28627-unreachable-executed-at-swift-include-swift-ast-exprnodes-def-79.swift ├── 28628-gettype-e-isassignabletype-setting-access-kind-on-non-l-value.swift ├── 28629-type-hastypeparameter-already-have-an-interface-type.swift ├── 28630-anonymous-namespace-verifier-walktostmtpost-swift-stmt.swift ├── 28631-unreachable-executed-at-swift-lib-ast-type-cpp-1130.swift ├── 28632-unreachable-executed-at-swift-lib-ast-type-cpp-1130.swift ├── 28633-typevariables-impl-getgraphindex-typevar-type-variable-mismatch.swift ├── 28634-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28635-swift-tupletype-get-llvm-arrayref-swift-tupletypeelt-swift-astcontext-const.swift ├── 28636-base-base-hastypeparameter.swift ├── 28637-swift-tupletype-get-llvm-arrayref-swift-tupletypeelt-swift-astcontext-const.swift ├── 28638-anonymous-namespace-verifier-checksametype-swift-type-swift-type-char-const.swift ├── 28639-unreachable-executed-at-swift-lib-ast-type-cpp-1337.swift ├── 28640-swift-tupletype-get-llvm-arrayref-swift-tupletypeelt-swift-astcontext-const.swift ├── 28641-result-case-not-implemented.swift ├── 28642-swift-optionaltype-get-swift-type.swift ├── 28643-swift-tupletype-get-llvm-arrayref-swift-tupletypeelt-swift-astcontext-const.swift ├── 28644-swift-functiontype-get-swift-type-swift-type-swift-anyfunctiontype-extinfo-const.swift ├── 28645-swift-type-transform-llvm-function-ref-swift-type-swift-type-const.swift ├── 28646-swift-lvaluetype-get-swift-type.swift ├── 28647-unreachable-executed-at-swift-include-swift-ast-typevisitor-h-39.swift ├── 28648-modifierarguments-empty-foundpipe-index-beyond-bounds-in-select-modifier.swift ├── 28649-unreachable-executed-at-swift-lib-ast-type-cpp-1344.swift ├── 28650-unreachable-executed-at-swift-lib-sema-typecheckstmt-cpp-1031.swift ├── 28651-swift-cleanupillformedexpressionraii-doit-swift-expr-swift-astcontext-cleanupill.swift ├── 28652-anonymous-namespace-verifier-verifychecked-swift-type-llvm-smallptrset-swift-arc.swift ├── 28653-child-source-range-not-contained-within-its-parent.swift ├── 28654-hastype-e-expected-type-to-have-been-set.swift ├── 28655-base-base-hastypeparameter.swift ├── 28656-unreachable-executed-at-swift-lib-ast-type-cpp-1137.swift ├── 28657-unreachable-executed-at-swift-lib-ast-type-cpp-1344.swift ├── 28658-result-case-not-implemented.swift ├── 28659-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28660-false-encountered-error-in-diagnostic-text.swift ├── 28661-swift-typebase-getcanonicaltype.swift ├── 28662-isa-x-val-cast-ty-argument-of-incompatible-type.swift ├── 28663-impl-getgraphindex-typevariables-size-out-of-bounds-index.swift ├── 28664-typevariables-impl-getgraphindex-typevar-type-variable-mismatch.swift ├── 28665-result-case-not-implemented.swift ├── 28666-conformingreplacementtype-is-substitutabletype-conformingreplacementtype-is-depe.swift ├── 28667-result-case-not-implemented.swift ├── 28668-activediagnostic-already-have-an-active-diagnostic.swift ├── 28669-basety-islvaluetype-basety-is-anymetatypetype.swift ├── 28670-reftype-hastypeparameter-cannot-have-a-dependent-type-here.swift ├── 28671-index-this-size-invalid-index.swift ├── 28672-result-case-not-implemented.swift ├── 28673-swift-typebase-getcanonicaltype.swift ├── 28674-unreachable-executed-at-swift-lib-sema-csapply-cpp-5856.swift ├── 28675-swift-typebase-getdesugaredtype.swift ├── 28676-anonymous-namespace-findcapturedvars-checktype-swift-type-swift-sourceloc.swift ├── 28676-currentconstraintsolverarena-no-constraint-solver-active.swift ├── 28677-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28678-result-case-not-implemented.swift ├── 28679-swift-typebase-getcanonicaltype.swift ├── 28680-swift-typebase-getdesugaredtype.swift ├── 28681-swift-typebase-getcanonicaltype.swift ├── 28682-swift-lowering-silgenfunction-emitopenexistential.swift ├── 28683-result-case-not-implemented.swift ├── 28684-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28685-unreachable-executed-at-swift-lib-ast-type-cpp-1344.swift ├── 28686-swift-typebase-getcanonicaltype.swift ├── 28687-unreachable-executed-at-swift-lib-ast-type-cpp-1349.swift ├── 28688-unreachable-executed-at-swift-lib-ast-type-cpp-1349.swift ├── 28689-swift-lowering-silgenfunction-emitopenexistential.swift ├── 28690-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28691-result-case-not-implemented.swift ├── 28692-unreachable-executed-at-swift-lib-ast-type-cpp-1349.swift ├── 28693-swift-genericenvironment-queryinterfacetypesubstitutions-operator-swift-substitu.swift ├── 28694-result-case-not-implemented.swift ├── 28695-unreachable-executed-at-swift-lib-ast-type-cpp-1351.swift ├── 28696-swift-typebase-getcanonicaltype.swift ├── 28697-anonymous-namespace-findcapturedvars-checktype-swift-type-swift-sourceloc.swift ├── 28698-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28699-swift-typebase-getcanonicaltype.swift ├── 28700-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28701-false-should-have-found-context-by-now.swift ├── 28702-swift-typebase-getcanonicaltype.swift ├── 28703-swift-typebase-getdesugaredtype.swift ├── 28704-swift-newmangling-astmangler-appendcontext-swift-declcontext-const.swift ├── 28705-swift-typebase-getcanonicaltype.swift ├── 28706-conformance-failed-to-find-pas-conformance-to-known-protocol.swift ├── 28707-false-encountered-error-in-diagnostic-text.swift ├── 28709-unreachable-executed-at-swift-lib-ast-type-cpp-1005.swift ├── 28710-swift-typebase-getdesugaredtype.swift ├── 28711-anonymous-namespace-findcapturedvars-checktype-swift-type-swift-sourceloc.swift ├── 28712-swift-typebase-getcanonicaltype.swift ├── 28713-swift-typebase-getdesugaredtype.swift ├── 28714-result-case-not-implemented.swift ├── 28715-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28716-unreachable-executed-at-swift-lib-ast-type-cpp-1215.swift ├── 28717-result-case-not-implemented.swift ├── 28718-swift-typebase-getcanonicaltype.swift ├── 28719-currentconstraintsolverarena-no-constraint-solver-active.swift ├── 28720-swift-typebase-getcanonicaltype.swift ├── 28721-unreachable-executed-at-swift-lib-ast-astmangler-cpp-451.swift ├── 28722-swift-genericsignaturebuilder-resolvearchetype-swift-type.swift ├── 28723-unreachable-executed-at-swift-lib-sema-csdiag-cpp-4012.swift ├── 28725-gpdecl-getdepth-generictypeparamdecl-invaliddepth-parameter-hasnt-been-validated.swift ├── 28726-nominaltypedecl-hasfixedlayout.swift ├── 28727-objectty-haserror-cannot-have-errortype-wrapped-inside-lvaluetype.swift ├── 28728-d-isbeingvalidated-d-hasvalidsignature.swift ├── 28729-archetype-bad-generic-context-nesting.swift ├── 28730-unreachable-executed-at-swift-lib-ast-astcontext-cpp-1229.swift ├── 28731-genericenv-nullptr-too-much-circularity.swift ├── 28732-type-hasarchetype-not-fully-substituted.swift ├── 28733-parent-parent-is-nominaltype-parent-is-boundgenerictype-parent-is-unboundgeneric.swift ├── 28734-conformingreplacementtype-is-substitutabletype-conformingreplacementtype-is-depe.swift ├── 28735-reftype-hastypeparameter-cannot-have-a-dependent-type-here.swift ├── 28736-anonymous-namespacesilverifier-require.swift ├── 28737-genericenv-nullptr-too-much-circularity.swift ├── 28738-impl-genericparams-empty-key-depth-impl-genericparams-back-getdepth-key-index-im.swift ├── 28739-unreachable-executed-at-swift-lib-ast-type-cpp-229.swift ├── 28740-unreachable-executed-at-swift-lib-ast-astcontext-cpp-1324.swift ├── 28741-anonymous-namespace-verifier-walktodeclpost-swift-decl.swift ├── 28742-swift-type-subst-llvm-function-ref-swift-type-swift-substitutabletype-llvm-funct.swift ├── 28743-swift-typechecker-substmembertypewithbase-swift-moduledecl-swift-typedecl-swift-.swift ├── 28744-swift-genericenvironment-maptypeoutofcontext-swift-genericenvironment-swift-type.swift ├── 28745-ty-getnominalorboundgenericnominal-ty-is-dynamicselftype-ty-isexistentialtype-ty.swift ├── 28746-second-missing-second-type.swift ├── 28748-genericenv-nullptr-too-much-circularity.swift ├── 28749-reftype-hastypeparameter-cannot-have-a-dependent-type-here.swift ├── 28750-false-should-have-found-context-by-now.swift ├── 28751-membertype-missing-type-witness.swift ├── 28752-hasinterfacetype-no-interface-type-was-set.swift ├── 28753-conforms-equivclass-conformsto-end.swift ├── 28754-value-openexistentials-end-didnt-see-this-ove-in-a-containing-openexistentialexp.swift ├── 28755-getkind-requirementkind-layout.swift ├── 28756-isobjc-cannot-get-root-type-of-objc-keypath.swift ├── 28757-conformance-getwitness-requirement-nullptr-getdecl-match-witness-deduced-differe.swift ├── 28758-swift-genericsignaturebuilder-resolvesuperconformance-swift-genericsignaturebuil.swift ├── 28759-activediagnostic-already-have-an-active-diagnostic.swift ├── 28760-dist-0-nested-type-should-have-matched-associated-type.swift ├── 28761-allowoverwrite-e-haslvalueaccesskind-l-value-access-kind-has-already-been-set.swift ├── 28762-valuetype-hasunboundgenerictype-valuetype-hastypeparameter.swift ├── 28763-swift-typebase-getcanonicaltype.swift ├── 28764-swift-protocolconformanceref-llvm-function-ref-swift-protocolconformanceref-swif.swift ├── 28765-inprotocol-isrequirementsignaturecomputed-missing-signature.swift ├── 28766-swift-iterativetypechecker-isqualifiedlookupindeclcontextsatisfied-swift-declcon.swift ├── 28767-ty-getnominalorboundgenericnominal-ty-is-dynamicselftype-ty-isexistentialtype-ty.swift ├── 28768-isactuallycanonicalornull-forming-a-cantype-out-of-a-non-canonical-type.swift ├── 28769-conformance-gettypewitness-assoctype-nullptr-isequal-type-conflicting-type-witne.swift ├── 28770-selfty-isequal-proto-getselfinterfacetype.swift ├── 28771-unreachable-executed-at-swift-include-swift-ast-cantypevisitor-h-41.swift ├── 28772-loc-isvalid-diagnosing-attribute-with-invalid-location.swift ├── 28773-unreachable-executed-at-swift-lib-sema-cssimplify-cpp-4808.swift ├── 28774-swift-genericenvironment-queryinterfacetypesubstitutions-operator-swift-substitu.swift ├── 28775-gpdecl-getdepth-generictypeparamdecl-invaliddepth-parameter-hasnt-been-validated.swift ├── 28776-type-should-have-type-checked-inheritance-clause-by-now.swift ├── 28777-swift-typebase-getcanonicaltype.swift ├── 28778-hasaccessibility-accessibility-not-computed-yet.swift ├── 28779-parent-parent-is-nominaltype-parent-is-boundgenerictype-parent-is-unboundgeneric.swift ├── 28780-hasinterfacetype-no-interface-type-was-set.swift ├── 28782-superclass-superclass-isequal-t-should-have-diagnosed-multiple-superclasses-by-n.swift ├── 28783-hasconformanceinsignature-inprotocol-getrequirementsignature-subjecttype-conform.swift ├── 28784-genericsigorenv-isnull-getgenericsignature-getcanonicalsignature-genericenv-getg.swift ├── 28785-membertype-received-null-dependent-member-type.swift ├── 28786-swift-typebase-getcontextsubstitutions-swift-declcontext-const-swift-genericenvi.swift ├── 28788-conformance-isconcrete-concrete-isexistentialtype.swift ├── 28789-swift-genericsignaturebuilder-addrequirement-swift-requirementrepr-const-swift-g.swift ├── 28790-conformance-getwitness-requirement-nullptr-getdecl-already-have-a-non-optional-w.swift ├── 28791-formprotocolrelativetype-swift-protocoldecl-swift-genericsignaturebuilder-potent.swift ├── 28792-conforms-equivclass-conformsto-end.swift ├── 28793-nestedpabyname-didnt-find-the-associated-type-we-wanted.swift ├── 28794-swift-type-transformrec-llvm-function-ref-llvm-optional-swift-type-swift-typebas.swift ├── 28795-inprotocol-isrequirementsignaturecomputed-missing-signature.swift ├── 28796-result-second.swift ├── 28797-declbits-beingvalidated-ibv.swift ├── 28798-swift-genericenvironment-queryinterfacetypesubstitutions-operator-swift-substitu.swift ├── 28799-swift-type-subst-swift-substitutionmap-const-swift-substoptions-const.swift ├── 28800-unreachable-executed-at-swift-lib-ast-type-cpp-3247.swift ├── 28801-swift-typebase-getcontextsubstitutions-swift-declcontext-const-swift-genericenvi.swift ├── 28802-constrainttype-missing-constraint-type.swift ├── 28803-swift-typebase-getdesugaredtype.swift ├── 28804-second.swift ├── 28806-swift-silmodule-get-or-create-function.swift ├── 28807-parentequiv-conformsto-count-proto-0-no-conformance-requirement.swift ├── 28808-hasval.swift ├── 28809-isdigit-ident-pos-first-char-of-sub-string-may-not-be-a-digit.swift ├── 28810-swift-unqualifiedlookup-unqualifiedlookup-swift-declname-swift-declcontext-swift.swift ├── 28811-gpdecl-getdepth-generictypeparamdecl-invaliddepth-parameter-hasnt-been-validated.swift ├── 28812-getgenericparams.swift ├── 28813-swift-genericsignature-enumeratepairedrequirements-llvm-function-ref-bool-swift-.swift ├── 28814-basety-hasunboundgenerictype.swift ├── 28815-formprotocolrelativetype-swift-protocoldecl-swift-genericsignaturebuilder-potent.swift ├── 28816-unreachable-executed-at-swift-lib-sema-typecheckgeneric-cpp-214.swift ├── 28817-swift-typebase-getdesugaredtype.swift ├── 28818-hastype-e-expected-type-to-have-been-set.swift ├── 28819-formextensioninterfacetype-swift-type-swift-genericparamlist.swift ├── 28820-fl-isinout-caller-did-not-set-flags-correctly.swift ├── 28821-isa-protocoldecl-nominal-cannot-be-a-protocol.swift ├── 28822-formprotocolrelativetype-swift-protocoldecl-swift-genericsignaturebuilder-potent.swift ├── 28823-impl-getgraphindex-typevariables-size-out-of-bounds-index.swift ├── 28824-hasval.swift ├── 28825-isa-classdecl-nominaldecl-expected-a-class-here.swift ├── 28826-type-haserror-should-not-be-assigning-a-type-involving-errortype.swift ├── 28827-type-ismaterializable-argument-to-setmustbematerializablerecursive-may-not-be-in.swift ├── 28828-unreachable-executed-at-swift-lib-ast-type-cpp-3237.swift ├── 28829-replacement-ismaterializable-cannot-substitute-with-a-non-materializable-type.swift ├── 28830-formextensioninterfacetype-swift-type-swift-genericparamlist.swift ├── 28831-type-ismaterializable-argument-to-setmustbematerializablerecursive-may-not-be-in.swift ├── 28832-superclass-superclass-hasarchetype-superclass-must-be-interface-type.swift ├── 28833-foundintype-isexistentialtype.swift ├── 28834-t-isnull-t-is-inouttype.swift ├── 28835-type-hastypeparameter-already-have-an-interface-type.swift ├── 28836-functy-hasarchetype.swift ├── 28837-swift-protocolcompositiontype-get-swift-astcontext-const-llvm-arrayref-swift-typ.swift ├── 28838-gpdecl-getdepth-generictypeparamdecl-invaliddepth-parameter-hasnt-been-validated.swift ├── 28839-genericsig.swift ├── 28840-swift-typebase-getcanonicaltype.swift ├── 28841-swift-valuedecl-getformalaccessscope-swift-declcontext-const-bool-const.swift ├── 28842-hasval.swift ├── 28843-startofcontrol-tok-getloc.swift ├── 28844-swift-typebase-getcanonicaltype.swift ├── 28845-llvm-optional-swift-type-llvm-function-ref-llvm-optional-swift-type-swift-typeba.swift ├── 28846-swift-typebase-getdesugaredtype.swift ├── 28847-type-hasunboundgenerictype.swift ├── 28848-iscanonicaltypeincontext-result-builder.swift ├── 28849-hasval.swift ├── 28850-unreachable-executed-at-swift-lib-sema-typecheckgeneric-cpp-220.swift ├── 28851-hasconformanceinsignature-inprotocol-getrequirementsignature-subjecttype-conform.swift ├── 28852-swift-genericsignaturebuilder-addrequirement-swift-requirementrepr-const-swift-g.swift ├── 28853-result-second.swift ├── 28854-known-typewitnesses-end-didnt-resolve-witness.swift ├── 28855-swift-genericsignaturebuilder-addrequirement-swift-requirementrepr-const-swift-g.swift ├── 28856-typevariables-impl-getgraphindex-typevar-type-variable-mismatch.swift ├── 28857-nestedpabyname-didnt-find-the-associated-type-we-wanted.swift ├── 28858-val-isa-used-on-a-null-pointer.swift ├── 28859-resolver-unable-to-resolve-type-witness.swift ├── 28860-iscomplete-isinvalid-conformance-already-complete.swift ├── 28861-gpdecl-getdepth-generictypeparamdecl-invaliddepth-parameter-hasnt-been-validated.swift ├── 28862-swift-protocoldecl-getinheritedprotocols-const.swift ├── 28863-t-is-archetypetype-t-isexistentialtype-expected-a-class-archetype-or-existential.swift ├── 28864-bool-typesig-bool-extensionsig-unexpected-generic-ness-mismatch-on-conformance.swift ├── 28865-void-lookupinmodule-llvm-smallset-swift-cantype-4u-anonymous-namespace-sortcanty.swift ├── 28866-unreachable-executed-at-swift-include-swift-ast-cantypevisitor-h-41.swift ├── 28867-swift-iterativetypechecker-issatisfied-swift-typecheckrequest.swift ├── 28868-known-typebindings-end.swift ├── 28869-swift-diagnosticengine-formatdiagnostictext-llvm-raw-ostream-llvm-stringref-llvm.swift ├── 28871-nested-second-nested-second-isequal-result-nested-second-haserror-result-haserro.swift └── rdar96194366.swift ├── compiler_scale ├── array_init.swift.gyb ├── bind_extension_decl.gyb ├── bind_nested_extension_decl.gyb ├── callee_analysis_invalidation.gyb ├── class_members.gyb ├── dynamic_lookup.gyb ├── dynamic_lookup_2.swift ├── enum_indirect.gyb ├── enum_members.gyb ├── function_bodies.gyb ├── lazy_class_props.gyb ├── nominal_bodies.gyb ├── parse_array_nested.swift.gyb ├── protocol_members.gyb ├── scale_neighbouring_getset.gyb ├── struct_members.gyb ├── struct_nested.gyb ├── used_conformances.gyb └── var_decl_usage_checker.swift.gyb ├── docs └── userdoc_indices.test ├── embedded ├── lit.local.cfg └── rdar126965232.swift ├── execution ├── Inputs │ ├── arc_36509461.h │ ├── arc_36509461.m │ ├── custom-modules │ │ ├── foo.h │ │ └── module.modulemap │ ├── dsohandle-first.swift │ └── dsohandle-second.swift ├── arc_36509461.swift ├── dsohandle-multi-module.swift ├── interpret-with-dependencies-linux.swift ├── interpret-with-dependencies.swift ├── issue-52070.swift ├── testability.swift └── unavailable_decls.swift ├── lit.cfg ├── lit.site.cfg.in ├── radar └── r17963339.swift ├── stdlib ├── Algorithm.swift ├── AnyHashable.swift.gyb ├── Array.swift.gyb ├── Array │ ├── ArraySliceWithNonZeroStartIndex_MutableRandomAccessCollectionRef.swift │ ├── ArraySliceWithNonZeroStartIndex_MutableRandomAccessCollectionVal.swift │ ├── ArraySliceWithNonZeroStartIndex_RangeReplaceableRandomAccessCollectionRef.swift │ ├── ArraySliceWithNonZeroStartIndex_RangeReplaceableRandomAccessCollectionVal.swift │ ├── ArraySlice_MutableRandomAccessCollectionRef.swift │ ├── ArraySlice_MutableRandomAccessCollectionVal.swift │ ├── ArraySlice_RangeReplaceableRandomAccessCollectionRef.swift │ ├── ArraySlice_RangeReplaceableRandomAccessCollectionVal.swift │ ├── Array_MutableRandomAccessCollectionRef.swift │ ├── Array_MutableRandomAccessCollectionVal.swift │ ├── Array_RangeReplaceableRandomAccessCollectionRef.swift │ ├── Array_RangeReplaceableRandomAccessCollectionVal.swift │ ├── ContiguousArray_MutableRandomAccessCollectionRef.swift │ ├── ContiguousArray_MutableRandomAccessCollectionVal.swift │ ├── ContiguousArray_RangeReplaceableRandomAccessCollectionRef.swift │ ├── ContiguousArray_RangeReplaceableRandomAccessCollectionVal.swift │ └── Inputs │ │ └── ArrayConformanceTests.swift.gyb ├── ArrayBridging.swift ├── ArraySlice.swift.gyb ├── ArrayTraps.swift.gyb ├── ArrayTrapsObjC.swift ├── Arrays.swift.gyb ├── ArraysObjc.swift.gyb ├── Assert-debugPrecondition-off.swift ├── Assert-debugPrecondition-on.swift ├── Assert.swift ├── AssertDiagnosticsSIL.swift ├── AtomicsDiagnostics.swift ├── Bitset.swift ├── Bool.swift ├── BoolDiagnostics.swift ├── BoolDiagnostics_Dataflow.swift ├── CUUID.swift ├── CharacterPropertiesLong.swift ├── Collection │ ├── DefaultedBidirectionalCollection.swift │ ├── DefaultedBidirectionalCollectionOfRef.swift │ ├── DefaultedCollection.swift │ ├── DefaultedCollectionOfRef.swift │ ├── DefaultedMutableBidirectionalCollection.swift │ ├── DefaultedMutableBidirectionalCollectionOfRef.swift │ ├── DefaultedMutableCollection.swift │ ├── DefaultedMutableCollectionOfRef.swift │ ├── DefaultedMutableRandomAccessCollection.swift │ ├── DefaultedMutableRandomAccessCollectionOfRef.swift │ ├── DefaultedMutableRangeReplaceableBidirectionalCollection.swift │ ├── DefaultedMutableRangeReplaceableBidirectionalCollectionOfRef.swift │ ├── DefaultedMutableRangeReplaceableCollection.swift │ ├── DefaultedMutableRangeReplaceableCollectionOfRef.swift │ ├── DefaultedMutableRangeReplaceableRandomAccessCollection.swift │ ├── DefaultedMutableRangeReplaceableRandomAccessCollectionOfRef.swift │ ├── DefaultedRandomAccessCollection.swift │ ├── DefaultedRandomAccessCollectionOfRef.swift │ ├── DefaultedRangeReplaceableBidirectionalCollection.swift │ ├── DefaultedRangeReplaceableBidirectionalCollectionOfRef.swift │ ├── DefaultedRangeReplaceableCollection.swift │ ├── DefaultedRangeReplaceableCollectionOfRef.swift │ ├── DefaultedRangeReplaceableRandomAccessCollection.swift │ ├── DefaultedRangeReplaceableRandomAccessCollectionOfRef.swift │ ├── FlattenCollection.swift.gyb │ ├── Inputs │ │ ├── LazyMapTemplate.swift.gyb │ │ └── Template.swift.gyb │ ├── LazyFilterCollection.swift.gyb │ ├── LazyMapBidirectionalCollection.swift │ ├── LazyMapCollection.swift │ ├── LazyMapRandomAccessCollection.swift │ ├── LazyMapSequence.swift │ ├── MinimalBidirectionalCollection.swift │ ├── MinimalBidirectionalCollectionOfRef.swift │ ├── MinimalCollection.swift │ ├── MinimalCollectionOfRef.swift │ ├── MinimalMutableBidirectionalCollection.swift │ ├── MinimalMutableBidirectionalCollectionOfRef.swift │ ├── MinimalMutableCollection.swift │ ├── MinimalMutableCollectionOfRef.swift │ ├── MinimalMutableRandomAccessCollection.swift │ ├── MinimalMutableRandomAccessCollectionOfRef.swift │ ├── MinimalMutableRangeReplaceableBidirectionalCollection.swift │ ├── MinimalMutableRangeReplaceableBidirectionalCollectionOfRef.swift │ ├── MinimalMutableRangeReplaceableCollection.swift │ ├── MinimalMutableRangeReplaceableCollectionOfRef.swift │ ├── MinimalMutableRangeReplaceableRandomAccessCollection.swift │ ├── MinimalMutableRangeReplaceableRandomAccessCollectionOfRef.swift │ ├── MinimalRandomAccessCollection.swift │ ├── MinimalRandomAccessCollectionOfRef.swift │ ├── MinimalRangeReplaceableBidirectionalCollection.swift │ ├── MinimalRangeReplaceableBidirectionalCollectionOfRef.swift │ ├── MinimalRangeReplaceableCollection.swift │ ├── MinimalRangeReplaceableCollectionOfRef.swift │ ├── MinimalRangeReplaceableRandomAccessCollection.swift │ └── MinimalRangeReplaceableRandomAccessCollectionOfRef.swift ├── CollectionCasts.swift.gyb ├── CollectionCompatibility.swift ├── CollectionDiagnostics.swift ├── CollectionOld.swift ├── CollectionType.swift.gyb ├── CommandLine.swift ├── ComplexOperators.swift ├── Concatenate.swift ├── ContiguousArray.swift.gyb ├── CoreGraphics-execute.swift ├── CoreGraphics-verifyOnly.swift ├── Data.swift ├── Dictionary.swift ├── DictionaryAnyHashableExtensions.swift ├── DictionaryBridging.swift ├── DictionaryTrapsObjC.swift ├── ErrorHandling.swift ├── ErrorProtocol.swift ├── ExistentialCollection.swift.gyb ├── FixedPoint.swift.gyb ├── FixedPointArithmeticTraps.swift.gyb ├── FixedPointConversion │ ├── FixedPointConversion_Debug32_ToInt.swift │ ├── FixedPointConversion_Debug32_ToInt16.swift │ ├── FixedPointConversion_Debug32_ToInt32.swift │ ├── FixedPointConversion_Debug32_ToInt64.swift │ ├── FixedPointConversion_Debug32_ToInt8.swift │ ├── FixedPointConversion_Debug32_ToUInt.swift │ ├── FixedPointConversion_Debug32_ToUInt16.swift │ ├── FixedPointConversion_Debug32_ToUInt32.swift │ ├── FixedPointConversion_Debug32_ToUInt64.swift │ ├── FixedPointConversion_Debug32_ToUInt8.swift │ ├── FixedPointConversion_Debug64_ToInt.swift │ ├── FixedPointConversion_Debug64_ToInt16.swift │ ├── FixedPointConversion_Debug64_ToInt32.swift │ ├── FixedPointConversion_Debug64_ToInt64.swift │ ├── FixedPointConversion_Debug64_ToInt8.swift │ ├── FixedPointConversion_Debug64_ToUInt.swift │ ├── FixedPointConversion_Debug64_ToUInt16.swift │ ├── FixedPointConversion_Debug64_ToUInt32.swift │ ├── FixedPointConversion_Debug64_ToUInt64.swift │ ├── FixedPointConversion_Debug64_ToUInt8.swift │ ├── FixedPointConversion_Release32_ToInt.swift │ ├── FixedPointConversion_Release32_ToInt16.swift │ ├── FixedPointConversion_Release32_ToInt32.swift │ ├── FixedPointConversion_Release32_ToInt64.swift │ ├── FixedPointConversion_Release32_ToInt8.swift │ ├── FixedPointConversion_Release32_ToUInt.swift │ ├── FixedPointConversion_Release32_ToUInt16.swift │ ├── FixedPointConversion_Release32_ToUInt32.swift │ ├── FixedPointConversion_Release32_ToUInt64.swift │ ├── FixedPointConversion_Release32_ToUInt8.swift │ ├── FixedPointConversion_Release64_ToInt.swift │ ├── FixedPointConversion_Release64_ToInt16.swift │ ├── FixedPointConversion_Release64_ToInt32.swift │ ├── FixedPointConversion_Release64_ToInt64.swift │ ├── FixedPointConversion_Release64_ToInt8.swift │ ├── FixedPointConversion_Release64_ToUInt.swift │ ├── FixedPointConversion_Release64_ToUInt16.swift │ ├── FixedPointConversion_Release64_ToUInt32.swift │ ├── FixedPointConversion_Release64_ToUInt64.swift │ ├── FixedPointConversion_Release64_ToUInt8.swift │ └── Inputs │ │ └── FixedPointConversion.swift.gyb ├── FixedPointDiagnostics.swift.gyb ├── FloatingPointConversion_Debug.test-sh ├── FloatingPointConversion_Release.test-sh ├── Generator.swift ├── Glibc.swift ├── HashableIndices.swift ├── HashedCollectionFilter.swift ├── Hashing.swift ├── HashingAvalanche.swift ├── HashingPrototype.swift ├── HashingRandomization.swift ├── Index.swift.gyb ├── Inputs ├── IntegerDivision.swift ├── IntegerDivisionTraps.swift ├── Join.swift.gyb ├── Lazy.swift.gyb ├── MicroStdlib │ ├── Inputs │ │ ├── RuntimeStubs.c │ │ ├── Swift.swift │ │ └── main.swift │ └── MicroStdlib.swift ├── NSDecimalNumberBridging.swift.gyb ├── NSStringBridging.swift.gyb ├── NewArray.swift.gyb ├── NumericDiagnostics.swift.gyb ├── ObjectiveC.swift ├── ObjectiveC_without_Foundation.swift ├── OptionSet.swift ├── POSIXErrorCode.swift ├── ParameterPassing.swift.gyb ├── Prototypes │ └── PersistentVector.swift.gyb ├── Random.swift ├── Range.swift.gyb ├── RangeReplaceable.swift.gyb ├── RangeSet.swift ├── SIMDParameterPassing.swift.gyb ├── SequenceType.swift.gyb ├── Set.swift ├── SetAlgebra.swift ├── SetAnyHashableExtensions.swift ├── SetOperations.swift.gyb ├── SipHash.swift ├── Slice.swift.gyb ├── Slice │ ├── Inputs │ │ └── Template.swift.gyb │ ├── Slice_Of_DefaultedBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_DefaultedBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedCollection_FullWidth.swift │ ├── Slice_Of_DefaultedCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedMutableRangeReplaceableRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_DefaultedRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_DefaultedRangeReplaceableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedRangeReplaceableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableCollection_FullWidth.swift │ ├── Slice_Of_DefaultedRangeReplaceableCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedRangeReplaceableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableCollection_WithSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_DefaultedRangeReplaceableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_DefaultedRangeReplaceableRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_DefaultedRangeReplaceableRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_MinimalBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_MinimalBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_MinimalBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_MinimalCollection_FullWidth.swift │ ├── Slice_Of_MinimalCollection_WithPrefix.swift │ ├── Slice_Of_MinimalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableCollection_WithSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalMutableRangeReplaceableRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_MinimalRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_MinimalRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_MinimalRandomAccessCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalRandomAccessCollection_WithSuffix.swift │ ├── Slice_Of_MinimalRangeReplaceableBidirectionalCollection_FullWidth.swift │ ├── Slice_Of_MinimalRangeReplaceableBidirectionalCollection_WithPrefix.swift │ ├── Slice_Of_MinimalRangeReplaceableBidirectionalCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalRangeReplaceableBidirectionalCollection_WithSuffix.swift │ ├── Slice_Of_MinimalRangeReplaceableCollection_FullWidth.swift │ ├── Slice_Of_MinimalRangeReplaceableCollection_WithPrefix.swift │ ├── Slice_Of_MinimalRangeReplaceableCollection_WithPrefixAndSuffix.swift │ ├── Slice_Of_MinimalRangeReplaceableCollection_WithSuffix.swift │ ├── Slice_Of_MinimalRangeReplaceableRandomAccessCollection_FullWidth.swift │ ├── Slice_Of_MinimalRangeReplaceableRandomAccessCollection_WithPrefix.swift │ ├── Slice_Of_MinimalRangeReplaceableRandomAccessCollection_WithPrefixAndSuffix.swift │ └── Slice_Of_MinimalRangeReplaceableRandomAccessCollection_WithSuffix.swift ├── Sort-ABI.swift ├── Sort.swift.gyb ├── Stride.swift ├── String.swift ├── StringBreadcrumbs.swift ├── StringGraphemeBreaking.swift ├── StringIndexLong.swift ├── StringLowercasedUppercased.swift ├── StringNormalization.swift ├── StringSlicesConcurrentAppend.swift ├── StringUTF8.swift ├── StringViews.swift ├── StringWordBreaking.swift ├── SwiftNativeNSBase.swift ├── UnfoldSequence.swift ├── Unicode.swift.gyb ├── UnicodeLongTest.swift ├── UnicodeScalarProperties.swift ├── UnicodeTrieGenerator.gyb ├── UnicodeUTFEncoders.swift ├── UnsafeBufferPointer.swift.gyb ├── UnsafeBufferPointerSlices.swift ├── UnsafeRawPointerInternal.swift └── ValidationNSNumberBridging.swift └── test-runner ├── AbortIsFailure.swift └── NonZeroExitCodeIsFailure.swift /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | AlwaysBreakTemplateDeclarations: true 3 | -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/.mailmap -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/Brewfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/CODE_OWNERS.TXT -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /KERNEL_LIB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/KERNEL_LIB.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/README.md -------------------------------------------------------------------------------- /Runtimes/Core/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/Runtimes/Core/Readme.md -------------------------------------------------------------------------------- /Runtimes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/Runtimes/Readme.md -------------------------------------------------------------------------------- /Runtimes/Resync.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/Runtimes/Resync.cmake -------------------------------------------------------------------------------- /SwiftCompilerSources/.gitignore: -------------------------------------------------------------------------------- 1 | .swiftpm 2 | -------------------------------------------------------------------------------- /apinotes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/apinotes/CMakeLists.txt -------------------------------------------------------------------------------- /apinotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/apinotes/README.md -------------------------------------------------------------------------------- /apinotes/os.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/apinotes/os.apinotes -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/Naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/benchmark/Naming.md -------------------------------------------------------------------------------- /benchmark/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/benchmark/Package.swift -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /cmake/SwiftVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/cmake/SwiftVersion.cmake -------------------------------------------------------------------------------- /cmake/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/cmake/dummy.cpp -------------------------------------------------------------------------------- /docs/ABI/KeyPaths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/KeyPaths.md -------------------------------------------------------------------------------- /docs/ABI/Mangling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/Mangling.rst -------------------------------------------------------------------------------- /docs/ABI/OldMangling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/OldMangling.rst -------------------------------------------------------------------------------- /docs/ABI/RegisterUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/RegisterUsage.md -------------------------------------------------------------------------------- /docs/ABI/TypeLayout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/TypeLayout.rst -------------------------------------------------------------------------------- /docs/ABI/TypeMetadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ABI/TypeMetadata.rst -------------------------------------------------------------------------------- /docs/AccessControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/AccessControl.md -------------------------------------------------------------------------------- /docs/Android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Android.md -------------------------------------------------------------------------------- /docs/AndroidBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/AndroidBuild.md -------------------------------------------------------------------------------- /docs/Array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Array.png -------------------------------------------------------------------------------- /docs/ArrayBridge.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ArrayBridge.graffle -------------------------------------------------------------------------------- /docs/ArrayBridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ArrayBridge.png -------------------------------------------------------------------------------- /docs/ArrayCast.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ArrayCast.graffle -------------------------------------------------------------------------------- /docs/ArrayCast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ArrayCast.png -------------------------------------------------------------------------------- /docs/Arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Arrays.md -------------------------------------------------------------------------------- /docs/Backtracing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Backtracing.rst -------------------------------------------------------------------------------- /docs/Branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Branches.md -------------------------------------------------------------------------------- /docs/BuildManifesto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/BuildManifesto.md -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/ContiguousArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ContiguousArray.png -------------------------------------------------------------------------------- /docs/DevelopmentTips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/DevelopmentTips.md -------------------------------------------------------------------------------- /docs/Diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Diagnostics.md -------------------------------------------------------------------------------- /docs/Driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Driver.md -------------------------------------------------------------------------------- /docs/DriverInternals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/DriverInternals.md -------------------------------------------------------------------------------- /docs/DynamicCasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/DynamicCasting.md -------------------------------------------------------------------------------- /docs/EmbeddedSwift/ABI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/EmbeddedSwift/ABI.md -------------------------------------------------------------------------------- /docs/ErrorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ErrorHandling.md -------------------------------------------------------------------------------- /docs/ExternalResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ExternalResources.md -------------------------------------------------------------------------------- /docs/Generics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Generics/Makefile -------------------------------------------------------------------------------- /docs/Generics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Generics/README.md -------------------------------------------------------------------------------- /docs/GenericsManifesto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/GenericsManifesto.md -------------------------------------------------------------------------------- /docs/HowToGuides/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/HowToGuides/FAQ.md -------------------------------------------------------------------------------- /docs/IndexInvalidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/IndexInvalidation.md -------------------------------------------------------------------------------- /docs/Lexicon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Lexicon.md -------------------------------------------------------------------------------- /docs/LibraryEvolution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/LibraryEvolution.rst -------------------------------------------------------------------------------- /docs/Literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Literals.md -------------------------------------------------------------------------------- /docs/LogicalObjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/LogicalObjects.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Modules.md -------------------------------------------------------------------------------- /docs/MutationModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/MutationModel.rst -------------------------------------------------------------------------------- /docs/ObjCInterop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/ObjCInterop.md -------------------------------------------------------------------------------- /docs/OpenBSD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/OpenBSD.md -------------------------------------------------------------------------------- /docs/OptimizationTips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/OptimizationTips.rst -------------------------------------------------------------------------------- /docs/OptimizerDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/OptimizerDesign.md -------------------------------------------------------------------------------- /docs/PerfReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/PerfReport.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Random.md -------------------------------------------------------------------------------- /docs/RequestEvaluator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/RequestEvaluator.md -------------------------------------------------------------------------------- /docs/Runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Runtime.md -------------------------------------------------------------------------------- /docs/SIL/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/SIL/Instructions.md -------------------------------------------------------------------------------- /docs/SIL/Ownership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/SIL/Ownership.md -------------------------------------------------------------------------------- /docs/SIL/SIL-Utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/SIL/SIL-Utilities.md -------------------------------------------------------------------------------- /docs/SIL/SIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/SIL/SIL.md -------------------------------------------------------------------------------- /docs/SIL/Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/SIL/Types.md -------------------------------------------------------------------------------- /docs/Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Serialization.md -------------------------------------------------------------------------------- /docs/Slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Slice.png -------------------------------------------------------------------------------- /docs/StableBitcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/StableBitcode.md -------------------------------------------------------------------------------- /docs/StdlibRationales.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/StdlibRationales.rst -------------------------------------------------------------------------------- /docs/StringDesign.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/StringDesign.rst -------------------------------------------------------------------------------- /docs/StringManifesto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/StringManifesto.md -------------------------------------------------------------------------------- /docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Testing.md -------------------------------------------------------------------------------- /docs/TextFormatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/TextFormatting.rst -------------------------------------------------------------------------------- /docs/TransparentAttr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/TransparentAttr.md -------------------------------------------------------------------------------- /docs/TypeChecker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/TypeChecker.md -------------------------------------------------------------------------------- /docs/WeakReferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/WeakReferences.md -------------------------------------------------------------------------------- /docs/WebAssembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/WebAssembly.md -------------------------------------------------------------------------------- /docs/Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/Windows.md -------------------------------------------------------------------------------- /docs/WindowsBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/WindowsBuild.md -------------------------------------------------------------------------------- /docs/WindowsToolchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/WindowsToolchain.md -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/swift.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/_static/swift.css -------------------------------------------------------------------------------- /docs/archive/Generics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/archive/Generics.rst -------------------------------------------------------------------------------- /docs/archive/Import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/archive/Import.rst -------------------------------------------------------------------------------- /docs/archive/LangRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/archive/LangRef.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/doxygen.cfg.in -------------------------------------------------------------------------------- /docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/doxygen.css -------------------------------------------------------------------------------- /docs/doxygen.footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/doxygen.footer -------------------------------------------------------------------------------- /docs/doxygen.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/doxygen.header -------------------------------------------------------------------------------- /docs/doxygen.intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/doxygen.intro -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/proposals/AttrC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/proposals/AttrC.rst -------------------------------------------------------------------------------- /docs/proposals/Enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/proposals/Enums.rst -------------------------------------------------------------------------------- /docs/proposals/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/proposals/README.txt -------------------------------------------------------------------------------- /docs/proposals/valref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/proposals/valref.rst -------------------------------------------------------------------------------- /docs/scripts/ns-html2rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/scripts/ns-html2rst -------------------------------------------------------------------------------- /docs/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/toc.js -------------------------------------------------------------------------------- /docs/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/tools/CMakeLists.txt -------------------------------------------------------------------------------- /docs/tools/swift.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/docs/tools/swift.pod -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(swift) 2 | -------------------------------------------------------------------------------- /include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/module.modulemap -------------------------------------------------------------------------------- /include/swift/ABI/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/ABI/Actor.h -------------------------------------------------------------------------------- /include/swift/ABI/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/ABI/Class.h -------------------------------------------------------------------------------- /include/swift/ABI/Coro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/ABI/Coro.h -------------------------------------------------------------------------------- /include/swift/ABI/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/ABI/Enum.h -------------------------------------------------------------------------------- /include/swift/ABI/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/ABI/Task.h -------------------------------------------------------------------------------- /include/swift/AST/Attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Attr.h -------------------------------------------------------------------------------- /include/swift/AST/Decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Decl.h -------------------------------------------------------------------------------- /include/swift/AST/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Expr.h -------------------------------------------------------------------------------- /include/swift/AST/Stmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Stmt.h -------------------------------------------------------------------------------- /include/swift/AST/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Type.h -------------------------------------------------------------------------------- /include/swift/AST/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/AST/Types.h -------------------------------------------------------------------------------- /include/swift/Config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/Config.h.in -------------------------------------------------------------------------------- /include/swift/IDE/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/IDE/Utils.h -------------------------------------------------------------------------------- /include/swift/SIL/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/SIL/CFG.h -------------------------------------------------------------------------------- /include/swift/SIL/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/SIL/Test.h -------------------------------------------------------------------------------- /include/swift/Strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/include/swift/Strings.h -------------------------------------------------------------------------------- /lib/AST/ASTContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTContext.cpp -------------------------------------------------------------------------------- /lib/AST/ASTDemangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTDemangler.cpp -------------------------------------------------------------------------------- /lib/AST/ASTDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTDumper.cpp -------------------------------------------------------------------------------- /lib/AST/ASTMangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTMangler.cpp -------------------------------------------------------------------------------- /lib/AST/ASTNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTNode.cpp -------------------------------------------------------------------------------- /lib/AST/ASTPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTPrinter.cpp -------------------------------------------------------------------------------- /lib/AST/ASTScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTScope.cpp -------------------------------------------------------------------------------- /lib/AST/ASTVerifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTVerifier.cpp -------------------------------------------------------------------------------- /lib/AST/ASTWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ASTWalker.cpp -------------------------------------------------------------------------------- /lib/AST/AccessNotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/AccessNotes.cpp -------------------------------------------------------------------------------- /lib/AST/ArgumentList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ArgumentList.cpp -------------------------------------------------------------------------------- /lib/AST/Attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Attr.cpp -------------------------------------------------------------------------------- /lib/AST/AutoDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/AutoDiff.cpp -------------------------------------------------------------------------------- /lib/AST/Availability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Availability.cpp -------------------------------------------------------------------------------- /lib/AST/Builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Builtins.cpp -------------------------------------------------------------------------------- /lib/AST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/CMakeLists.txt -------------------------------------------------------------------------------- /lib/AST/CaptureInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/CaptureInfo.cpp -------------------------------------------------------------------------------- /lib/AST/Concurrency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Concurrency.cpp -------------------------------------------------------------------------------- /lib/AST/Decl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Decl.cpp -------------------------------------------------------------------------------- /lib/AST/DeclContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/DeclContext.cpp -------------------------------------------------------------------------------- /lib/AST/DeclNameLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/DeclNameLoc.cpp -------------------------------------------------------------------------------- /lib/AST/DocComment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/DocComment.cpp -------------------------------------------------------------------------------- /lib/AST/Effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Effects.cpp -------------------------------------------------------------------------------- /lib/AST/Evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Evaluator.cpp -------------------------------------------------------------------------------- /lib/AST/Expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Expr.cpp -------------------------------------------------------------------------------- /lib/AST/ExtInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ExtInfo.cpp -------------------------------------------------------------------------------- /lib/AST/FeatureSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/FeatureSet.cpp -------------------------------------------------------------------------------- /lib/AST/FeatureSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/FeatureSet.h -------------------------------------------------------------------------------- /lib/AST/Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Identifier.cpp -------------------------------------------------------------------------------- /lib/AST/ImportCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ImportCache.cpp -------------------------------------------------------------------------------- /lib/AST/IndexSubset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/IndexSubset.cpp -------------------------------------------------------------------------------- /lib/AST/InlinableText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/InlinableText.cpp -------------------------------------------------------------------------------- /lib/AST/InlinableText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/InlinableText.h -------------------------------------------------------------------------------- /lib/AST/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Module.cpp -------------------------------------------------------------------------------- /lib/AST/ModuleLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ModuleLoader.cpp -------------------------------------------------------------------------------- /lib/AST/NameLookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/NameLookup.cpp -------------------------------------------------------------------------------- /lib/AST/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Parameter.cpp -------------------------------------------------------------------------------- /lib/AST/ParameterPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/ParameterPack.cpp -------------------------------------------------------------------------------- /lib/AST/Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Pattern.cpp -------------------------------------------------------------------------------- /lib/AST/PluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/PluginLoader.cpp -------------------------------------------------------------------------------- /lib/AST/RawComment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/RawComment.cpp -------------------------------------------------------------------------------- /lib/AST/Requirement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Requirement.cpp -------------------------------------------------------------------------------- /lib/AST/SILLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/SILLayout.cpp -------------------------------------------------------------------------------- /lib/AST/Stmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Stmt.cpp -------------------------------------------------------------------------------- /lib/AST/StorageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/StorageImpl.cpp -------------------------------------------------------------------------------- /lib/AST/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/Type.cpp -------------------------------------------------------------------------------- /lib/AST/TypeJoinMeet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/TypeJoinMeet.cpp -------------------------------------------------------------------------------- /lib/AST/TypeRepr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/TypeRepr.cpp -------------------------------------------------------------------------------- /lib/AST/TypeWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/TypeWalker.cpp -------------------------------------------------------------------------------- /lib/AST/USRGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/AST/USRGeneration.cpp -------------------------------------------------------------------------------- /lib/ASTGen/.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/ASTGen/.swift-format -------------------------------------------------------------------------------- /lib/ASTGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/ASTGen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ASTGen/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/ASTGen/Package.swift -------------------------------------------------------------------------------- /lib/ASTGen/_RegexParser_Sources: -------------------------------------------------------------------------------- 1 | ../../../swift-experimental-string-processing/Sources/_RegexParser -------------------------------------------------------------------------------- /lib/Basic/Assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Assertions.cpp -------------------------------------------------------------------------------- /lib/Basic/BlockList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/BlockList.cpp -------------------------------------------------------------------------------- /lib/Basic/CASOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/CASOptions.cpp -------------------------------------------------------------------------------- /lib/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Basic/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Cache.cpp -------------------------------------------------------------------------------- /lib/Basic/Edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Edit.cpp -------------------------------------------------------------------------------- /lib/Basic/Feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Feature.cpp -------------------------------------------------------------------------------- /lib/Basic/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/FileSystem.cpp -------------------------------------------------------------------------------- /lib/Basic/FileTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/FileTypes.cpp -------------------------------------------------------------------------------- /lib/Basic/Fingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Fingerprint.cpp -------------------------------------------------------------------------------- /lib/Basic/LangOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/LangOptions.cpp -------------------------------------------------------------------------------- /lib/Basic/Located.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Located.cpp -------------------------------------------------------------------------------- /lib/Basic/Mangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Mangler.cpp -------------------------------------------------------------------------------- /lib/Basic/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Platform.cpp -------------------------------------------------------------------------------- /lib/Basic/PrefixMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/PrefixMap.cpp -------------------------------------------------------------------------------- /lib/Basic/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Program.cpp -------------------------------------------------------------------------------- /lib/Basic/Sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Sandbox.cpp -------------------------------------------------------------------------------- /lib/Basic/SourceLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/SourceLoc.cpp -------------------------------------------------------------------------------- /lib/Basic/Statistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Statistic.cpp -------------------------------------------------------------------------------- /lib/Basic/TargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/TargetInfo.cpp -------------------------------------------------------------------------------- /lib/Basic/TaskQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/TaskQueue.cpp -------------------------------------------------------------------------------- /lib/Basic/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/UUID.cpp -------------------------------------------------------------------------------- /lib/Basic/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Unicode.cpp -------------------------------------------------------------------------------- /lib/Basic/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Basic/Version.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Demangling/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Demangling/Errors.cpp -------------------------------------------------------------------------------- /lib/Driver/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/Action.cpp -------------------------------------------------------------------------------- /lib/Driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/Driver.cpp -------------------------------------------------------------------------------- /lib/Driver/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/Job.cpp -------------------------------------------------------------------------------- /lib/Driver/ToolChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/ToolChain.cpp -------------------------------------------------------------------------------- /lib/Driver/ToolChains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/ToolChains.cpp -------------------------------------------------------------------------------- /lib/Driver/ToolChains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Driver/ToolChains.h -------------------------------------------------------------------------------- /lib/DriverTool/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/DriverTool/driver.cpp -------------------------------------------------------------------------------- /lib/Frontend/Frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Frontend/Frontend.cpp -------------------------------------------------------------------------------- /lib/FrontendTool/TBD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/FrontendTool/TBD.cpp -------------------------------------------------------------------------------- /lib/FrontendTool/TBD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/FrontendTool/TBD.h -------------------------------------------------------------------------------- /lib/IDE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/CMakeLists.txt -------------------------------------------------------------------------------- /lib/IDE/CursorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/CursorInfo.cpp -------------------------------------------------------------------------------- /lib/IDE/Formatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/Formatting.cpp -------------------------------------------------------------------------------- /lib/IDE/IDEBridging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/IDEBridging.cpp -------------------------------------------------------------------------------- /lib/IDE/IDERequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/IDERequests.cpp -------------------------------------------------------------------------------- /lib/IDE/ImportDepth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/ImportDepth.cpp -------------------------------------------------------------------------------- /lib/IDE/SyntaxModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/SyntaxModel.cpp -------------------------------------------------------------------------------- /lib/IDE/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IDE/Utils.cpp -------------------------------------------------------------------------------- /lib/IRGen/APIGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/APIGen.cpp -------------------------------------------------------------------------------- /lib/IRGen/APIGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/APIGen.h -------------------------------------------------------------------------------- /lib/IRGen/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Address.h -------------------------------------------------------------------------------- /lib/IRGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/IRGen/CallEmission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/CallEmission.h -------------------------------------------------------------------------------- /lib/IRGen/Callee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Callee.h -------------------------------------------------------------------------------- /lib/IRGen/ClassLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/ClassLayout.cpp -------------------------------------------------------------------------------- /lib/IRGen/ClassLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/ClassLayout.h -------------------------------------------------------------------------------- /lib/IRGen/ClassTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/ClassTypeInfo.h -------------------------------------------------------------------------------- /lib/IRGen/DebugTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/DebugTypeInfo.h -------------------------------------------------------------------------------- /lib/IRGen/EnumPayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/EnumPayload.cpp -------------------------------------------------------------------------------- /lib/IRGen/EnumPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/EnumPayload.h -------------------------------------------------------------------------------- /lib/IRGen/Explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Explosion.h -------------------------------------------------------------------------------- /lib/IRGen/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Field.h -------------------------------------------------------------------------------- /lib/IRGen/FixedTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/FixedTypeInfo.h -------------------------------------------------------------------------------- /lib/IRGen/Fulfillment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Fulfillment.cpp -------------------------------------------------------------------------------- /lib/IRGen/Fulfillment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Fulfillment.h -------------------------------------------------------------------------------- /lib/IRGen/GenArchetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenArchetype.h -------------------------------------------------------------------------------- /lib/IRGen/GenArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenArray.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenBuiltin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenBuiltin.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenBuiltin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenBuiltin.h -------------------------------------------------------------------------------- /lib/IRGen/GenCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCall.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCall.h -------------------------------------------------------------------------------- /lib/IRGen/GenCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCast.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCast.h -------------------------------------------------------------------------------- /lib/IRGen/GenClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenClass.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenClass.h -------------------------------------------------------------------------------- /lib/IRGen/GenConstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenConstant.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenConstant.h -------------------------------------------------------------------------------- /lib/IRGen/GenControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenControl.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenCoro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCoro.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenCoverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenCoverage.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenDecl.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenDecl.h -------------------------------------------------------------------------------- /lib/IRGen/GenDiffFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenDiffFunc.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenEnum.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenEnum.h -------------------------------------------------------------------------------- /lib/IRGen/GenFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenFunc.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenFunc.h -------------------------------------------------------------------------------- /lib/IRGen/GenHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenHeap.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenHeap.h -------------------------------------------------------------------------------- /lib/IRGen/GenInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenInit.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenKeyPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenKeyPath.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenKeyPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenKeyPath.h -------------------------------------------------------------------------------- /lib/IRGen/GenMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenMeta.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenMeta.h -------------------------------------------------------------------------------- /lib/IRGen/GenObjC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenObjC.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenObjC.h -------------------------------------------------------------------------------- /lib/IRGen/GenOpaque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenOpaque.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenOpaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenOpaque.h -------------------------------------------------------------------------------- /lib/IRGen/GenPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenPack.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenPack.h -------------------------------------------------------------------------------- /lib/IRGen/GenPoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenPoly.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenPoly.h -------------------------------------------------------------------------------- /lib/IRGen/GenProto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenProto.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenProto.h -------------------------------------------------------------------------------- /lib/IRGen/GenRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenRecord.h -------------------------------------------------------------------------------- /lib/IRGen/GenStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenStruct.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenStruct.h -------------------------------------------------------------------------------- /lib/IRGen/GenThunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenThunk.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenTuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenTuple.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenTuple.h -------------------------------------------------------------------------------- /lib/IRGen/GenType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenType.cpp -------------------------------------------------------------------------------- /lib/IRGen/GenType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/GenType.h -------------------------------------------------------------------------------- /lib/IRGen/HeapTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/HeapTypeInfo.h -------------------------------------------------------------------------------- /lib/IRGen/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRBuilder.h -------------------------------------------------------------------------------- /lib/IRGen/IRGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGen.cpp -------------------------------------------------------------------------------- /lib/IRGen/IRGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGen.h -------------------------------------------------------------------------------- /lib/IRGen/IRGenFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGenFunction.h -------------------------------------------------------------------------------- /lib/IRGen/IRGenMangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGenMangler.h -------------------------------------------------------------------------------- /lib/IRGen/IRGenModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGenModule.cpp -------------------------------------------------------------------------------- /lib/IRGen/IRGenModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGenModule.h -------------------------------------------------------------------------------- /lib/IRGen/IRGenSIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/IRGenSIL.cpp -------------------------------------------------------------------------------- /lib/IRGen/Linking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Linking.cpp -------------------------------------------------------------------------------- /lib/IRGen/LocalTypeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/LocalTypeData.h -------------------------------------------------------------------------------- /lib/IRGen/MetadataPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/MetadataPath.h -------------------------------------------------------------------------------- /lib/IRGen/Outlining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Outlining.cpp -------------------------------------------------------------------------------- /lib/IRGen/Outlining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Outlining.h -------------------------------------------------------------------------------- /lib/IRGen/ProtocolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/ProtocolInfo.h -------------------------------------------------------------------------------- /lib/IRGen/Signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Signature.h -------------------------------------------------------------------------------- /lib/IRGen/StructLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/StructLayout.h -------------------------------------------------------------------------------- /lib/IRGen/SwitchBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/SwitchBuilder.h -------------------------------------------------------------------------------- /lib/IRGen/TBDGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TBDGen.cpp -------------------------------------------------------------------------------- /lib/IRGen/TBDGenVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TBDGenVisitor.h -------------------------------------------------------------------------------- /lib/IRGen/Temporary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/Temporary.h -------------------------------------------------------------------------------- /lib/IRGen/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TypeInfo.h -------------------------------------------------------------------------------- /lib/IRGen/TypeLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TypeLayout.cpp -------------------------------------------------------------------------------- /lib/IRGen/TypeLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TypeLayout.h -------------------------------------------------------------------------------- /lib/IRGen/TypeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/TypeVisitor.h -------------------------------------------------------------------------------- /lib/IRGen/WitnessIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/IRGen/WitnessIndex.h -------------------------------------------------------------------------------- /lib/Index/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Index/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Index/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Index/Index.cpp -------------------------------------------------------------------------------- /lib/Index/IndexRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Index/IndexRecord.cpp -------------------------------------------------------------------------------- /lib/Index/IndexSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Index/IndexSymbol.cpp -------------------------------------------------------------------------------- /lib/Macros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Macros/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Markup/AST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Markup/AST.cpp -------------------------------------------------------------------------------- /lib/Markup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Markup/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Markup/LineList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Markup/LineList.cpp -------------------------------------------------------------------------------- /lib/Markup/Markup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Markup/Markup.cpp -------------------------------------------------------------------------------- /lib/Migrator/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Migrator/Diff.h -------------------------------------------------------------------------------- /lib/Migrator/Migrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Migrator/Migrator.cpp -------------------------------------------------------------------------------- /lib/Migrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Migrator/README.md -------------------------------------------------------------------------------- /lib/Migrator/ios4.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/ios42.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/macos4.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/macos42.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/tvos4.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/tvos42.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/watchos4.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Migrator/watchos42.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/Option/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Option/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Option/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Option/Options.cpp -------------------------------------------------------------------------------- /lib/Option/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Option/features.json -------------------------------------------------------------------------------- /lib/Parse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Parse/Confusables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/Confusables.cpp -------------------------------------------------------------------------------- /lib/Parse/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/Lexer.cpp -------------------------------------------------------------------------------- /lib/Parse/ParseDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/ParseDecl.cpp -------------------------------------------------------------------------------- /lib/Parse/ParseExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/ParseExpr.cpp -------------------------------------------------------------------------------- /lib/Parse/ParseRegex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/ParseRegex.cpp -------------------------------------------------------------------------------- /lib/Parse/ParseStmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/ParseStmt.cpp -------------------------------------------------------------------------------- /lib/Parse/ParseType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/ParseType.cpp -------------------------------------------------------------------------------- /lib/Parse/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Parse/Parser.cpp -------------------------------------------------------------------------------- /lib/PrintAsClang/experimental-interoperability-version.json: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lib/Refactoring/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Refactoring/Utils.cpp -------------------------------------------------------------------------------- /lib/Refactoring/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Refactoring/Utils.h -------------------------------------------------------------------------------- /lib/SIL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SIL/IR/ApplySite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/ApplySite.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/Bridging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/Bridging.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SIL/IR/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/Linker.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/Linker.h -------------------------------------------------------------------------------- /lib/SIL/IR/SIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SIL.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILBuilder.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILDeclRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILDeclRef.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILModule.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILPrinter.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILType.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILUndef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILUndef.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILVTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILVTable.cpp -------------------------------------------------------------------------------- /lib/SIL/IR/SILValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/IR/SILValue.cpp -------------------------------------------------------------------------------- /lib/SIL/SIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/SIL.cpp -------------------------------------------------------------------------------- /lib/SIL/Utils/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SIL/Utils/Test.cpp -------------------------------------------------------------------------------- /lib/SILGen/ASTVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/ASTVisitor.h -------------------------------------------------------------------------------- /lib/SILGen/Callee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Callee.h -------------------------------------------------------------------------------- /lib/SILGen/Cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Cleanup.cpp -------------------------------------------------------------------------------- /lib/SILGen/Cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Cleanup.h -------------------------------------------------------------------------------- /lib/SILGen/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Condition.h -------------------------------------------------------------------------------- /lib/SILGen/Conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Conversion.h -------------------------------------------------------------------------------- /lib/SILGen/JumpDest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/JumpDest.h -------------------------------------------------------------------------------- /lib/SILGen/LValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/LValue.h -------------------------------------------------------------------------------- /lib/SILGen/RValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/RValue.cpp -------------------------------------------------------------------------------- /lib/SILGen/RValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/RValue.h -------------------------------------------------------------------------------- /lib/SILGen/ResultPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/ResultPlan.h -------------------------------------------------------------------------------- /lib/SILGen/SGFContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/SGFContext.h -------------------------------------------------------------------------------- /lib/SILGen/SILGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/SILGen.cpp -------------------------------------------------------------------------------- /lib/SILGen/SILGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/SILGen.h -------------------------------------------------------------------------------- /lib/SILGen/Scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Scope.cpp -------------------------------------------------------------------------------- /lib/SILGen/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Scope.h -------------------------------------------------------------------------------- /lib/SILGen/Varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/SILGen/Varargs.h -------------------------------------------------------------------------------- /lib/Sema/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Sema/CSApply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSApply.cpp -------------------------------------------------------------------------------- /lib/Sema/CSBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSBindings.cpp -------------------------------------------------------------------------------- /lib/Sema/CSFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSFix.cpp -------------------------------------------------------------------------------- /lib/Sema/CSGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSGen.cpp -------------------------------------------------------------------------------- /lib/Sema/CSRanking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSRanking.cpp -------------------------------------------------------------------------------- /lib/Sema/CSSimplify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSSimplify.cpp -------------------------------------------------------------------------------- /lib/Sema/CSSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSSolver.cpp -------------------------------------------------------------------------------- /lib/Sema/CSStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSStep.cpp -------------------------------------------------------------------------------- /lib/Sema/CSStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSStep.h -------------------------------------------------------------------------------- /lib/Sema/CSTrail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/CSTrail.cpp -------------------------------------------------------------------------------- /lib/Sema/Comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/Comment.cpp -------------------------------------------------------------------------------- /lib/Sema/Constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/Constraint.cpp -------------------------------------------------------------------------------- /lib/Sema/PCMacro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/PCMacro.cpp -------------------------------------------------------------------------------- /lib/Sema/TypeChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Sema/TypeChecker.h -------------------------------------------------------------------------------- /lib/Threading/C11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Threading/C11.cpp -------------------------------------------------------------------------------- /lib/Threading/Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Threading/Linux.cpp -------------------------------------------------------------------------------- /lib/Threading/Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/lib/Threading/Win32.cpp -------------------------------------------------------------------------------- /lib/Tooling/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_swift_tool_subdirectory(libSwiftScan) 2 | -------------------------------------------------------------------------------- /localization/diagnostics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stdlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/stdlib/CMakeLists.txt -------------------------------------------------------------------------------- /stdlib/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/stdlib/Info.plist.in -------------------------------------------------------------------------------- /stdlib/toolchain/Compatibility56/Concurrency/AsyncLet.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/APIJSON/Inputs/NativeDep.h: -------------------------------------------------------------------------------- 1 | void my_native_c (); 2 | -------------------------------------------------------------------------------- /test/APIJSON/spi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/APIJSON/spi.swift -------------------------------------------------------------------------------- /test/ASTGen/attrs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/attrs.swift -------------------------------------------------------------------------------- /test/ASTGen/decls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/decls.swift -------------------------------------------------------------------------------- /test/ASTGen/exprs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/exprs.swift -------------------------------------------------------------------------------- /test/ASTGen/regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/regex.swift -------------------------------------------------------------------------------- /test/ASTGen/stmts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/stmts.swift -------------------------------------------------------------------------------- /test/ASTGen/types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/ASTGen/types.swift -------------------------------------------------------------------------------- /test/AutoDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/AutoDiff/README.md -------------------------------------------------------------------------------- /test/AutoDiff/validation-test/Inputs/main.swift: -------------------------------------------------------------------------------- 1 | // this file intentionally left blank 2 | -------------------------------------------------------------------------------- /test/AutolinkExtract/Inputs/Frameworks/Link.framework/Headers/Link.h: -------------------------------------------------------------------------------- 1 | extern int APIFromLinkFramework; -------------------------------------------------------------------------------- /test/AutolinkExtract/Inputs/Frameworks/Link.framework/Link: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/CAS/Inputs/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/CAS/Inputs/objc.h -------------------------------------------------------------------------------- /test/CAS/Xcc_args.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/CAS/Xcc_args.swift -------------------------------------------------------------------------------- /test/CAS/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/CAS/lit.local.cfg -------------------------------------------------------------------------------- /test/CAS/mccas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/CAS/mccas.swift -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/System/Library/Frameworks/LinkFramework.framework/LinkFramework: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/ClangModuleUser.h: -------------------------------------------------------------------------------- 1 | @import ClangModuleWithOverlay; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/IndirectFrameworkImporter.h: -------------------------------------------------------------------------------- 1 | @import IndirectFramework; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/WeirdCModule.h: -------------------------------------------------------------------------------- 1 | typedef struct { 2 | int value; 3 | } S; 4 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/ctypes_bits_exported.h: -------------------------------------------------------------------------------- 1 | @import ctypes.bits; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/script.h: -------------------------------------------------------------------------------- 1 | struct ScriptTy { 2 | int value; 3 | }; 4 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/custom-modules/x.h: -------------------------------------------------------------------------------- 1 | extern int x; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/frameworks/Another.framework/Another: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/frameworks/Module.framework/Headers/NotInModule.h: -------------------------------------------------------------------------------- 1 | int not_in_module; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/frameworks/Module.framework/Module: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/frameworks/Simple.framework/Simple: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/non-modular/NonModular.h: -------------------------------------------------------------------------------- 1 | extern int NM; 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/other.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/privateframeworks/bridging-somekit.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/privateframeworks/bridging-somekitcore.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/requirement-conflict/CoreFeatures.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/requirement-conflict/CoreFeatures.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/requirement-conflict/CoreFeatures.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /test/ClangImporter/Inputs/submodules-bridging-header.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/AutolinkingTest.framework/AutolinkingTest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/WithSubmodule.framework/Empty.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/WithSubmodule.framework/Modules/WithSubmodule.swiftmodule/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/mixed-framework/Mixed.framework/Modules/Mixed.swiftmodule/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/mixed-target/Mixed.framework/Mixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/submodule/Mixed.h: -------------------------------------------------------------------------------- 1 | extern void topLevel(); 2 | -------------------------------------------------------------------------------- /test/ClangImporter/MixedSource/Inputs/submodule/Submodule.h: -------------------------------------------------------------------------------- 1 | extern void fromSubmodule(); 2 | -------------------------------------------------------------------------------- /test/Concurrency/toplevel/Inputs/foo.swift: -------------------------------------------------------------------------------- 1 | func foo() -> Int { 2 | a + 10 3 | } 4 | -------------------------------------------------------------------------------- /test/Constraints/Inputs/keypath.swift: -------------------------------------------------------------------------------- 1 | class C { 2 | fileprivate(set) var i = 0 3 | } 4 | -------------------------------------------------------------------------------- /test/CrossImport/Inputs/lib-templates/include/core_mi6.h: -------------------------------------------------------------------------------- 1 | void fromCoreMI6(); 2 | -------------------------------------------------------------------------------- /test/CrossImport/Inputs/lib-templates/lib/swift/UnitaryGoose.swiftcrossimport: -------------------------------------------------------------------------------- 1 | Honk! 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/ClangModuleWithOverlay.h: -------------------------------------------------------------------------------- 1 | struct ClangType { 2 | int i; 3 | }; 4 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/InlineBridgingHeader.h: -------------------------------------------------------------------------------- 1 | #include "inline.h" 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/OtherClangModule.h: -------------------------------------------------------------------------------- 1 | struct Other {}; 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/OtherSubModule.h: -------------------------------------------------------------------------------- 1 | struct OtherBar {}; 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/SubModule.h: -------------------------------------------------------------------------------- 1 | struct Bar {}; 2 | -------------------------------------------------------------------------------- /test/DebugInfo/if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/DebugInfo/if.swift -------------------------------------------------------------------------------- /test/Driver/Inputs/bridging-header.h: -------------------------------------------------------------------------------- 1 | extern int x; 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/empty-ofm.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/empty.sil: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_ios_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_iossim_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_osx_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_tvos_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_tvossim_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.asan_watchos_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.fuzzer_osx.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.profile_iossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.profile_tvossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.profile_watchossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_ios.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_ios_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_iossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_iossim_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_osx.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_osx_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_tvos.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_tvos_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_tvossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_tvossim_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_watchos.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_watchos_dynamic.dylib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/darwin/libclang_rt.ubsan_watchossim.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/linux/libclang_rt.asan-x86_64.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/linux/libclang_rt.fuzzer-x86_64.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/linux/libclang_rt.scudo_standalone-x86_64.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/linux/libclang_rt.tsan-x86_64.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/linux/libclang_rt.ubsan-x86_64.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/windows/clang_rt.asan-x86_64.lib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift/clang/lib/windows/clang_rt.ubsan-x86_64.lib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/fake-resource-dir/lib/swift_static/wasi/static-executable-args.lnk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Driver/Inputs/imported_modules/ComplexModuleGraph/FlightKit.h: -------------------------------------------------------------------------------- 1 | #import "CoreShip.h" 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/imported_modules/InvalidOverlay/module.modulemap: -------------------------------------------------------------------------------- 1 | module InvalidOverlay {} 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/libEmpty.so: -------------------------------------------------------------------------------- 1 | /* Just an empty file that looks like an ELF shared object */ 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/loaded_module_trace_header.h: -------------------------------------------------------------------------------- 1 | #include "loaded_module_trace_header2.h" 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/loaded_module_trace_header2.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/loaded_module_trace_imports_module.swift: -------------------------------------------------------------------------------- 1 | import Module 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/unicode.txt: -------------------------------------------------------------------------------- 1 | 你好.swift 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/xcrun-empty.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo 3 | -------------------------------------------------------------------------------- /test/Driver/Inputs/xcrun-return-self.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo $0 3 | -------------------------------------------------------------------------------- /test/Driver/Inputs/xcrun.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo /path/to/sdk/ 3 | -------------------------------------------------------------------------------- /test/Driver/Inputs/你好.swift: -------------------------------------------------------------------------------- 1 | // 你好.swift -- a test input with a Unicode file name 2 | -------------------------------------------------------------------------------- /test/Driver/badJ.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/badJ.swift -------------------------------------------------------------------------------- /test/Driver/crash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/crash.swift -------------------------------------------------------------------------------- /test/Driver/help.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/help.swift -------------------------------------------------------------------------------- /test/Driver/sdk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/sdk.swift -------------------------------------------------------------------------------- /test/Driver/vfs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/vfs.swift -------------------------------------------------------------------------------- /test/Driver/wasm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Driver/wasm.swift -------------------------------------------------------------------------------- /test/Frontend/Inputs/dependencies/UserClangModule.h: -------------------------------------------------------------------------------- 1 | #define USER_VERSION 1 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/invalid-module-name.swift: -------------------------------------------------------------------------------- 1 | func meow() { 2 | } 3 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/invalid.module.name.swift: -------------------------------------------------------------------------------- 1 | func meow() { 2 | } 3 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/multiple_input/lib.swift: -------------------------------------------------------------------------------- 1 | func libraryFunction() {} 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/same_filename/A/File.swift: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/same_filename/B/File.swift: -------------------------------------------------------------------------------- 1 | class Bar {} 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/single_int.swift: -------------------------------------------------------------------------------- 1 | var x : Int = 0 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/vfs/a-header: -------------------------------------------------------------------------------- 1 | #define GREAT_SUCCESS 1 2 | -------------------------------------------------------------------------------- /test/Frontend/Inputs/vfs/b-header: -------------------------------------------------------------------------------- 1 | #define MAJOR_SUCCESS 1 2 | -------------------------------------------------------------------------------- /test/Frontend/vfs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Frontend/vfs.swift -------------------------------------------------------------------------------- /test/Generics/Inputs/issue-51450-other.swift: -------------------------------------------------------------------------------- 1 | public protocol P { 2 | associatedtype T 3 | } 4 | -------------------------------------------------------------------------------- /test/IDE/Inputs/corrupted_module.swiftmodule: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /test/IDE/coloring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/IDE/coloring.swift -------------------------------------------------------------------------------- /test/IDE/newtype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/IDE/newtype.swift -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/err_type_complete.swift: -------------------------------------------------------------------------------- 1 | var x : Int<> 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/for_incomplete1.swift: -------------------------------------------------------------------------------- 1 | func foo() { 2 | for i in 1...10 3 | 4 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete1.swift: -------------------------------------------------------------------------------- 1 | func 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete12.swift: -------------------------------------------------------------------------------- 1 | func foo() { 2 | return 3 | func goo 4 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete2.swift: -------------------------------------------------------------------------------- 1 | func foo 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete3.swift: -------------------------------------------------------------------------------- 1 | func foo( 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete4.swift: -------------------------------------------------------------------------------- 1 | func foo(x : 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete5.swift: -------------------------------------------------------------------------------- 1 | func foo(x : Int, 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete6.swift: -------------------------------------------------------------------------------- 1 | func foo(x : Int) 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/func_incomplete7.swift: -------------------------------------------------------------------------------- 1 | func foo(x : Int) -> 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/invalid_interpolation1.swift: -------------------------------------------------------------------------------- 1 | foo("\()") -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/multi_line_string1.swift: -------------------------------------------------------------------------------- 1 | """ 2 | some 3 | multiline 4 | string -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/multi_line_string4.swift: -------------------------------------------------------------------------------- 1 | #""" 2 | raw 3 | multiline 4 | string -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/nominal_complete.swift: -------------------------------------------------------------------------------- 1 | class C { 2 | var x = 0 3 | } 4 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/nominal_incomplete.swift: -------------------------------------------------------------------------------- 1 | class C { 2 | var x = 0 3 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/nominal_incomplete2.swift: -------------------------------------------------------------------------------- 1 | class C 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/nominal_incomplete3.swift: -------------------------------------------------------------------------------- 1 | class 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/toplevel_incomplete3.swift: -------------------------------------------------------------------------------- 1 | var x = 0 2 | x. 3 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/toplevel_incomplete4.swift: -------------------------------------------------------------------------------- 1 | var x = 0 2 | x + 3 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/toplevel_incomplete5.swift: -------------------------------------------------------------------------------- 1 | x( 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/type_incomplete1.swift: -------------------------------------------------------------------------------- 1 | var x : Int. 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/type_incomplete2.swift: -------------------------------------------------------------------------------- 1 | var x : Int< 2 | -------------------------------------------------------------------------------- /test/IDE/test-input-complete/Inputs/type_incomplete3.swift: -------------------------------------------------------------------------------- 1 | var x : Int ()) {} 2 | -------------------------------------------------------------------------------- /test/Misc/tbi.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Misc/tbi.sil -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/BadStdlib.sdk/usr/include/ClangMod.h: -------------------------------------------------------------------------------- 1 | typedef int * HasPointer; 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/ShadowyHorror.swift: -------------------------------------------------------------------------------- 1 | public class module_shadowing {} 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/exported-module-name-after/CoreKit.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/exported-module-name-before/CoreKit.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/implicit-options-inheritance/CIMod.h: -------------------------------------------------------------------------------- 1 | void funcCI(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/A.h: -------------------------------------------------------------------------------- 1 | void a(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/B1.h: -------------------------------------------------------------------------------- 1 | void b1(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/B2.h: -------------------------------------------------------------------------------- 1 | void b2(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/B3.h: -------------------------------------------------------------------------------- 1 | void b2(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/C.h: -------------------------------------------------------------------------------- 1 | void c(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/D.h: -------------------------------------------------------------------------------- 1 | void d(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/NotSoSecret.h: -------------------------------------------------------------------------------- 1 | void notSoSecret(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/NotSoSecret2.h: -------------------------------------------------------------------------------- 1 | void notSoSecret2(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/imports-clang-modules/Secret_BAD.h: -------------------------------------------------------------------------------- 1 | void secret(void); 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/other.swift: -------------------------------------------------------------------------------- 1 | public func otherFileFunction() {} -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/preconcurrency.swift: -------------------------------------------------------------------------------- 1 | public class NotSendable { } 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/stdlib_rebuild/usr/include/ClangModuleHeader.h: -------------------------------------------------------------------------------- 1 | struct CMThing {}; 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/submodule-type/HasSubmodule.h: -------------------------------------------------------------------------------- 1 | struct HasSubmoduleType {}; 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/Inputs/submodule-type/Submodule.h: -------------------------------------------------------------------------------- 1 | struct SubmoduleType {}; 2 | -------------------------------------------------------------------------------- /test/ModuleInterface/ModuleCache/Inputs/mock-sdk/usr/include/SomeCModule.h: -------------------------------------------------------------------------------- 1 | extern int x; 2 | -------------------------------------------------------------------------------- /test/NameLookup/Inputs/MemberImportVisibility/Categories_D.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty 2 | -------------------------------------------------------------------------------- /test/PCMacro/else.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/PCMacro/else.swift -------------------------------------------------------------------------------- /test/PCMacro/for.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/PCMacro/for.swift -------------------------------------------------------------------------------- /test/PCMacro/if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/PCMacro/if.swift -------------------------------------------------------------------------------- /test/PCMacro/init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/PCMacro/init.swift -------------------------------------------------------------------------------- /test/Parse/ConditionalCompilation/Inputs/rdar19548610a.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Parse/actor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/actor.swift -------------------------------------------------------------------------------- /test/Parse/async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/async.swift -------------------------------------------------------------------------------- /test/Parse/const.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/const.swift -------------------------------------------------------------------------------- /test/Parse/enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/enum.swift -------------------------------------------------------------------------------- /test/Parse/errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/errors.swift -------------------------------------------------------------------------------- /test/Parse/guard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/guard.swift -------------------------------------------------------------------------------- /test/Parse/super.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/super.swift -------------------------------------------------------------------------------- /test/Parse/switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/switch.swift -------------------------------------------------------------------------------- /test/Parse/try.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/try.swift -------------------------------------------------------------------------------- /test/Parse/using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Parse/using.swift -------------------------------------------------------------------------------- /test/Parse/utf8_bom.swift: -------------------------------------------------------------------------------- 1 | // RUN: %target-typecheck-verify-swift 2 | struct UTF8Test {} 3 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/CrossCompiler.framework/Modules/CrossCompiler.swiftmodule/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/CrossCompiler.framework/cross-compiler: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/clang-headers/swift/objc-prologue.h: -------------------------------------------------------------------------------- 1 | #error "Prologue included" 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ExplicitSub.ExSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseEE; 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ExplicitSub.ImSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseEI; 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ExplicitSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseE; 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ImplicitSub.ExSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseIE; 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ImplicitSub.ImSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseII; 2 | -------------------------------------------------------------------------------- /test/PrintAsObjC/Inputs/custom-modules/Base.ImplicitSub.h: -------------------------------------------------------------------------------- 1 | typedef int BaseI; 2 | -------------------------------------------------------------------------------- /test/Profiler/Inputs/coverage_num_threads1.swift: -------------------------------------------------------------------------------- 1 | func func1() {} 2 | -------------------------------------------------------------------------------- /test/Profiler/Inputs/coverage_num_threads2.swift: -------------------------------------------------------------------------------- 1 | func func2() {} 2 | -------------------------------------------------------------------------------- /test/Runtime/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Runtime/Paths.cpp -------------------------------------------------------------------------------- /test/SIL/cloning.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SIL/cloning.sil -------------------------------------------------------------------------------- /test/SILGen/82368.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/82368.swift -------------------------------------------------------------------------------- /test/SILGen/Inputs/def_global.swift: -------------------------------------------------------------------------------- 1 | public var ExportedVar = 3 2 | 3 | -------------------------------------------------------------------------------- /test/SILGen/Inputs/default_arguments_other.swift: -------------------------------------------------------------------------------- 1 | public func otherDefaultArguments(x: Int = 0) {} 2 | -------------------------------------------------------------------------------- /test/SILGen/Inputs/usr/include/dispatch.h: -------------------------------------------------------------------------------- 1 | 2 | typedef void (^dispatch_block_t)(void); 3 | 4 | -------------------------------------------------------------------------------- /test/SILGen/casts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/casts.swift -------------------------------------------------------------------------------- /test/SILGen/cdecl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/cdecl.swift -------------------------------------------------------------------------------- /test/SILGen/cf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/cf.swift -------------------------------------------------------------------------------- /test/SILGen/decls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/decls.swift -------------------------------------------------------------------------------- /test/SILGen/enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/enum.swift -------------------------------------------------------------------------------- /test/SILGen/final.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/final.swift -------------------------------------------------------------------------------- /test/SILGen/owned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/owned.swift -------------------------------------------------------------------------------- /test/SILGen/super.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/super.swift -------------------------------------------------------------------------------- /test/SILGen/types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/types.swift -------------------------------------------------------------------------------- /test/SILGen/weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/SILGen/weak.swift -------------------------------------------------------------------------------- /test/SILOptimizer/Inputs/global-functionptr-main.swift: -------------------------------------------------------------------------------- 1 | import Test 2 | 3 | testit(0) 4 | 5 | -------------------------------------------------------------------------------- /test/SILOptimizer/Inputs/licm_and_global_addr/main.swift: -------------------------------------------------------------------------------- 1 | 2 | testit(3) 3 | -------------------------------------------------------------------------------- /test/SILOptimizer/Inputs/mandatory_inlining_devirt_other.swift: -------------------------------------------------------------------------------- 1 | 2 | class Middle : Base { } 3 | 4 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/A.h: -------------------------------------------------------------------------------- 1 | void funcA(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/ClangModuleWithOverlayedDep.h: -------------------------------------------------------------------------------- 1 | #include "F.h" 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/CycleClangMiddle.h: -------------------------------------------------------------------------------- 1 | #include "CycleOverlay.h" 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/CycleOverlay.h: -------------------------------------------------------------------------------- 1 | void funcOverlay(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/D.h: -------------------------------------------------------------------------------- 1 | void funcD(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/ExtraCModules/CrossImportTestModule.h: -------------------------------------------------------------------------------- 1 | void funcCIM(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/ExtraCModules/SubE.h: -------------------------------------------------------------------------------- 1 | void funcEE(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/F.h: -------------------------------------------------------------------------------- 1 | void funcF(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/I.h: -------------------------------------------------------------------------------- 1 | void funcI(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/X.h: -------------------------------------------------------------------------------- 1 | void funcX(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/X_Private.h: -------------------------------------------------------------------------------- 1 | void funcXPrivate(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/Y.h: -------------------------------------------------------------------------------- 1 | void funcY(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/CHeaders/Y_Private.h: -------------------------------------------------------------------------------- 1 | void funcYPrivate(void); 2 | -------------------------------------------------------------------------------- /test/ScanDependencies/Inputs/unicode_filёnamё.swift: -------------------------------------------------------------------------------- 1 | func foo() { 2 | print(1) 3 | } 4 | -------------------------------------------------------------------------------- /test/Sema/Inputs/diag_non_ephemeral_globals.swift: -------------------------------------------------------------------------------- 1 | 2 | var globalS = S() 3 | -------------------------------------------------------------------------------- /test/Sema/Inputs/enum_with_raw_type.swift: -------------------------------------------------------------------------------- 1 | public enum Foo: Int { case A } 2 | -------------------------------------------------------------------------------- /test/Sema/Inputs/public-private-sdk/usr/local/include/LocalClang.h: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /test/Sema/discard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Sema/discard.swift -------------------------------------------------------------------------------- /test/Sema/sending.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Sema/sending.swift -------------------------------------------------------------------------------- /test/Serialization/Inputs/SourceInfo/File1.swift: -------------------------------------------------------------------------------- 1 | public func foo(val: MyStruct) { 2 | } 3 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/autolinking_public.swift: -------------------------------------------------------------------------------- 1 | // Empty module 2 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/corrupted_group_info.json: -------------------------------------------------------------------------------- 1 | { 2 | corrupteddata 3 | } -------------------------------------------------------------------------------- /test/Serialization/Inputs/def_enum_derived.swift: -------------------------------------------------------------------------------- 1 | extension Breakfast : Error {} 2 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/exported-modules/Exported.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/exported-modules/ExportedCore.h: -------------------------------------------------------------------------------- 1 | struct ExportedType {}; 2 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/multi-module-nested-type-2.swift: -------------------------------------------------------------------------------- 1 | import other 2 | 3 | typealias B = X.A 4 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/non-modular-header.h: -------------------------------------------------------------------------------- 1 | typedef struct { 2 | int x; 3 | } PlaceholderType; 4 | -------------------------------------------------------------------------------- /test/Serialization/Inputs/objc-xref/objc_xref.h: -------------------------------------------------------------------------------- 1 | @interface MyObject 2 | @end 3 | -------------------------------------------------------------------------------- /test/SourceKit/CodeComplete/Inputs/checkdeps/MyProject/Bridging.h: -------------------------------------------------------------------------------- 1 | #import "LocalCFunc.h" 2 | -------------------------------------------------------------------------------- /test/SourceKit/CodeComplete/Inputs/imported_by_aux_file.h: -------------------------------------------------------------------------------- 1 | void fromImportedByAuxFile() {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CodeComplete/Inputs/popular2.h: -------------------------------------------------------------------------------- 1 | @import PopularAPI3; 2 | -------------------------------------------------------------------------------- /test/SourceKit/CodeComplete/Inputs/popular3.h: -------------------------------------------------------------------------------- 1 | @interface EEModuleColor 2 | @end 3 | -------------------------------------------------------------------------------- /test/SourceKit/CompileNotifications/Inputs/parse-error.swift: -------------------------------------------------------------------------------- 1 | func 1() {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CursorInfo/Inputs/invalid_compiler_args/A/File.swift: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CursorInfo/Inputs/invalid_compiler_args/B/File.swift: -------------------------------------------------------------------------------- 1 | class Bar {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CursorInfo/Inputs/multiple_ast1.swift: -------------------------------------------------------------------------------- 1 | func foo1(_ x: Int) {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CursorInfo/Inputs/multiple_ast2.swift: -------------------------------------------------------------------------------- 1 | func foo2(_ x: Int) {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/CursorInfo/Inputs/rdar_18677108-2-b.swift: -------------------------------------------------------------------------------- 1 | import Blah 2 | 3 | -------------------------------------------------------------------------------- /test/SourceKit/DocumentStructure/Inputs/mark.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | // MARK: blah. 4 | -------------------------------------------------------------------------------- /test/SourceKit/ExtractComment/Inputs/NotComment1.swift: -------------------------------------------------------------------------------- 1 | class A {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/Indexing/Inputs/Swift.swiftmodule: -------------------------------------------------------------------------------- 1 | // Mock Stdlib module 2 | -------------------------------------------------------------------------------- /test/SourceKit/Indexing/Inputs/implicit-vis/a.swift: -------------------------------------------------------------------------------- 1 | class A { 2 | var b: B 3 | } 4 | -------------------------------------------------------------------------------- /test/SourceKit/Indexing/Inputs/implicit-vis/b.swift: -------------------------------------------------------------------------------- 1 | class B { 2 | var a: A 3 | } 4 | -------------------------------------------------------------------------------- /test/SourceKit/Misc/Inputs/10bytes.swift: -------------------------------------------------------------------------------- 1 | let a = 1 2 | -------------------------------------------------------------------------------- /test/SourceKit/Misc/Inputs/custom-resource-stdlib.swift: -------------------------------------------------------------------------------- 1 | public struct CoolInt {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/Misc/Inputs/main.swift: -------------------------------------------------------------------------------- 1 | func 🐶🐮(_ x: Int) {} 2 | -------------------------------------------------------------------------------- /test/SourceKit/Misc/Inputs/mymod/mymod.h: -------------------------------------------------------------------------------- 1 | void mymod_call_me(void); 2 | -------------------------------------------------------------------------------- /test/SourceKit/Refactoring/find-rename-ranges/empty.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/SourceKit/Sema/Inputs/empty.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SourceKit/Sema/Inputs/top_level.swift: -------------------------------------------------------------------------------- 1 | print("hi") 2 | -------------------------------------------------------------------------------- /test/SourceKit/SyntaxMapData/Inputs/syntaxmap-edit-remove.swift: -------------------------------------------------------------------------------- 1 | let l = 2 2 | l 3 | \( 56 4 | ) 5 | -------------------------------------------------------------------------------- /test/SourceKit/SyntaxMapData/Inputs/syntaxmap-partial-delete.swift: -------------------------------------------------------------------------------- 1 | 2 | let x = 421 3 | -------------------------------------------------------------------------------- /test/StringProcessing/Sema/Inputs/dummy.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/EmitWhileBuilding/EmitWhileBuilding.framework/ObjcProperty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/ExportedImport/ObjcProperty.framework/ObjcProperty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/FactoryInit/FactoryInit.framework/FactoryInit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/ObjcProperty/ObjcProperty.framework/ObjcProperty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/ObjcSynthesis/ObjcSynthesis.framework/ObjcSynthesis: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/Submodules/Mixed.h: -------------------------------------------------------------------------------- 1 | double outerVar = 1.0; 2 | -------------------------------------------------------------------------------- /test/SymbolGraph/ClangImporter/Inputs/Submodules/Submodule.h: -------------------------------------------------------------------------------- 1 | double innerVar = 2.0; 2 | -------------------------------------------------------------------------------- /test/SymbolGraph/Module/Inputs/ExportedImportExtensions/A.swift: -------------------------------------------------------------------------------- 1 | public struct SymbolFromA {} 2 | -------------------------------------------------------------------------------- /test/SymbolGraph/Something/Inputs/SomeProtocol.swift: -------------------------------------------------------------------------------- 1 | public protocol P { 2 | func foo() 3 | } 4 | -------------------------------------------------------------------------------- /test/SymbolGraph/Symbols/AccessLevelFilter/Inputs/Internal.swift: -------------------------------------------------------------------------------- 1 | struct S { } 2 | -------------------------------------------------------------------------------- /test/TBD/class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/class.swift -------------------------------------------------------------------------------- /test/TBD/enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/enum.swift -------------------------------------------------------------------------------- /test/TBD/function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/function.swift -------------------------------------------------------------------------------- /test/TBD/global.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/global.swift -------------------------------------------------------------------------------- /test/TBD/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/main.swift -------------------------------------------------------------------------------- /test/TBD/protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/protocol.swift -------------------------------------------------------------------------------- /test/TBD/struct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/struct.swift -------------------------------------------------------------------------------- /test/TBD/zippered.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/TBD/zippered.swift -------------------------------------------------------------------------------- /test/Unit/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Unit/lit.cfg -------------------------------------------------------------------------------- /test/Unsafe/Inputs/safe_swift_decls.swift: -------------------------------------------------------------------------------- 1 | public func iAmSafe() { } 2 | -------------------------------------------------------------------------------- /test/Unsafe/safe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/Unsafe/safe.swift -------------------------------------------------------------------------------- /test/abi/Inputs/macOS/arm64/synchronization/baseline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/abi/Inputs/macOS/arm64/synchronization/baseline-asserts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/abi/Inputs/macOS/x86_64/synchronization/baseline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/abi/Inputs/macOS/x86_64/synchronization/baseline-asserts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/api-digester/Inputs/ClangCake/module.modulemap: -------------------------------------------------------------------------------- 1 | module cake { 2 | header "Cake.h" 3 | } 4 | -------------------------------------------------------------------------------- /test/api-digester/Inputs/Foo-prot-allowlist.txt: -------------------------------------------------------------------------------- 1 | AnotherObjcProt 2 | -------------------------------------------------------------------------------- /test/api-digester/Inputs/ImportedIUO/imported_iuo.h: -------------------------------------------------------------------------------- 1 | void *ImportedIUOVar; 2 | -------------------------------------------------------------------------------- /test/api-digester/Inputs/cake_baseline/color.swift: -------------------------------------------------------------------------------- 1 | public enum Color { case Red } 2 | -------------------------------------------------------------------------------- /test/api-digester/Inputs/mock-sdk-modules.txt: -------------------------------------------------------------------------------- 1 | Foo 2 | SwiftFoo -------------------------------------------------------------------------------- /test/api-digester/Outputs/color_vs_empty.txt: -------------------------------------------------------------------------------- 1 | Enum Color is a new API without '@available' 2 | -------------------------------------------------------------------------------- /test/api-digester/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes.add('.test') 2 | -------------------------------------------------------------------------------- /test/attr/Inputs/custom-modules/testable_clang.h: -------------------------------------------------------------------------------- 1 | extern int clangGlobal; 2 | -------------------------------------------------------------------------------- /test/attr/Inputs/dynamicReplacementA.swift: -------------------------------------------------------------------------------- 1 | public struct TheReplaceables { 2 | } 3 | -------------------------------------------------------------------------------- /test/attr/Inputs/warn_unqualified_access_other.swift: -------------------------------------------------------------------------------- 1 | public func overloaded() {} 2 | -------------------------------------------------------------------------------- /test/attr/lexical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/attr/lexical.swift -------------------------------------------------------------------------------- /test/attr/open.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/attr/open.swift -------------------------------------------------------------------------------- /test/decl/Inputs/objc_override_multi_2.swift: -------------------------------------------------------------------------------- 1 | class Sub1 : Super1 { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /test/decl/init/Inputs/memberwise-init-multifile-other.swift: -------------------------------------------------------------------------------- 1 | struct S { 2 | var a = S() 3 | } 4 | -------------------------------------------------------------------------------- /test/decl/operator/Inputs/lookup_moduleD.swift: -------------------------------------------------------------------------------- 1 | 2 | precedencegroup DeclaredInModuleD {} 3 | -------------------------------------------------------------------------------- /test/diagnostics/Inputs/TestablePrintASTLocationsModule.swift: -------------------------------------------------------------------------------- 1 | func ambiguous() {} 2 | -------------------------------------------------------------------------------- /test/diagnostics/Inputs/extra-newlines-2.swift: -------------------------------------------------------------------------------- 1 | // Intentionally blank. 2 | 3 | -------------------------------------------------------------------------------- /test/diagnostics/Inputs/slash.swift: -------------------------------------------------------------------------------- 1 | public func /(lhs: String, b: Int) -> Bool { false } 2 | 3 | -------------------------------------------------------------------------------- /test/embedded/lto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/embedded/lto.swift -------------------------------------------------------------------------------- /test/expr/cast/cf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/expr/cast/cf.swift -------------------------------------------------------------------------------- /test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/lit.cfg -------------------------------------------------------------------------------- /test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/lit.site.cfg.in -------------------------------------------------------------------------------- /test/multifile/Inputs/protocol-conformance-rdar39805133-other.swift: -------------------------------------------------------------------------------- 1 | protocol DefaultInit { init() } 2 | -------------------------------------------------------------------------------- /test/multifile/constant-tuple-with-padding/Inputs/other.swift: -------------------------------------------------------------------------------- 1 | var g = (false, 0.0) 2 | -------------------------------------------------------------------------------- /test/remote-run/Inputs/upload/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-run/Inputs/upload/2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-run/Inputs/upload/3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-run/Inputs/upload/BAD.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sil-func-extractor/functions_to_preserve: -------------------------------------------------------------------------------- 1 | f6 2 | f8 -------------------------------------------------------------------------------- /test/sil-nm/basic.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/sil-nm/basic.sil -------------------------------------------------------------------------------- /test/stdlib/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Error.swift -------------------------------------------------------------------------------- /test/stdlib/Float.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Float.swift -------------------------------------------------------------------------------- /test/stdlib/Inputs/RuntimeRetroactiveConformance/A.swift: -------------------------------------------------------------------------------- 1 | public struct AType {} 2 | -------------------------------------------------------------------------------- /test/stdlib/Inputs/Unicode.rsp: -------------------------------------------------------------------------------- 1 | -module-name="日本語01" 2 | -------------------------------------------------------------------------------- /test/stdlib/KVO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/KVO.swift -------------------------------------------------------------------------------- /test/stdlib/Leak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Leak.swift -------------------------------------------------------------------------------- /test/stdlib/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Map.swift -------------------------------------------------------------------------------- /test/stdlib/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Never.swift -------------------------------------------------------------------------------- /test/stdlib/Nil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Nil.swift -------------------------------------------------------------------------------- /test/stdlib/POSIX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/POSIX.swift -------------------------------------------------------------------------------- /test/stdlib/Print.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Print.swift -------------------------------------------------------------------------------- /test/stdlib/SIMD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/SIMD.swift -------------------------------------------------------------------------------- /test/stdlib/Set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/Set.swift -------------------------------------------------------------------------------- /test/stdlib/mmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/mmap.swift -------------------------------------------------------------------------------- /test/stdlib/swap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stdlib/swap.swift -------------------------------------------------------------------------------- /test/stmt/async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stmt/async.swift -------------------------------------------------------------------------------- /test/stmt/defer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stmt/defer.swift -------------------------------------------------------------------------------- /test/stmt/errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stmt/errors.swift -------------------------------------------------------------------------------- /test/stmt/foreach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stmt/foreach.swift -------------------------------------------------------------------------------- /test/stmt/yield.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/stmt/yield.swift -------------------------------------------------------------------------------- /test/swift_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/swift_test.py -------------------------------------------------------------------------------- /test/type/Inputs/RuntimeAttrs.swift: -------------------------------------------------------------------------------- 1 | public struct CrossModuleTest {} 2 | -------------------------------------------------------------------------------- /test/type/array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/type/array.swift -------------------------------------------------------------------------------- /test/type/opaque.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/type/opaque.swift -------------------------------------------------------------------------------- /test/type/self.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/type/self.swift -------------------------------------------------------------------------------- /test/type/types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/test/type/types.swift -------------------------------------------------------------------------------- /toolchain-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/toolchain-linux.sh -------------------------------------------------------------------------------- /toolchain-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/toolchain-osx.sh -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/SourceKit/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SourceKit) 2 | -------------------------------------------------------------------------------- /tools/SourceKit/include/SourceKit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Core) 2 | -------------------------------------------------------------------------------- /tools/driver/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/tools/driver/driver.cpp -------------------------------------------------------------------------------- /tools/libMockPlugin/libMockPlugin.exports: -------------------------------------------------------------------------------- 1 | _mock_plugin_main 2 | -------------------------------------------------------------------------------- /tools/swift-inspect/.gitignore: -------------------------------------------------------------------------------- 1 | Package.resolved 2 | -------------------------------------------------------------------------------- /userdocs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/userdocs/CMakeLists.txt -------------------------------------------------------------------------------- /userdocs/diagnostics/.gitignore: -------------------------------------------------------------------------------- 1 | .docc-build -------------------------------------------------------------------------------- /utils/80+-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/80+-check -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/SwiftAtomics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/SwiftAtomics.py -------------------------------------------------------------------------------- /utils/SwiftIntTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/SwiftIntTypes.py -------------------------------------------------------------------------------- /utils/analyze_deps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/analyze_deps.rb -------------------------------------------------------------------------------- /utils/android/adb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/android/adb_push_built_products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/android/adb_test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-clang-modules-watchos.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-appletvos.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-common.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-iosmac.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-iphoneos.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-macosx.txt: -------------------------------------------------------------------------------- 1 | CreateML 2 | -------------------------------------------------------------------------------- /utils/api_checker/sdk-module-lists/fixed-swift-modules-watchos.txt: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /utils/backtrace-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/backtrace-check -------------------------------------------------------------------------------- /utils/bug_reducer/bug_reducer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/build-presets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build-presets.ini -------------------------------------------------------------------------------- /utils/build-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build-script -------------------------------------------------------------------------------- /utils/build-script-impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build-script-impl -------------------------------------------------------------------------------- /utils/build-toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build-toolchain -------------------------------------------------------------------------------- /utils/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build.cmd -------------------------------------------------------------------------------- /utils/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/build.ps1 -------------------------------------------------------------------------------- /utils/build_swift/resources/SwiftPM-Unified-Build.xcworkspace/.gitignore: -------------------------------------------------------------------------------- 1 | /xcuserdata 2 | -------------------------------------------------------------------------------- /utils/check-incremental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/check-incremental -------------------------------------------------------------------------------- /utils/chex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/chex.py -------------------------------------------------------------------------------- /utils/deserialize-incremental-syntax-tree.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/dtrace/runtime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/dtrace/runtime.d -------------------------------------------------------------------------------- /utils/gen-unicode-data/README.md: -------------------------------------------------------------------------------- 1 | # gen-unicode-data 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /utils/generate-xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/generate-xcode -------------------------------------------------------------------------------- /utils/gyb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import gyb 3 | gyb.main() 4 | -------------------------------------------------------------------------------- /utils/gyb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/gyb.py -------------------------------------------------------------------------------- /utils/line-directive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/line-directive -------------------------------------------------------------------------------- /utils/merge-features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/merge-features.py -------------------------------------------------------------------------------- /utils/protocol_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/protocol_graph.py -------------------------------------------------------------------------------- /utils/pygments/swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/pygments/swift.py -------------------------------------------------------------------------------- /utils/python_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/python_format.py -------------------------------------------------------------------------------- /utils/python_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/python_lint.py -------------------------------------------------------------------------------- /utils/recursive-lipo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/recursive-lipo -------------------------------------------------------------------------------- /utils/remote-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/remote-run -------------------------------------------------------------------------------- /utils/rth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/rth -------------------------------------------------------------------------------- /utils/run-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/run-test -------------------------------------------------------------------------------- /utils/rusage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/rusage.py -------------------------------------------------------------------------------- /utils/scale-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/scale-test -------------------------------------------------------------------------------- /utils/sil-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/sil-mode.el -------------------------------------------------------------------------------- /utils/split_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/split_file.py -------------------------------------------------------------------------------- /utils/swift-api-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/swift-api-dump.py -------------------------------------------------------------------------------- /utils/swift-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/swift-bench.py -------------------------------------------------------------------------------- /utils/swift-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/swift-mode.el -------------------------------------------------------------------------------- /utils/swift-rpathize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/swift-rpathize.py -------------------------------------------------------------------------------- /utils/swift_build_support/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /utils/update-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/update-checkout -------------------------------------------------------------------------------- /utils/update-checkout.cmd: -------------------------------------------------------------------------------- 1 | python "%~dp0\update-checkout" %* 2 | -------------------------------------------------------------------------------- /utils/update_checkout/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/viewcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/viewcfg -------------------------------------------------------------------------------- /utils/wasm-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/utils/wasm-run.py -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/A.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/B.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/C.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/CoincidentalNameCollision.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/D.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/E.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/F.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/G.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/H.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/I.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/J.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/K.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/L.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/M.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/N.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/O.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/P.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/Q.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/R.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/S.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/T.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/U.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/V.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/W.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/X.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/Y.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/bridging-header-reentrancy/Z.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/A.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/B.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/C.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/D.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/E.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ClangImporter/Inputs/macros-repeatedly-redefined/F.h: -------------------------------------------------------------------------------- 1 | #define REDEFINED 1 -------------------------------------------------------------------------------- /validation-test/ParseableInterface/Inputs/failing-overlay/HasOverlay.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validation-test/ParseableInterface/Inputs/failing-overlay/ImportsOverlay.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /validation-test/Sema/Inputs/rdar36801676.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | extension Notification.Name {} 3 | -------------------------------------------------------------------------------- /validation-test/Sema/Inputs/rdar36801676_empty.swift: -------------------------------------------------------------------------------- 1 | // Empty swift source file. 2 | -------------------------------------------------------------------------------- /validation-test/execution/Inputs/custom-modules/foo.h: -------------------------------------------------------------------------------- 1 | int test(); 2 | -------------------------------------------------------------------------------- /validation-test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spevans/swift-kstdlib/HEAD/validation-test/lit.cfg -------------------------------------------------------------------------------- /validation-test/stdlib/Inputs: -------------------------------------------------------------------------------- 1 | ../../test/stdlib/Inputs -------------------------------------------------------------------------------- /validation-test/stdlib/MicroStdlib/Inputs/main.swift: -------------------------------------------------------------------------------- 1 | printHello() 2 | 3 | --------------------------------------------------------------------------------