├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc.json ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── HOW_TO_BUILD.md ├── LICENSE.md ├── README.md ├── Tricks_and_tips.md ├── XCBBuildService.spec ├── esbuild.js ├── icons └── icon.png ├── make.sh ├── media ├── autocomplete.gif ├── project_tree.gif └── sidebar_tool.svg ├── package.json ├── resources ├── app_log.py ├── attach_lldb.py ├── fileLock.py ├── helper.py ├── lldb_exe_stub.c ├── open_xcode.sh ├── parent_xcodebuild.py ├── project_helper.rb ├── runtime_warning_database.py ├── update_debugger_launching.py ├── update_git_exclude_if_any.py ├── wait_debugger.py └── xcode_service_setup.py ├── sourcekit_build.sh ├── src ├── AutocompleteWatcher.ts ├── BuildTaskProvider.ts ├── CommandManagement │ ├── AtomicCommand.ts │ ├── BundlePath.ts │ └── CommandContext.ts ├── Debug │ ├── DebugAdapterTracker.ts │ ├── DebugAdapterTrackerFactory.ts │ ├── DebugConfigurationProvider.ts │ ├── LLDBDapDescriptorFactory.ts │ ├── ParentDebugAdapterTracker.ts │ ├── SimulatorFocus.ts │ └── XCTestRunInspector.ts ├── Executor.ts ├── LSP │ ├── DefinitionProvider.ts │ ├── LSPTestsProvider.ts │ ├── ReadOnlyDocumentProvider.ts │ ├── SourceKitLSPErrorHandler.ts │ ├── SwiftLSPClient.ts │ ├── WorkspaceContext.ts │ ├── getReferenceDocument.ts │ ├── lspExtension.ts │ ├── peekDocuments.ts │ └── uriConverters.ts ├── ProblemDiagnosticResolver.ts ├── ProjectManager │ ├── ProjectManager.ts │ ├── ProjectTree.ts │ ├── ProjectsCache.ts │ └── XcodeProjectFileProxy.ts ├── Services │ ├── BuildManager.ts │ ├── ProjectSettingsProvider.ts │ └── RunManager.ts ├── StatusBar │ └── StatusBar.ts ├── TerminalShell.ts ├── TestsProvider │ ├── CoverageProvider.ts │ ├── RawLogParsers │ │ ├── TestCaseAsyncParser.ts │ │ └── TestCaseProblemParser.ts │ ├── TestItemProvider │ │ ├── TestCase.ts │ │ ├── TestContainer.ts │ │ ├── TestFile.ts │ │ ├── TestHeading.ts │ │ ├── TestProject.ts │ │ ├── TestTarget.ts │ │ └── parseClass.ts │ ├── TestProvider.ts │ ├── TestResultProvider.ts │ └── TestTreeContext.ts ├── Tools │ ├── InteractiveTerminal.ts │ ├── ToolsManager.ts │ └── XCRunHelper.ts ├── XCBBuildServiceProxy │ ├── MessageReader.py │ ├── XCBBuildService.py │ ├── config.txt │ └── request_service.txt ├── XcodeSideTreePanel │ ├── ProjectConfigurationDataProvider.ts │ ├── RuntimeWarningsDataProvider.ts │ └── RuntimeWarningsLogWatcher.ts ├── buildCommands.ts ├── commands.ts ├── env.ts ├── extension.ts ├── inputPicker.ts ├── nonActiveExtension.ts ├── quickPickHistory.ts └── utils.ts ├── syntaxes ├── arm.disasm ├── arm64.disasm ├── disassembly.json └── x86.disasm ├── test └── extension │ ├── DefinitionProvider.test.ts │ ├── ProblemDiagnostic │ ├── ProblemDiagnosticResolver.test.ts │ └── mocks │ │ ├── build_log_empty.txt │ │ ├── build_log_success.txt │ │ ├── build_log_success_with_warnings.txt │ │ ├── build_log_with_errors.txt │ │ └── build_log_with_linker_errors.txt │ └── extension.test.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .vscode-test 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HOW_TO_BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/HOW_TO_BUILD.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/README.md -------------------------------------------------------------------------------- /Tricks_and_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/Tricks_and_tips.md -------------------------------------------------------------------------------- /XCBBuildService.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/XCBBuildService.spec -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/esbuild.js -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/icons/icon.png -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/make.sh -------------------------------------------------------------------------------- /media/autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/media/autocomplete.gif -------------------------------------------------------------------------------- /media/project_tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/media/project_tree.gif -------------------------------------------------------------------------------- /media/sidebar_tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/media/sidebar_tool.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/package.json -------------------------------------------------------------------------------- /resources/app_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/app_log.py -------------------------------------------------------------------------------- /resources/attach_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/attach_lldb.py -------------------------------------------------------------------------------- /resources/fileLock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/fileLock.py -------------------------------------------------------------------------------- /resources/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/helper.py -------------------------------------------------------------------------------- /resources/lldb_exe_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/lldb_exe_stub.c -------------------------------------------------------------------------------- /resources/open_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/open_xcode.sh -------------------------------------------------------------------------------- /resources/parent_xcodebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/parent_xcodebuild.py -------------------------------------------------------------------------------- /resources/project_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/project_helper.rb -------------------------------------------------------------------------------- /resources/runtime_warning_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/runtime_warning_database.py -------------------------------------------------------------------------------- /resources/update_debugger_launching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/update_debugger_launching.py -------------------------------------------------------------------------------- /resources/update_git_exclude_if_any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/update_git_exclude_if_any.py -------------------------------------------------------------------------------- /resources/wait_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/wait_debugger.py -------------------------------------------------------------------------------- /resources/xcode_service_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/resources/xcode_service_setup.py -------------------------------------------------------------------------------- /sourcekit_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/sourcekit_build.sh -------------------------------------------------------------------------------- /src/AutocompleteWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/AutocompleteWatcher.ts -------------------------------------------------------------------------------- /src/BuildTaskProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/BuildTaskProvider.ts -------------------------------------------------------------------------------- /src/CommandManagement/AtomicCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/CommandManagement/AtomicCommand.ts -------------------------------------------------------------------------------- /src/CommandManagement/BundlePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/CommandManagement/BundlePath.ts -------------------------------------------------------------------------------- /src/CommandManagement/CommandContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/CommandManagement/CommandContext.ts -------------------------------------------------------------------------------- /src/Debug/DebugAdapterTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/DebugAdapterTracker.ts -------------------------------------------------------------------------------- /src/Debug/DebugAdapterTrackerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/DebugAdapterTrackerFactory.ts -------------------------------------------------------------------------------- /src/Debug/DebugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/DebugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/Debug/LLDBDapDescriptorFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/LLDBDapDescriptorFactory.ts -------------------------------------------------------------------------------- /src/Debug/ParentDebugAdapterTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/ParentDebugAdapterTracker.ts -------------------------------------------------------------------------------- /src/Debug/SimulatorFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/SimulatorFocus.ts -------------------------------------------------------------------------------- /src/Debug/XCTestRunInspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Debug/XCTestRunInspector.ts -------------------------------------------------------------------------------- /src/Executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Executor.ts -------------------------------------------------------------------------------- /src/LSP/DefinitionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/DefinitionProvider.ts -------------------------------------------------------------------------------- /src/LSP/LSPTestsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/LSPTestsProvider.ts -------------------------------------------------------------------------------- /src/LSP/ReadOnlyDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/ReadOnlyDocumentProvider.ts -------------------------------------------------------------------------------- /src/LSP/SourceKitLSPErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/SourceKitLSPErrorHandler.ts -------------------------------------------------------------------------------- /src/LSP/SwiftLSPClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/SwiftLSPClient.ts -------------------------------------------------------------------------------- /src/LSP/WorkspaceContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/WorkspaceContext.ts -------------------------------------------------------------------------------- /src/LSP/getReferenceDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/getReferenceDocument.ts -------------------------------------------------------------------------------- /src/LSP/lspExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/lspExtension.ts -------------------------------------------------------------------------------- /src/LSP/peekDocuments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/peekDocuments.ts -------------------------------------------------------------------------------- /src/LSP/uriConverters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/LSP/uriConverters.ts -------------------------------------------------------------------------------- /src/ProblemDiagnosticResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/ProblemDiagnosticResolver.ts -------------------------------------------------------------------------------- /src/ProjectManager/ProjectManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/ProjectManager/ProjectManager.ts -------------------------------------------------------------------------------- /src/ProjectManager/ProjectTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/ProjectManager/ProjectTree.ts -------------------------------------------------------------------------------- /src/ProjectManager/ProjectsCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/ProjectManager/ProjectsCache.ts -------------------------------------------------------------------------------- /src/ProjectManager/XcodeProjectFileProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/ProjectManager/XcodeProjectFileProxy.ts -------------------------------------------------------------------------------- /src/Services/BuildManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Services/BuildManager.ts -------------------------------------------------------------------------------- /src/Services/ProjectSettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Services/ProjectSettingsProvider.ts -------------------------------------------------------------------------------- /src/Services/RunManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Services/RunManager.ts -------------------------------------------------------------------------------- /src/StatusBar/StatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/StatusBar/StatusBar.ts -------------------------------------------------------------------------------- /src/TerminalShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TerminalShell.ts -------------------------------------------------------------------------------- /src/TestsProvider/CoverageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/CoverageProvider.ts -------------------------------------------------------------------------------- /src/TestsProvider/RawLogParsers/TestCaseAsyncParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/RawLogParsers/TestCaseAsyncParser.ts -------------------------------------------------------------------------------- /src/TestsProvider/RawLogParsers/TestCaseProblemParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/RawLogParsers/TestCaseProblemParser.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestCase.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestContainer.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestFile.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestHeading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestHeading.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestProject.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/TestTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/TestTarget.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestItemProvider/parseClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestItemProvider/parseClass.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestProvider.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestResultProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestResultProvider.ts -------------------------------------------------------------------------------- /src/TestsProvider/TestTreeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/TestsProvider/TestTreeContext.ts -------------------------------------------------------------------------------- /src/Tools/InteractiveTerminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Tools/InteractiveTerminal.ts -------------------------------------------------------------------------------- /src/Tools/ToolsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Tools/ToolsManager.ts -------------------------------------------------------------------------------- /src/Tools/XCRunHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/Tools/XCRunHelper.ts -------------------------------------------------------------------------------- /src/XCBBuildServiceProxy/MessageReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XCBBuildServiceProxy/MessageReader.py -------------------------------------------------------------------------------- /src/XCBBuildServiceProxy/XCBBuildService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XCBBuildServiceProxy/XCBBuildService.py -------------------------------------------------------------------------------- /src/XCBBuildServiceProxy/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XCBBuildServiceProxy/config.txt -------------------------------------------------------------------------------- /src/XCBBuildServiceProxy/request_service.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XCBBuildServiceProxy/request_service.txt -------------------------------------------------------------------------------- /src/XcodeSideTreePanel/ProjectConfigurationDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XcodeSideTreePanel/ProjectConfigurationDataProvider.ts -------------------------------------------------------------------------------- /src/XcodeSideTreePanel/RuntimeWarningsDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XcodeSideTreePanel/RuntimeWarningsDataProvider.ts -------------------------------------------------------------------------------- /src/XcodeSideTreePanel/RuntimeWarningsLogWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/XcodeSideTreePanel/RuntimeWarningsLogWatcher.ts -------------------------------------------------------------------------------- /src/buildCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/buildCommands.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/inputPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/inputPicker.ts -------------------------------------------------------------------------------- /src/nonActiveExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/nonActiveExtension.ts -------------------------------------------------------------------------------- /src/quickPickHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/quickPickHistory.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/src/utils.ts -------------------------------------------------------------------------------- /syntaxes/arm.disasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/syntaxes/arm.disasm -------------------------------------------------------------------------------- /syntaxes/arm64.disasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/syntaxes/arm64.disasm -------------------------------------------------------------------------------- /syntaxes/disassembly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/syntaxes/disassembly.json -------------------------------------------------------------------------------- /syntaxes/x86.disasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/syntaxes/x86.disasm -------------------------------------------------------------------------------- /test/extension/DefinitionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/DefinitionProvider.test.ts -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/ProblemDiagnosticResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/ProblemDiagnostic/ProblemDiagnosticResolver.test.ts -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/mocks/build_log_empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/mocks/build_log_success.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/ProblemDiagnostic/mocks/build_log_success.txt -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/mocks/build_log_success_with_warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/ProblemDiagnostic/mocks/build_log_success_with_warnings.txt -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/mocks/build_log_with_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/ProblemDiagnostic/mocks/build_log_with_errors.txt -------------------------------------------------------------------------------- /test/extension/ProblemDiagnostic/mocks/build_log_with_linker_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/ProblemDiagnostic/mocks/build_log_with_linker_errors.txt -------------------------------------------------------------------------------- /test/extension/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/test/extension/extension.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireplusteam/ios-swift-for-vs-code/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------