gitextract_8e1q7if2/ ├── .gitignore ├── .idea/ │ ├── .name │ ├── modules.xml │ ├── runConfigurations/ │ │ ├── TyphoonSwift_iOS.xml │ │ └── TyphoonSwift_macOS.xml │ ├── typhoon-swift.iml │ ├── vcs.xml │ ├── workspace.xml │ └── xcode.xml ├── Dependencies/ │ ├── Package.swift │ ├── Packages/ │ │ ├── Clang_C-1.0.2/ │ │ │ ├── BuildSystem.h │ │ │ ├── CXCompilationDatabase.h │ │ │ ├── CXErrorCode.h │ │ │ ├── CXString.h │ │ │ ├── Documentation.h │ │ │ ├── Index.h │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── Platform.h │ │ │ └── module.modulemap │ │ ├── Result-3.0.0/ │ │ │ ├── .gitignore │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Result/ │ │ │ │ ├── Info.plist │ │ │ │ ├── Result.h │ │ │ │ ├── Result.swift │ │ │ │ └── ResultProtocol.swift │ │ │ ├── Result.podspec │ │ │ ├── Result.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ └── Result-watchOS.xcscheme │ │ │ └── Tests/ │ │ │ ├── LinuxMain.swift │ │ │ └── ResultTests/ │ │ │ ├── Info.plist │ │ │ └── ResultTests.swift │ │ ├── SWXMLHash-3.0.2/ │ │ │ ├── .gitignore │ │ │ ├── .swift-version │ │ │ ├── .swiftlint.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── SWXMLHash.podspec │ │ │ ├── SWXMLHash.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── SWXMLHash OSX.xcscheme │ │ │ │ ├── SWXMLHash iOS.xcscheme │ │ │ │ ├── SWXMLHash tvOS.xcscheme │ │ │ │ └── SWXMLHash watchOS.xcscheme │ │ │ ├── SWXMLHash.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── SWXMLHashPlayground.playground/ │ │ │ │ ├── contents.xcplayground │ │ │ │ └── section-1.swift │ │ │ ├── Scripts/ │ │ │ │ └── build.sh │ │ │ ├── Source/ │ │ │ │ ├── Info.plist │ │ │ │ ├── SWXMLHash+TypeConversion.swift │ │ │ │ ├── SWXMLHash.h │ │ │ │ └── SWXMLHash.swift │ │ │ └── Tests/ │ │ │ ├── LinuxMain.swift │ │ │ └── SWXMLHashTests/ │ │ │ ├── Info.plist │ │ │ ├── LazyTypesConversionTests.swift │ │ │ ├── LazyWhiteSpaceParsingTests.swift │ │ │ ├── LazyXMLParsingTests.swift │ │ │ ├── LinuxShims.swift │ │ │ ├── MixedTextWithXMLElementsTests.swift │ │ │ ├── SWXMLHashConfigTests.swift │ │ │ ├── TypeConversionArrayOfNonPrimitiveTypesTests.swift │ │ │ ├── TypeConversionBasicTypesTests.swift │ │ │ ├── TypeConversionComplexTypesTests.swift │ │ │ ├── TypeConversionPrimitypeTypesTests.swift │ │ │ ├── WhiteSpaceParsingTests.swift │ │ │ ├── XMLParsingTests.swift │ │ │ └── test.xml │ │ └── Witness-0.4.0/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources/ │ │ │ ├── EventStream.swift │ │ │ ├── FileEvent.swift │ │ │ └── Witness.swift │ │ └── Tests/ │ │ ├── LinuxMain.swift │ │ └── WitnessPackageTests/ │ │ └── WitnessPackageTests.swift │ ├── TyphoonSwiftDependencies.xcodeproj/ │ │ ├── Commandant_Info.plist │ │ ├── PathKit_Info.plist │ │ ├── Result_Info.plist │ │ ├── SWXMLHash_Info.plist │ │ ├── SourceKittenFramework_Info.plist │ │ ├── Spectre_Info.plist │ │ ├── Stencil_Info.plist │ │ ├── Witness_Info.plist │ │ ├── Yaml_Info.plist │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── TyphoonSwiftDependencies.xcscheme │ │ └── xcschememanagement.plist │ └── update.sh ├── Example/ │ └── TyphoonSwiftExample/ │ ├── Typhoon.plist │ ├── TyphoonSwiftExample/ │ │ ├── AppDelegate.swift │ │ ├── Assemblies/ │ │ │ └── input.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Typhoon/ │ │ │ ├── Runtime/ │ │ │ │ ├── ActivatedAssembly.swift │ │ │ │ ├── ActivatedDefinition.swift │ │ │ │ ├── Model.swift │ │ │ │ ├── Pools.swift │ │ │ │ └── Stack.swift │ │ │ └── assemblies.swift │ │ └── ViewController.swift │ └── TyphoonSwiftExample.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── README.md ├── Resources/ │ ├── Runtime/ │ │ ├── ActivatedAssembly.swift │ │ ├── ActivatedDefinition.swift │ │ ├── Model.swift │ │ ├── Pools.swift │ │ └── Stack.swift │ └── Templates/ │ ├── Assemblies.stencil │ └── Definition.stencil ├── Sources/ │ ├── AssemblyDefinitionBuilder.swift │ ├── AssemblyGenerator.swift │ ├── BuilderModels.swift │ ├── Config.swift │ ├── Definitions.swift │ ├── FileDefinitionBuilder.swift │ ├── FileStructure.swift │ ├── JSON.swift │ ├── Launcher.swift │ ├── MethodDefinition.swift │ ├── MethodDefinitionBuilder+Inspections.swift │ ├── MethodDefinitionBuilder.swift │ ├── RegularExpressionExtensions.swift │ ├── SourceLangSwift.swift │ ├── StringUtils.swift │ ├── SwiftDocumentKey.swift │ └── main.swift ├── Typhoon.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── Typhoon.xcscmblueprint └── TyphoonSwift.xcodeproj/ ├── Configs/ │ └── Project.xcconfig ├── PathKit_Info.plist ├── Spectre_Info.plist ├── Stencil_Info.plist ├── TyphoonPackageTests_Info.plist ├── Witness_Info.plist ├── project.pbxproj ├── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── TyphoonSwift.xcscmblueprint └── xcshareddata/ └── xcschemes/ ├── TyphoonPackageTests.xcscheme ├── TyphoonSwift.xcscheme └── xcschememanagement.plist