File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Sources/SKSwiftPMWorkspace Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import SourceKitLSPAPI
2626import Workspace
2727
2828import struct Basics. AbsolutePath
29+ import struct Basics. IdentifiableSet
2930import struct Basics. TSCAbsolutePath
3031import struct Foundation. URL
3132import protocol TSCBasic. FileSystem
@@ -176,7 +177,12 @@ public actor SwiftPMBuildSystem {
176177 flags: buildSetup. flags
177178 )
178179
179- self . modulesGraph = try ModulesGraph ( rootPackages: [ ] , dependencies: [ ] , binaryArtifacts: [ : ] )
180+ self . modulesGraph = try ModulesGraph (
181+ rootPackages: [ ] ,
182+ packages: IdentifiableSet ( ) ,
183+ dependencies: [ ] ,
184+ binaryArtifacts: [ : ]
185+ )
180186 self . reloadPackageStatusCallback = reloadPackageStatusCallback
181187
182188 // The debounce duration of 500ms was chosen arbitrarily without scientific research.
You can’t perform that action at this time.
0 commit comments