├── .gitignore ├── .xcode-indexstore-debug.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── Plugins └── IndexStoreDebugBuildToolPlugin │ └── plugin.swift ├── README.md └── Sources ├── XcodeIndexStoreDebugCore ├── Extension │ ├── IndexStoreOccurrence+.swift │ ├── IndexStoreOccurrence.Role+.swift │ ├── IndexStoreSymbol.Kind+.swift │ ├── IndexStoreSymbol.Language+.swift │ ├── IndexStoreSymbol.Property+.swift │ ├── IndexStoreSymbol.SubKind+.swift │ └── String+.swift ├── IndexStoreReporter.swift ├── Model │ ├── Filter.swift │ └── FilterCondition.swift └── Protocol │ └── StringConvertible.swift └── xcode-indexstore-debug ├── Extension └── ReportType+.swift ├── Model └── Config.swift └── xcode_indexstore_debug.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.xcode-indexstore-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/.xcode-indexstore-debug.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugins/IndexStoreDebugBuildToolPlugin/plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Plugins/IndexStoreDebugBuildToolPlugin/plugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/README.md -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreOccurrence+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreOccurrence+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreOccurrence.Role+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreOccurrence.Role+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Kind+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Kind+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Language+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Language+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Property+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.Property+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.SubKind+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/IndexStoreSymbol.SubKind+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Extension/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Extension/String+.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/IndexStoreReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/IndexStoreReporter.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Model/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Model/Filter.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Model/FilterCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Model/FilterCondition.swift -------------------------------------------------------------------------------- /Sources/XcodeIndexStoreDebugCore/Protocol/StringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/XcodeIndexStoreDebugCore/Protocol/StringConvertible.swift -------------------------------------------------------------------------------- /Sources/xcode-indexstore-debug/Extension/ReportType+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/xcode-indexstore-debug/Extension/ReportType+.swift -------------------------------------------------------------------------------- /Sources/xcode-indexstore-debug/Model/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/xcode-indexstore-debug/Model/Config.swift -------------------------------------------------------------------------------- /Sources/xcode-indexstore-debug/xcode_indexstore_debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-x9/xcode-indexstore-debug/HEAD/Sources/xcode-indexstore-debug/xcode_indexstore_debug.swift --------------------------------------------------------------------------------