Adopt InternalImportsByDefault

This commit is contained in:
Alex Hoppen
2024-09-24 17:00:03 -07:00
parent 5f6e58aebf
commit 8cd831b55d
126 changed files with 971 additions and 34 deletions

View File

@@ -10,6 +10,16 @@
//
//===----------------------------------------------------------------------===//
#if compiler(>=6)
package import BuildServerProtocol
package import LanguageServerProtocol
import SKLogging
import SKOptions
import ToolchainRegistry
package import struct TSCBasic.AbsolutePath
package import struct TSCBasic.RelativePath
#else
import BuildServerProtocol
import LanguageServerProtocol
import SKLogging
@@ -18,6 +28,7 @@ import ToolchainRegistry
import struct TSCBasic.AbsolutePath
import struct TSCBasic.RelativePath
#endif
/// An error build systems can throw from `prepare` if they don't support preparation of targets.
package struct PrepareNotSupportedError: Error, CustomStringConvertible {