@@ -104,7 +104,7 @@ package enum IndexTaskStatus: Comparable {
104104/// messages to the user, we only show the highest priority task.
105105package enum IndexProgressStatus : Sendable , Equatable {
106106 case preparingFileForEditorFunctionality
107- case schedulingIndexing
107+ case generatingBuildGraph
108108 case indexing(
109109 preparationTasks: [ BuildTargetIdentifier : IndexTaskStatus ] ,
110110 indexTasks: [ FileIndexInfo : IndexTaskStatus ]
@@ -115,8 +115,8 @@ package enum IndexProgressStatus: Sendable, Equatable {
115115 switch ( self , other) {
116116 case ( _, . preparingFileForEditorFunctionality) , ( . preparingFileForEditorFunctionality, _) :
117117 return . preparingFileForEditorFunctionality
118- case ( _, . schedulingIndexing ) , ( . schedulingIndexing , _) :
119- return . schedulingIndexing
118+ case ( _, . generatingBuildGraph ) , ( . generatingBuildGraph , _) :
119+ return . generatingBuildGraph
120120 case (
121121 . indexing( let selfPreparationTasks, let selfIndexTasks) ,
122122 . indexing( let otherPreparationTasks, let otherIndexTasks)
@@ -250,7 +250,7 @@ package final actor SemanticIndexManager {
250250 // flickering between indexing progress and `Scheduling indexing` if we trigger an index schedule task while
251251 // indexing is already in progress
252252 if !buildGraphGenerationTasks. isEmpty {
253- return . schedulingIndexing
253+ return . generatingBuildGraph
254254 }
255255 return . upToDate
256256 }
0 commit comments