Implement addSourceFilesDidChangeCallback in BuildSystemManager

This commit is contained in:
Alex Hoppen
2024-09-13 11:07:55 -07:00
parent fac21f5976
commit a96c0913ad
9 changed files with 11 additions and 29 deletions

View File

@@ -104,9 +104,4 @@ package protocol BuiltInBuildSystem: AnyObject, Sendable {
/// Wait until the build graph has been loaded.
func waitForUpBuildSystemUpdates(request: WaitForBuildSystemUpdatesRequest) async -> VoidResponse
/// Adds a callback that should be called when the value returned by `sourceFiles()` changes.
///
/// The callback might also be called without an actual change to `sourceFiles`.
func addSourceFilesDidChangeCallback(_ callback: @Sendable @escaping () async -> Void) async
}