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
26
26
import Workspace
27
27
28
28
import struct Basics. AbsolutePath
29
+ import struct Basics. IdentifiableSet
29
30
import struct Basics. TSCAbsolutePath
30
31
import struct Foundation. URL
31
32
import protocol TSCBasic. FileSystem
@@ -176,7 +177,12 @@ public actor SwiftPMBuildSystem {
176
177
flags: buildSetup. flags
177
178
)
178
179
179
- self . modulesGraph = try ModulesGraph ( rootPackages: [ ] , dependencies: [ ] , binaryArtifacts: [ : ] )
180
+ self . modulesGraph = try ModulesGraph (
181
+ rootPackages: [ ] ,
182
+ packages: IdentifiableSet ( ) ,
183
+ dependencies: [ ] ,
184
+ binaryArtifacts: [ : ]
185
+ )
180
186
self . reloadPackageStatusCallback = reloadPackageStatusCallback
181
187
182
188
// The debounce duration of 500ms was chosen arbitrarily without scientific research.
You can’t perform that action at this time.
0 commit comments