The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of AppKitUI, reference 0.6.2 (cf580a), with Swift 6.1 for macOS (SPM) on 10 Sep 2025 16:21:47 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.from' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
[61/105] Compiling AppKitUI AppKitUI+Sheet.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:13: warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |             `- warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:342:44: note: property declared here
340 | #pragma clang diagnostic ignored "-Wavailability"
341 | @property (nullable, strong) NSAppearance *appearance API_AVAILABLE(macos(10.14));
342 | @property (readonly, strong) NSAppearance *effectiveAppearance API_AVAILABLE(macos(10.14));
    |                                            `- note: property declared here
343 | #pragma clang diagnostic pop
344 | @end
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:7: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |       `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         `- warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
  |                      |- note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:3: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |   `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.from' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
[62/105] Compiling AppKitUI AppKitUI+SpacerView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:13: warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |             `- warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:342:44: note: property declared here
340 | #pragma clang diagnostic ignored "-Wavailability"
341 | @property (nullable, strong) NSAppearance *appearance API_AVAILABLE(macos(10.14));
342 | @property (readonly, strong) NSAppearance *effectiveAppearance API_AVAILABLE(macos(10.14));
    |                                            `- note: property declared here
343 | #pragma clang diagnostic pop
344 | @end
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:7: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |       `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         `- warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
  |                      |- note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:3: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |   `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.from' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
[63/105] Compiling AppKitUI AppKitUI+Switch.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:13: warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |             `- warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:342:44: note: property declared here
340 | #pragma clang diagnostic ignored "-Wavailability"
341 | @property (nullable, strong) NSAppearance *appearance API_AVAILABLE(macos(10.14));
342 | @property (readonly, strong) NSAppearance *effectiveAppearance API_AVAILABLE(macos(10.14));
    |                                            `- note: property declared here
343 | #pragma clang diagnostic pop
344 | @end
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:7: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |       `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         `- warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
  |                      |- note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:3: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |   `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.from' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
[64/105] Compiling AppKitUI AppKitUI+TargetAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:13: warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |             `- warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:342:44: note: property declared here
340 | #pragma clang diagnostic ignored "-Wavailability"
341 | @property (nullable, strong) NSAppearance *appearance API_AVAILABLE(macos(10.14));
342 | @property (readonly, strong) NSAppearance *effectiveAppearance API_AVAILABLE(macos(10.14));
    |                                            `- note: property declared here
343 | #pragma clang diagnostic pop
344 | @end
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ResolvableColor.swift:64:7: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
62 | 	public var effectiveColor: NSColor {
63 | 		if #available(macOS 10.14, *) {
64 | 			if NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua {
   |       `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
65 | 				return self.dark
66 | 			}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         `- warning: call to main actor-isolated instance method 'sendAction(_:to:from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
AppKit.NSApplication.sendAction:2:22: note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func sendAction(_ action: Selector, to target: Any?, from sender: Any?) -> Bool}
  |                      |- note: calls to instance method 'sendAction(_:to:from:)' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:3: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 | 	}
29 |
30 | 	func perform() {
   |       `- note: add '@MainActor' to make instance method 'perform()' part of global actor 'MainActor'
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |   `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
32 | 	}
33 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.target' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.target' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+TargetAction.swift:31:9: warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
29 |
30 | 	func perform() {
31 | 		NSApp.sendAction(self.action, to: self.target, from: self.from)
   |         |- warning: sending 'self.from' risks causing data races; this is an error in the Swift 6 language mode
   |         `- note: sending task-isolated 'self.from' to main actor-isolated instance method 'sendAction(_:to:from:)' risks causing data races between main actor-isolated and task-isolated uses
32 | 	}
33 |
[65/105] Compiling AppKitUI AppKitUI+Alert.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[66/105] Compiling AppKitUI AppKitUI+ColorSelector.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[67/105] Compiling AppKitUI AppKitUI+ComboButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[68/105] Compiling AppKitUI AppKitUI+ContentUnavailable.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[69/105] Compiling AppKitUI AppKitUI+Disclosure.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[70/105] Compiling AppKitUI AppKitUI+Divider.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[71/105] Compiling AppKitUI AppKitUI+Identifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[72/105] Compiling AppKitUI AppKitUI+IndexValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[73/105] Compiling AppKitUI AppKitUI+LayoutContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[74/105] Compiling AppKitUI AppKitUI+LinkButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[75/105] Compiling AppKitUI AppKitUI+List.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:145:13: warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
145 | private let appIcon__ = NSImage(named: NSImage.everyoneName)!
    |             |- warning: let 'appIcon__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'appIcon__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | 	.isTemplate(true)
147 | 	.size(width: 48, height: 48)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+ContentUnavailable.swift:184:13: warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
182 | }
183 |
184 | private let network__ = NSImage(named: NSImage.networkName)!
    |             |- warning: let 'network__' is not concurrency-safe because non-'Sendable' type 'NSImage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'network__' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | 	.size(width: 64, height: 64)
186 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSImage.h:66:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
 64 | __attribute__((objc_subclassing_restricted))
 65 | #endif /* NSIMAGE_UNAVAILABLE_MACCATALYST */
 66 | @interface NSImage : NSObject
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
 67 |
 68 | #pragma mark - Initialization
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+LinkButton.swift:77:8: warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 75 | 	override public func awakeFromNib() {
 76 | 		super.awakeFromNib()
 77 | 		self.setupLinkAppearance()
    |        `- warning: call to main actor-isolated instance method 'setupLinkAppearance()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 | 	}
 79 |
 80 | 	private func setupLinkAppearance() {
    |               `- note: calls to instance method 'setupLinkAppearance()' from outside of its actor context are implicitly asynchronous
 81 | 		// Remove button styling
 82 | 		self.isBordered = false
[76/105] Compiling AppKitUI NSButton+checkbox.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[77/105] Compiling AppKitUI NSButton+radio.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[78/105] Compiling AppKitUI NSColor+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[79/105] Compiling AppKitUI NSColorWell+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[80/105] Compiling AppKitUI NSComboBox+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[81/105] Compiling AppKitUI NSComboButton+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[82/105] Compiling AppKitUI NSControl+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[83/105] Compiling AppKitUI NSDateControl+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[84/105] Compiling AppKitUI NSFont+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[85/105] Compiling AppKitUI NSGraphicsContent+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/NSColor+appkitui.swift:77:11: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
75 | 	var effectiveCGColor: CGColor {
76 | 		if #available(macOS 10.14, *) {
77 | 			return NSApp.performWithEffectiveAppearanceAsDrawingAppearance { self.cgColor }
   |           `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | 		}
79 | 		else {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
    |                                                          `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
[86/105] Compiling AppKitUI NSSearchField+appkitui.swift
[87/105] Compiling AppKitUI NSSecureTextField+appkitui.swift
[88/105] Compiling AppKitUI NSSegmentedControl+appkitui.swift
[89/105] Compiling AppKitUI NSSlider+appkitui.swift
[90/105] Compiling AppKitUI NSStackView+appkitui.swift
[91/105] Compiling AppKitUI NSStepper+appkitui.swift
[92/105] Compiling AppKitUI NSSwitch+appkitui.swift
[93/105] Compiling AppKitUI NSTextField+appkitui.swift
[94/105] Compiling AppKitUI NSTokenField+appkitui.swift
[95/105] Compiling AppKitUI NSView+accessibility.swift
[96/105] Compiling AppKitUI AppKitUI+TextView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[97/105] Compiling AppKitUI AppKitUI+TokenField.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[98/105] Compiling AppKitUI AppKitUI+TransparentButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[99/105] Compiling AppKitUI AppKitUI+ViewBodyGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[100/105] Compiling AppKitUI AppKitUI+ViewSwitcher.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[101/105] Compiling AppKitUI AppKitUI+WebView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[102/105] Compiling AppKitUI AppKitUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[103/105] Compiling AppKitUI NSAlert+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[104/105] Compiling AppKitUI NSBox+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
[105/105] Compiling AppKitUI NSButton+appkitui.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:270:14: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
268 | 	}
269 |
270 | 	public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
    |              |- warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    |              |- note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    |              `- note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
271 | 		if let decidePolicyHandler {
272 | 			let policy = decidePolicyHandler(navigationAction)
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
1 | protocol WKNavigationDelegate {
2 | @available(macOS 10.10, *)
3 |   @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
  |                            `- note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:28: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                            `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:9: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 74 |
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
    |              `- note: property declared here
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
    :
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |         `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:245:56: warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
243 | 	override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
244 | 		if keyPath == "estimatedProgress" {
245 | 			self.estimatedProgress?.wrappedValue = self.webView.estimatedProgress
    |                                                        `- warning: main actor-isolated property 'estimatedProgress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:188:40: note: property declared here
186 |  property.
187 |  */
188 | @property (nonatomic, readonly) double estimatedProgress;
    |                                        `- note: property declared here
189 |
190 | /*! @abstract A Boolean value indicating whether all resources on the page
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:16: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:9: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 75 | 	private let webView = WKWebView()
 76 | 	private var estimatedProgress: Bind<Double>?
 77 | 	private var title: Bind<String>?
    |              `- note: property declared here
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    :
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |         `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:248:44: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
246 | 		}
247 | 		else if keyPath == "title" {
248 | 			self.title?.wrappedValue = self.webView.title ?? ""
    |                                            `- warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:163:59: note: property declared here
161 |  for this property.
162 |  */
163 | @property (nullable, nonatomic, readonly, copy) NSString *title;
    |                                                           `- note: property declared here
164 |
165 | /*! @abstract The active URL.
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:20: warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                    `- warning: main actor-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/bind/Bind.swift:27:13: note: mutation of this property is only permitted within the actor
 25 | public class Bind<Wrapped: Equatable> {
 26 | 	/// The wrapped value
 27 | 	public var wrappedValue: Wrapped {
    |             `- note: mutation of this property is only permitted within the actor
 28 | 		get {
 29 | 			self.wrappedValue_
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:9: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 | 	private var title: Bind<String>?
 78 | 	private var pageURL: Bind<URL?>?
 79 | 	private var isLoading: Bind<Bool>?
    |              `- note: property declared here
 80 |
 81 | 	private var disableNavigation = false
    :
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |         `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/AppKitUI/AppKitUI+WebView.swift:251:48: warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
249 | 		}
250 | 		else if keyPath == "loading" {
251 | 			self.isLoading?.wrappedValue = self.webView.isLoading
    |                                                `- warning: main actor-isolated property 'isLoading' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
252 | 		}
253 | 	}
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:178:56: note: property declared here
176 |  for this property.
177 |  */
178 | @property (nonatomic, readonly, getter=isLoading) BOOL loading;
    |                                                        `- note: property declared here
179 |
180 | /*! @abstract An estimate of what fraction of the current navigation has been completed.
Build complete! (12.26s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AppKitUI",
  "name" : "AppKitUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "AppKitUI",
      "targets" : [
        "AppKitUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AppKitUITests",
      "module_type" : "SwiftTarget",
      "name" : "AppKitUITests",
      "path" : "Tests/AppKitUITests",
      "sources" : [
        "ZAppKitTests.swift"
      ],
      "target_dependencies" : [
        "AppKitUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AppKitUI",
      "module_type" : "SwiftTarget",
      "name" : "AppKitUI",
      "path" : "Sources/AppKitUI",
      "product_memberships" : [
        "AppKitUI"
      ],
      "sources" : [
        "AppKitUI+Alert.swift",
        "AppKitUI+ColorSelector.swift",
        "AppKitUI+ComboButton.swift",
        "AppKitUI+ContentUnavailable.swift",
        "AppKitUI+Disclosure.swift",
        "AppKitUI+Divider.swift",
        "AppKitUI+Identifier.swift",
        "AppKitUI+IndexValues.swift",
        "AppKitUI+LayoutContainer.swift",
        "AppKitUI+LinkButton.swift",
        "AppKitUI+List.swift",
        "AppKitUI+NSOpenDialog.swift",
        "AppKitUI+NSSaveDialog.swift",
        "AppKitUI+NumberStepper.swift",
        "AppKitUI+PDFView.swift",
        "AppKitUI+PaddedTextField.swift",
        "AppKitUI+Popover.swift",
        "AppKitUI+ResolvableColor.swift",
        "AppKitUI+Sheet.swift",
        "AppKitUI+SpacerView.swift",
        "AppKitUI+Switch.swift",
        "AppKitUI+TargetAction.swift",
        "AppKitUI+TextView.swift",
        "AppKitUI+TokenField.swift",
        "AppKitUI+TransparentButton.swift",
        "AppKitUI+ViewBodyGenerator.swift",
        "AppKitUI+ViewSwitcher.swift",
        "AppKitUI+WebView.swift",
        "AppKitUI.swift",
        "NSAlert+appkitui.swift",
        "NSBox+appkitui.swift",
        "NSButton+appkitui.swift",
        "NSButton+checkbox.swift",
        "NSButton+radio.swift",
        "NSColor+appkitui.swift",
        "NSColorWell+appkitui.swift",
        "NSComboBox+appkitui.swift",
        "NSComboButton+appkitui.swift",
        "NSControl+appkitui.swift",
        "NSDateControl+appkitui.swift",
        "NSFont+appkitui.swift",
        "NSGraphicsContent+appkitui.swift",
        "NSGridView+Row+appkitui.swift",
        "NSGridView+appkitui.swift",
        "NSImage+appkitui.swift",
        "NSImageView+appkitui.swift",
        "NSLevelIndicator+appkitui.swift",
        "NSMenu+appkitui.swift",
        "NSMenuItem+appkitui.swift",
        "NSPathControl+appkitui.swift",
        "NSPopUpButton+appkitui.swift",
        "NSProgressIndicator+appkitui.swift",
        "NSSearchField+appkitui.swift",
        "NSSecureTextField+appkitui.swift",
        "NSSegmentedControl+appkitui.swift",
        "NSSlider+appkitui.swift",
        "NSStackView+appkitui.swift",
        "NSStepper+appkitui.swift",
        "NSSwitch+appkitui.swift",
        "NSTextField+appkitui.swift",
        "NSTokenField+appkitui.swift",
        "NSView+accessibility.swift",
        "NSView+appkitui.swift",
        "NSView+constraints.swift",
        "NSView+extensions.swift",
        "NSView+gestures.swift",
        "NSVisualEffectView+appkitui.swift",
        "NumberFormatter+appkitui.swift",
        "bind/Bind+Aggregator.swift",
        "bind/Bind+OneWayTransform.swift",
        "bind/Bind+Transformers.swift",
        "bind/Bind+TwoWayTransform.swift",
        "bind/Bind.swift",
        "bind/Binding.swift",
        "bind/DelayingCall.swift",
        "fill/AppKitUI+FillStyle+Checkerboard.swift",
        "fill/AppKitUI+FillStyle+Color.swift",
        "fill/AppKitUI+FillStyle+Gradient.swift",
        "fill/AppKitUI+FillStyle+Image.swift",
        "fill/AppKitUI+FillStyle.swift",
        "shape/AppKitUI+Capsule.swift",
        "shape/AppKitUI+Ellipse.swift",
        "shape/AppKitUI+Rectangle.swift",
        "shape/AppKitUI+Shape.swift",
        "structure/AppKitUI+Flow.swift",
        "structure/AppKitUI+ScrollView.swift",
        "structure/AppKitUI+SplitView.swift",
        "structure/AppKitUI+Stack.swift",
        "structure/AppKitUI+TabView.swift",
        "structure/AppKitUI+ZStack.swift",
        "utils/Array+extensions.swift",
        "utils/DesignTime+PreviewBackport.swift",
        "utils/FlowCollectionView.swift",
        "utils/NSCopying+extensions.swift",
        "utils/NSLayoutConstraint+extensions.swift",
        "utils/NSObject+arbitraryValues.swift",
        "utils/NSObject+associated.swift",
        "utils/NSRange+extensions.swift",
        "utils/OSLogger.swift",
        "utils/Optional+extensions.swift",
        "utils/ReentryChecker.swift",
        "utils/ScrollableTextView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/dagronf/appkitui/0.6.2
Repository:               dagronf/AppKitUI
Swift version used:       6.1
Target:                   AppKitUI
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'AppKitUI'...
Finished extracting symbol information for 'AppKitUI'. (9.12s)
Building documentation for 'AppKitUI'...
warning: Parameter 'fileURL' not found in instance method declaration
   --> Sources/AppKitUI/AppKitUI+PDFView.swift:107:6-107:58
105 |
106 | 	/// Display the content of a pdf
107 + 	/// - Parameter fileURL: The data for the pdf to display
    |      ╰─suggestion: Remove 'fileURL' parameter documentation
108 | 	/// - Returns: self
109 | 	@discardableResult
warning: Parameter 'pdfData' is missing documentation
   --> Sources/AppKitUI/AppKitUI+PDFView.swift:107:58-107:58
105 |
106 | 	/// Display the content of a pdf
107 + 	/// - Parameter fileURL: The data for the pdf to display
    |                                                          ╰─suggestion: Document 'pdfData' parameter
108 | 	/// - Returns: self
109 | 	@discardableResult
Finished building documentation for 'AppKitUI' (0.66s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/dagronf/appkitui/0.6.2
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.73s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (3.24s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.88s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.61s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit DeclarationFragments.swift
[11/57] Compiling SymbolKit Fragment.swift
[12/57] Compiling SymbolKit FragmentKind.swift
[13/57] Compiling SymbolKit FunctionParameter.swift
[14/57] Compiling SymbolKit FunctionSignature.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit SemanticVersion.swift
[17/57] Compiling SymbolKit AccessControl.swift
[18/57] Compiling SymbolKit Availability.swift
[19/57] Compiling SymbolKit AvailabilityItem.swift
[20/57] Compiling SymbolKit Domain.swift
[21/57] Compiling SymbolKit Mixin+Equals.swift
[22/57] Compiling SymbolKit Mixin+Hash.swift
[23/57] Compiling SymbolKit Mixin.swift
[24/57] Compiling SymbolKit LineList.swift
[25/57] Compiling SymbolKit Position.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit Names.swift
[36/57] Compiling SymbolKit SPI.swift
[37/57] Compiling SymbolKit Snippet.swift
[38/57] Compiling SymbolKit Extension.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.80s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/94] Compiling AppKitUI Bind.swift
[3/94] Compiling AppKitUI Binding.swift
[4/94] Compiling AppKitUI DelayingCall.swift
[5/94] Compiling AppKitUI AppKitUI+FillStyle+Checkerboard.swift
[6/94] Compiling AppKitUI AppKitUI+FillStyle+Color.swift
[7/94] Compiling AppKitUI AppKitUI+FillStyle+Gradient.swift
[8/94] Compiling AppKitUI AppKitUI+FillStyle+Image.swift
[9/94] Compiling AppKitUI AppKitUI+FillStyle.swift
[10/94] Compiling AppKitUI AppKitUI+Capsule.swift
[11/94] Compiling AppKitUI AppKitUI+Ellipse.swift
[12/104] Compiling AppKitUI AppKitUI+Rectangle.swift
[13/104] Compiling AppKitUI AppKitUI+Shape.swift
[14/104] Compiling AppKitUI AppKitUI+Flow.swift
[15/104] Compiling AppKitUI AppKitUI+ScrollView.swift
[16/104] Compiling AppKitUI AppKitUI+SplitView.swift
[17/104] Compiling AppKitUI AppKitUI+Stack.swift
[18/104] Compiling AppKitUI AppKitUI+TabView.swift
[19/104] Compiling AppKitUI AppKitUI+ZStack.swift
[20/104] Compiling AppKitUI Array+extensions.swift
[21/104] Compiling AppKitUI DesignTime+PreviewBackport.swift
[22/104] Compiling AppKitUI NSView+appkitui.swift
[23/104] Compiling AppKitUI NSView+constraints.swift
[24/104] Compiling AppKitUI NSView+extensions.swift
[25/104] Compiling AppKitUI NSView+gestures.swift
[26/104] Compiling AppKitUI NSVisualEffectView+appkitui.swift
[27/104] Compiling AppKitUI NumberFormatter+appkitui.swift
[28/104] Compiling AppKitUI Bind+Aggregator.swift
[29/104] Compiling AppKitUI Bind+OneWayTransform.swift
[30/104] Compiling AppKitUI Bind+Transformers.swift
[31/104] Compiling AppKitUI Bind+TwoWayTransform.swift
[32/104] Compiling AppKitUI AppKitUI+TextView.swift
[33/104] Compiling AppKitUI AppKitUI+TokenField.swift
[34/104] Compiling AppKitUI AppKitUI+TransparentButton.swift
[35/104] Compiling AppKitUI AppKitUI+ViewBodyGenerator.swift
[36/104] Compiling AppKitUI AppKitUI+ViewSwitcher.swift
[37/104] Compiling AppKitUI AppKitUI+WebView.swift
[38/104] Compiling AppKitUI AppKitUI.swift
[39/104] Compiling AppKitUI NSAlert+appkitui.swift
[40/104] Compiling AppKitUI NSBox+appkitui.swift
[41/104] Compiling AppKitUI NSButton+appkitui.swift
[42/104] Compiling AppKitUI FlowCollectionView.swift
[43/104] Compiling AppKitUI NSCopying+extensions.swift
[44/104] Compiling AppKitUI NSLayoutConstraint+extensions.swift
[45/104] Compiling AppKitUI NSObject+arbitraryValues.swift
[46/104] Compiling AppKitUI NSObject+associated.swift
[47/104] Compiling AppKitUI NSRange+extensions.swift
[48/104] Compiling AppKitUI OSLogger.swift
[49/104] Compiling AppKitUI Optional+extensions.swift
[50/104] Compiling AppKitUI ReentryChecker.swift
[51/104] Compiling AppKitUI ScrollableTextView.swift
[52/104] Compiling AppKitUI NSButton+checkbox.swift
[53/104] Compiling AppKitUI NSButton+radio.swift
[54/104] Compiling AppKitUI NSColor+appkitui.swift
[55/104] Compiling AppKitUI NSColorWell+appkitui.swift
[56/104] Compiling AppKitUI NSComboBox+appkitui.swift
[57/104] Compiling AppKitUI NSComboButton+appkitui.swift
[58/104] Compiling AppKitUI NSControl+appkitui.swift
[59/104] Compiling AppKitUI NSDateControl+appkitui.swift
[60/104] Compiling AppKitUI NSFont+appkitui.swift
[61/104] Compiling AppKitUI NSGraphicsContent+appkitui.swift
[62/104] Compiling AppKitUI AppKitUI+Alert.swift
[63/104] Compiling AppKitUI AppKitUI+ColorSelector.swift
[64/104] Compiling AppKitUI AppKitUI+ComboButton.swift
[65/104] Compiling AppKitUI AppKitUI+ContentUnavailable.swift
[66/104] Compiling AppKitUI AppKitUI+Disclosure.swift
[67/104] Compiling AppKitUI AppKitUI+Divider.swift
[68/104] Compiling AppKitUI AppKitUI+Identifier.swift
[69/104] Compiling AppKitUI AppKitUI+IndexValues.swift
[70/104] Compiling AppKitUI AppKitUI+LayoutContainer.swift
[71/104] Compiling AppKitUI AppKitUI+LinkButton.swift
[72/104] Compiling AppKitUI AppKitUI+List.swift
[73/104] Compiling AppKitUI AppKitUI+NSOpenDialog.swift
[74/104] Compiling AppKitUI AppKitUI+NSSaveDialog.swift
[75/104] Compiling AppKitUI AppKitUI+NumberStepper.swift
[76/104] Compiling AppKitUI AppKitUI+PDFView.swift
[77/104] Compiling AppKitUI AppKitUI+PaddedTextField.swift
[78/104] Compiling AppKitUI AppKitUI+Popover.swift
[79/104] Compiling AppKitUI AppKitUI+ResolvableColor.swift
[80/104] Compiling AppKitUI AppKitUI+Sheet.swift
[81/104] Compiling AppKitUI AppKitUI+SpacerView.swift
[82/104] Compiling AppKitUI AppKitUI+Switch.swift
[83/104] Compiling AppKitUI AppKitUI+TargetAction.swift
[84/104] Compiling AppKitUI NSGridView+Row+appkitui.swift
[85/104] Compiling AppKitUI NSGridView+appkitui.swift
[86/104] Compiling AppKitUI NSImage+appkitui.swift
[87/104] Compiling AppKitUI NSImageView+appkitui.swift
[88/104] Compiling AppKitUI NSLevelIndicator+appkitui.swift
[89/104] Compiling AppKitUI NSMenu+appkitui.swift
[90/104] Compiling AppKitUI NSMenuItem+appkitui.swift
[91/104] Compiling AppKitUI NSPathControl+appkitui.swift
[92/104] Compiling AppKitUI NSPopUpButton+appkitui.swift
[93/104] Compiling AppKitUI NSProgressIndicator+appkitui.swift
[94/104] Compiling AppKitUI NSSearchField+appkitui.swift
[95/104] Compiling AppKitUI NSSecureTextField+appkitui.swift
[96/104] Compiling AppKitUI NSSegmentedControl+appkitui.swift
[97/104] Compiling AppKitUI NSSlider+appkitui.swift
[98/104] Compiling AppKitUI NSStackView+appkitui.swift
[99/104] Compiling AppKitUI NSStepper+appkitui.swift
[100/104] Compiling AppKitUI NSSwitch+appkitui.swift
[101/104] Compiling AppKitUI NSTextField+appkitui.swift
[102/104] Compiling AppKitUI NSTokenField+appkitui.swift
[103/104] Compiling AppKitUI NSView+accessibility.swift
[104/104] Emitting module AppKitUI
Build of target: 'AppKitUI' complete! (4.89s)
    1996
13	/Users/admin/builder/spi-builder-workspace/.docs/dagronf/appkitui/0.6.2
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/dagronf/appkitui/0.6.2
File count: 1996
Doc size:   13.0MB
Preparing doc bundle ...
Uploading prod-dagronf-appkitui-0.6.2-af72b36f.zip to s3://spi-docs-inbox/prod-dagronf-appkitui-0.6.2-af72b36f.zip
Copying... [12%]
Copying... [22%]
Copying... [32%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [70%]
Copying... [80%]
Copying... [92%]
Copying... [100%]
Done.