The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of YComponentBrowser, reference 1.0.2 (c6328d), with Swift 6.1 for visionOS using Xcode 16.3 on 27 Apr 2025 22:04:45 UTC.

Swift 6 data race errors: 21

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme YComponentBrowser -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        XCTAssertNil(sut.image)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h:26:50: note: property declared here
@property (nullable, nonatomic, strong) UIImage *image; // default is nil
                                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/IconViewTest.swift:36:19: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = IconView(frame: .zero)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/IconView.swift:19:21: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    public override init(frame: CGRect) {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/IconViewTest.swift:35:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> IconView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/IconViewTest.swift:12:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = IconView(coder: try makeCoder(for: makeSUT()))
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/IconViewTest.swift:12:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = IconView(coder: try makeCoder(for: makeSUT()))
                  ^
SwiftCompile normal arm64 Compiling\ XCTestCase+makeCoder.swift,\ CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift:10:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    var controller = UIViewController()
        ^
SwiftDriverJobDiscovery normal arm64 Compiling ColorView.swift, ContentView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CategoriesTest.swift,\ CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Classification.swift, Destination.swift, Highlightable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CatalogFactoryTest.swift,\ ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:19:41: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                            controller: UIViewController()
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:11:10: note: add '@MainActor' to make instance method 'testCreateCatalogViewer()' part of global actor 'MainActor'
    func testCreateCatalogViewer() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:35:41: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                            controller: UIViewController()
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:11:10: note: add '@MainActor' to make instance method 'testCreateCatalogViewer()' part of global actor 'MainActor'
    func testCreateCatalogViewer() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:67:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            display: .collection(UICollectionViewFlowLayout()),
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:91:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:45:10: note: add '@MainActor' to make instance method 'testCreateGenericDisplayViewController()' part of global actor 'MainActor'
    func testCreateGenericDisplayViewController() {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:11:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    var controller = UIViewController()
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:14:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let tableview = UITableView()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:15:40: warning: call to main actor-isolated initializer 'init(navigationTitle:classification:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let classificationDataSource = ClassificationDataSource(
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:30:12: note: calls to initializer 'init(navigationTitle:classification:)' from outside of its actor context are implicitly asynchronous
    public init(navigationTitle: String?, classification: [Classification]) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:29:38: warning: call to main actor-isolated instance method 'tableView(_:numberOfRowsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            classificationDataSource.tableView(
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:41:17: note: calls to instance method 'tableView(_:numberOfRowsInSection:)' from outside of its actor context are implicitly asynchronous
    public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:30:17: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                UITableView(),
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:31:65: warning: main actor-isolated property 'categories' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                numberOfRowsInSection: classificationDataSource.categories.count
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:24:16: note: property declared here
    public let categories: [Classification]
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:35:19: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableview.register(
                  ^
UIKit.UITableView.register:3:24: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func register(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)}
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:36:38: warning: main actor-isolated class property 'cell' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            ClassificationDataSource.cell,
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:15:23: note: class property declared here
    public static var cell: Cell.Type { UITableViewCell.self }
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:37:62: warning: main actor-isolated class property 'cellIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            forCellReuseIdentifier: ClassificationDataSource.cellIdentifier
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:18:23: note: class property declared here
    public static var cellIdentifier: String { "ClassificationTableCell" }
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:39:50: warning: call to main actor-isolated instance method 'tableView(_:cellForRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let tableCell = classificationDataSource.tableView(tableview, cellForRowAt: [0, 0])
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:46:17: note: calls to instance method 'tableView(_:cellForRowAt:)' from outside of its actor context are implicitly asynchronous
    public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
    func testClassificationDataSource() {
         ^
    @MainActor
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDetailDestination.swift, SubcategoryDetailDestination.swift, CatalogDataSource.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ ClassificationViewControllerTest.swift,\ XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:12:81: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let tableviewVCC = ClassificationViewController<ClassificationDataSource>(coder: NSCoder())
                                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:24:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:17:26: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let controller = UIViewController()
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:19:43: warning: call to main actor-isolated initializer 'init(navigationTitle:classification:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let classificationDataSourceOne = ClassificationDataSource(navigationTitle: "title", classification:
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:30:12: note: calls to initializer 'init(navigationTitle:classification:)' from outside of its actor context are implicitly asynchronous
    public init(navigationTitle: String?, classification: [Classification]) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:29:43: warning: call to main actor-isolated initializer 'init(navigationTitle:classification:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let classificationDataSourceTwo = ClassificationDataSource(navigationTitle: "title", classification:
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:30:12: note: calls to initializer 'init(navigationTitle:classification:)' from outside of its actor context are implicitly asynchronous
    public init(navigationTitle: String?, classification: [Classification]) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:40:29: warning: call to main actor-isolated initializer 'init(datasource:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let controllerOne = ClassificationViewController(datasource: classificationDataSourceOne)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:15:12: note: calls to initializer 'init(datasource:)' from outside of its actor context are implicitly asynchronous
    public init(datasource: DataSource) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:41:30: warning: call to main actor-isolated initializer 'init(datasource:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let  controllerTwo = ClassificationViewController(datasource: classificationDataSourceTwo)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:15:12: note: calls to initializer 'init(datasource:)' from outside of its actor context are implicitly asynchronous
    public init(datasource: DataSource) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:44:23: warning: call to main actor-isolated instance method 'tableView(_:didSelectRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        controllerOne.tableView(controllerOne.tableView, didSelectRowAt: indexPath)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:27:26: note: calls to instance method 'tableView(_:didSelectRowAt:)' from outside of its actor context are implicitly asynchronous
    public override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:44:47: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        controllerOne.tableView(controllerOne.tableView, didSelectRowAt: indexPath)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:45:33: warning: call to main actor-isolated instance method 'selectRow(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        controllerOne.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
                                ^
UIKit.UITableView.selectRow:2:22: note: calls to instance method 'selectRow(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectRow(at indexPath: IndexPath?, animated: Bool, scrollPosition: UITableView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:45:23: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        controllerOne.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:46:79: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerOne.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: property declared here
@property (nonatomic, getter=isSelected) BOOL         selected;                   // set selected state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:46:52: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerOne.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                                   ^
UIKit.UITableView.cellForRow:2:22: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:46:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerOne.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:49:23: warning: call to main actor-isolated instance method 'tableView(_:didSelectRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        controllerTwo.tableView(controllerTwo.tableView, didSelectRowAt: indexPath)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:27:26: note: calls to instance method 'tableView(_:didSelectRowAt:)' from outside of its actor context are implicitly asynchronous
    public override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:49:47: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        controllerTwo.tableView(controllerTwo.tableView, didSelectRowAt: indexPath)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:50:33: warning: call to main actor-isolated instance method 'selectRow(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        controllerTwo.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
                                ^
UIKit.UITableView.selectRow:2:22: note: calls to instance method 'selectRow(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectRow(at indexPath: IndexPath?, animated: Bool, scrollPosition: UITableView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:50:23: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        controllerTwo.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:79: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: property declared here
@property (nonatomic, getter=isSelected) BOOL         selected;                   // set selected state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:52: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                                   ^
UIKit.UITableView.cellForRow:2:22: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift:15:17: warning: sending 'instance' risks causing data races; this is an error in the Swift 6 language mode
                instance,
~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift:15:17: note: task-isolated 'instance' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                instance,
                ^~~~~~~~
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactory.swift, ClassificationDataSource.swift, ClassificationViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CatalogDisplayViewTest.swift,\ ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:79:10: warning: main actor-isolated instance method 'setSelected' cannot be used to satisfy nonisolated requirement from protocol 'Selectable'; this is an error in the Swift 6 language mode
    func setSelected(_ isSelected: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:79:10: note: add 'nonisolated' to 'setSelected' to make this instance method not isolated to the actor
    func setSelected(_ isSelected: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:78:28: note: add '@preconcurrency' to the 'Selectable' conformance to defer isolation checking to run time
extension CatalogDemoView: Selectable {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift:13:10: note: mark the protocol requirement 'setSelected' 'async' to allow actor-isolated conformances
    func setSelected(_ isSelected: Bool)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:85:10: warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated requirement from protocol 'Highlightable'; this is an error in the Swift 6 language mode
    func setHighlighted(_ isHighlighted: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:85:10: note: add 'nonisolated' to 'setHighlighted' to make this instance method not isolated to the actor
    func setHighlighted(_ isHighlighted: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:84:28: note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
extension CatalogDemoView: Highlightable {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift:13:10: note: mark the protocol requirement 'setHighlighted' 'async' to allow actor-isolated conformances
    func setHighlighted(_ isHighlighted: Bool)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:91:10: warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated requirement from protocol 'Populatable'; this is an error in the Swift 6 language mode
    func populate(with model: Model) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:91:10: note: add 'nonisolated' to 'populate(with:)' to make this instance method not isolated to the actor
    func populate(with model: Model) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:90:28: note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
extension CatalogDemoView: Populatable {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift:16:10: note: mark the protocol requirement 'populate(with:)' 'async' to allow actor-isolated conformances
    func populate(with model: Model)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:97:10: warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated requirement from protocol 'Reusable'; this is an error in the Swift 6 language mode
    func prepareForReuse() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:97:10: note: add 'nonisolated' to 'prepareForReuse()' to make this instance method not isolated to the actor
    func prepareForReuse() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:96:28: note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
extension CatalogDemoView: Reusable {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift:12:10: note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
    func prepareForReuse()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:20:40: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPopulated)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:73:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:20:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPopulated)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:21:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: model)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:160:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:11:10: note: add '@MainActor' to make instance method 'testPopulatable()' part of global actor 'MainActor'
    func testPopulatable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:22:39: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPopulated)
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:73:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:22:27: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPopulated)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:28:40: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPrepared)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:72:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:28:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPrepared)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:29:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:172:17: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public func prepareForReuse() {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:25:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:30:39: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPrepared)
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:72:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:30:27: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPrepared)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:36:38: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isHighlighted)
                                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:36:26: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isHighlighted)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:37:13: warning: call to main actor-isolated instance method 'setHighlighted' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setHighlighted(true)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: note: calls to instance method 'setHighlighted' from outside of its actor context are implicitly asynchronous
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:38:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, true)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:38:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:39:13: warning: call to main actor-isolated instance method 'setHighlighted' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setHighlighted(false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: note: calls to instance method 'setHighlighted' from outside of its actor context are implicitly asynchronous
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:40:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, false)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:40:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:46:38: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isSelected)
                                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:46:26: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isSelected)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:47:13: warning: call to main actor-isolated instance method 'setSelected' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setSelected(true)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: note: calls to instance method 'setSelected' from outside of its actor context are implicitly asynchronous
    public func setSelected(_ isSelected: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:48:40: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, true)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:48:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:49:13: warning: call to main actor-isolated instance method 'setSelected' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setSelected(false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: note: calls to instance method 'setSelected' from outside of its actor context are implicitly asynchronous
    public func setSelected(_ isSelected: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:50:40: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, false)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:50:28: warning: main actor-isolated property 'displayView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:112:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:53:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:61:53: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>()
                                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:60:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> CatalogDisplayView<CatalogDemoView> {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = ColorView(coder: try makeCoder(for: makeSUT()))
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:27:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:19:26: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.backgroundColor)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:20:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: UIColor.red)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:59:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:16:10: note: add '@MainActor' to make instance method 'testPopulatable()' part of global actor 'MainActor'
    func testPopulatable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:21:28: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.backgroundColor, .red)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:27:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: .red)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:59:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:24:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:28:29: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotNil(sut.backgroundColor)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:29:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:68:17: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public func prepareForReuse() {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:24:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:30:26: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.backgroundColor)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:36:19: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = ColorView(frame: .zero)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:21:21: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    public override init(frame: CGRect) {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:35:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> ColorView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = ColorView(coder: try makeCoder(for: makeSUT()))
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = ColorView(coder: try makeCoder(for: makeSUT()))
                  ^
SwiftDriverJobDiscovery normal arm64 Compiling FontView.swift, IconView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ GenericCollectionViewCellTest.swift,\ GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:15:42: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPopulated)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:15:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPopulated)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:16:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: model)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:52:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:11:10: note: add '@MainActor' to make instance method 'testPopulatable()' part of global actor 'MainActor'
    func testPopulatable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:17:41: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPopulated)
                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:17:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPopulated)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:23:42: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPrepared)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:23:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPrepared)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:24:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:45:26: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public override func prepareForReuse() {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:20:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:25:41: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPrepared)
                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:25:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPrepared)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29:53: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:42:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:28:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:36:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isHighlighted)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:36:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isHighlighted)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:37:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isHighlighted = true
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:27:25: note: mutation of this property is only permitted within the actor
    public override var isHighlighted: Bool {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:38:42: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, true)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:38:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:39:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isHighlighted = false
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:27:25: note: mutation of this property is only permitted within the actor
    public override var isHighlighted: Bool {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:40:42: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, false)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:40:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:46:40: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isSelected)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:46:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isSelected)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:47:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isSelected = true
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:18:25: note: mutation of this property is only permitted within the actor
    public override var isSelected: Bool {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:48:42: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, true)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:48:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:49:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isSelected = false
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:18:25: note: mutation of this property is only permitted within the actor
    public override var isSelected: Bool {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:50:42: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, false)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:50:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:56:53: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewCell<DemoView>()
                                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:55:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> GenericCollectionViewCell<DemoView> {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29:53: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29:53: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                                                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:74:10: warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated requirement from protocol 'Reusable'; this is an error in the Swift 6 language mode
    func prepareForReuse() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:74:10: note: add 'nonisolated' to 'prepareForReuse()' to make this instance method not isolated to the actor
    func prepareForReuse() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:73:21: note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
extension DemoView: Reusable {
                    ^
                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift:12:10: note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
    func prepareForReuse()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:80:10: warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated requirement from protocol 'Populatable'; this is an error in the Swift 6 language mode
    func populate(with model: Model) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:80:10: note: add 'nonisolated' to 'populate(with:)' to make this instance method not isolated to the actor
    func populate(with model: Model) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:79:21: note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
extension DemoView: Populatable {
                    ^
                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift:16:10: note: mark the protocol requirement 'populate(with:)' 'async' to allow actor-isolated conformances
    func populate(with model: Model)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:86:10: warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated requirement from protocol 'Highlightable'; this is an error in the Swift 6 language mode
    func setHighlighted(_ isHighlighted: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:86:10: note: add 'nonisolated' to 'setHighlighted' to make this instance method not isolated to the actor
    func setHighlighted(_ isHighlighted: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:85:21: note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
extension DemoView: Highlightable {
                    ^
                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift:13:10: note: mark the protocol requirement 'setHighlighted' 'async' to allow actor-isolated conformances
    func setHighlighted(_ isHighlighted: Bool)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:92:10: warning: main actor-isolated instance method 'setSelected' cannot be used to satisfy nonisolated requirement from protocol 'Selectable'; this is an error in the Swift 6 language mode
    func setSelected(_ isSelected: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:92:10: note: add 'nonisolated' to 'setSelected' to make this instance method not isolated to the actor
    func setSelected(_ isSelected: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:91:21: note: add '@preconcurrency' to the 'Selectable' conformance to defer isolation checking to run time
extension DemoView: Selectable {
                    ^
                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift:13:10: note: mark the protocol requirement 'setSelected' 'async' to allow actor-isolated conformances
    func setSelected(_ isSelected: Bool)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:15:42: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPopulated)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:15:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPopulated)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:16:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: model)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:50:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:11:10: note: add '@MainActor' to make instance method 'testPopulatable()' part of global actor 'MainActor'
    func testPopulatable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:17:41: warning: main actor-isolated property 'isPopulated' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPopulated)
                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:17:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPopulated)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:23:42: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPrepared)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:23:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayedView.isPrepared)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:24:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:43:26: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public override func prepareForReuse() {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:20:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:25:41: warning: main actor-isolated property 'isPrepared' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPrepared)
                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:25:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayedView.isPrepared)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:24:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:28:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:36:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isHighlighted)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:36:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isHighlighted)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:37:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isHighlighted = true
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:145:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isHighlighted) BOOL      highlighted;                // set highlighted state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:38:42: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, true)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:38:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:39:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isHighlighted = false
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:145:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isHighlighted) BOOL      highlighted;                // set highlighted state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:40:42: warning: main actor-isolated property 'isHighlighted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, false)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:40:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isHighlighted, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:46:40: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isSelected)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:46:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayedView.isSelected)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:47:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isSelected = false
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isSelected) BOOL         selected;                   // set selected state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:48:42: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, false)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:48:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:49:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isSelected = true
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isSelected) BOOL         selected;                   // set selected state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:50:42: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, true)
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:50:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayedView.isSelected, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
    public let displayedView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:56:48: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericTableViewCell<DemoView>()
                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:55:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> GenericTableViewCell<DemoView> {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
                                               ^
SwiftDriverJobDiscovery normal arm64 Compiling Selectable.swift, GenericCollectionViewCell.swift, GenericTableViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:12:19: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = FontView(coder: try makeCoder(for: makeSUT()))
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:39:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:19:31: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotEqual(sut.font, .boldSystemFont(ofSize: 20))
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:20:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: FontView.Model(font: .boldSystemFont(ofSize: 20)))
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:52:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:16:10: note: add '@MainActor' to make instance method 'testPopulate()' part of global actor 'MainActor'
    func testPopulate() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:21:28: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.font, .boldSystemFont(ofSize: 20))
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:27:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:62:17: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public func prepareForReuse() {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:24:10: note: add '@MainActor' to make instance method 'testReuable()' part of global actor 'MainActor'
    func testReuable() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:28:28: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.font, UIFont.systemFont(ofSize: 17))
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:34:19: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = FontView(frame: .zero)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:33:21: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    public override init(frame: CGRect) {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:33:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> FontView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:12:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = FontView(coder: try makeCoder(for: makeSUT()))
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:12:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = FontView(coder: try makeCoder(for: makeSUT()))
                  ^
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewController.swift, GenericTableViewController.swift, CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ GenericCollectionViewControllerTest.swift,\ GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:33:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:19:17: warning: call to main actor-isolated instance method 'collectionView(_:numberOfItemsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.collectionView(sut.collectionView, numberOfItemsInSection: 0),
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:36:26: note: calls to instance method 'collectionView(_:numberOfItemsInSection:)' from outside of its actor context are implicitly asynchronous
    public override func collectionView(
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:19:36: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            sut.collectionView(sut.collectionView, numberOfItemsInSection: 0),
                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:26:24: warning: call to main actor-isolated instance method 'collectionView(_:cellForItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let cell = sut.collectionView(sut.collectionView, cellForItemAt: [0, 0])
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:44:26: note: calls to instance method 'collectionView(_:cellForItemAt:)' from outside of its actor context are implicitly asynchronous
    public override func collectionView(
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:24:10: note: add '@MainActor' to make instance method 'testCellForItemAt()' part of global actor 'MainActor'
    func testCellForItemAt() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:26:43: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let cell = sut.collectionView(sut.collectionView, cellForItemAt: [0, 0])
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:24:10: note: add '@MainActor' to make instance method 'testCellForItemAt()' part of global actor 'MainActor'
    func testCellForItemAt() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:33:13: warning: call to main actor-isolated instance method 'collectionView(_:didSelectItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.collectionView(sut.collectionView, didSelectItemAt: indexPath)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:61:26: note: calls to instance method 'collectionView(_:didSelectItemAt:)' from outside of its actor context are implicitly asynchronous
    public override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:33:32: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.collectionView(sut.collectionView, didSelectItemAt: indexPath)
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:34:28: warning: call to main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .bottom)
                           ^
UIKit.UICollectionView.selectItem:2:22: note: calls to instance method 'selectItem(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:34:13: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .bottom)
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:91: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
                                                                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:98:47: note: property declared here
@property (nonatomic, getter=isSelected) BOOL selected;
                                              ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:30: warning: call to main actor-isolated instance method 'collectionView(_:cellForItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:44:26: note: calls to instance method 'collectionView(_:cellForItemAt:)' from outside of its actor context are implicitly asynchronous
    public override func collectionView(
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:49: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:56:86: warning: call to main actor-isolated initializer 'init(navigationTitle:collectionViewLayout:models:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewController<CatalogDisplayView<CatalogDemoView>>(
                                                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:21:12: note: calls to initializer 'init(navigationTitle:collectionViewLayout:models:)' from outside of its actor context are implicitly asynchronous
    public init(
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:41:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:58:35: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            collectionViewLayout: UICollectionViewFlowLayout(),
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:91:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:41:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                                 ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:27:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:18:28: warning: call to main actor-isolated instance method 'tableView(_:numberOfRowsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.tableView(sut.tableView, numberOfRowsInSection: 0), 2)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:30:26: note: calls to instance method 'tableView(_:numberOfRowsInSection:)' from outside of its actor context are implicitly asynchronous
    public override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:18:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.tableView(sut.tableView, numberOfRowsInSection: 0), 2)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:23:24: warning: call to main actor-isolated instance method 'tableView(_:cellForRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let cell = sut.tableView(sut.tableView, cellForRowAt: [0, 0])
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:35:26: note: calls to instance method 'tableView(_:cellForRowAt:)' from outside of its actor context are implicitly asynchronous
    public override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:21:10: note: add '@MainActor' to make instance method 'testCellForRowAt()' part of global actor 'MainActor'
    func testCellForRowAt() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:23:38: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let cell = sut.tableView(sut.tableView, cellForRowAt: [0, 0])
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:21:10: note: add '@MainActor' to make instance method 'testCellForRowAt()' part of global actor 'MainActor'
    func testCellForRowAt() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:30:13: warning: call to main actor-isolated instance method 'tableView(_:didSelectRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.tableView(sut.tableView, didSelectRowAt: indexPath)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:49:26: note: calls to instance method 'tableView(_:didSelectRowAt:)' from outside of its actor context are implicitly asynchronous
    public override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:30:27: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.tableView(sut.tableView, didSelectRowAt: indexPath)
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:31:23: warning: call to main actor-isolated instance method 'selectRow(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
                      ^
UIKit.UITableView.selectRow:2:22: note: calls to instance method 'selectRow(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectRow(at indexPath: IndexPath?, animated: Bool, scrollPosition: UITableView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:31:13: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:67: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: property declared here
@property (nonatomic, getter=isSelected) BOOL         selected;                   // set selected state (title, image, background). default is NO. animated is NO
                                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:40: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
                                       ^
UIKit.UITableView.cellForRow:2:22: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:30: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
    func testDidSelect() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:53:81: warning: call to main actor-isolated initializer 'init(navigationTitle:models:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = GenericTableViewController<CatalogDisplayView<CatalogDemoView>>(
                                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:19:12: note: calls to initializer 'init(navigationTitle:models:)' from outside of its actor context are implicitly asynchronous
    public init(navigationTitle: String? = nil, models: [View.Model]) {
           ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:38:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                            ^
SwiftDriverJobDiscovery normal arm64 Emitting module for YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation\ Requirements YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation YComponentBrowser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowser' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.o normal (in target 'YComponentBrowser' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.o
SwiftDriverJobDiscovery normal arm64 Compiling SubcategoryDestinationTests.swift, IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftdoc (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftsourceinfo (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewCellTest.swift, GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactoryTest.swift, ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling ClassificationViewControllerTest.swift, XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CategoriesTest.swift, CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
ExtractAppIntentsMetadata (in target 'YComponentBrowser' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YComponentBrowser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.YComponentBrowser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/YComponentBrowser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/YComponentBrowser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:04:43.974 appintentsmetadataprocessor[745:4382] Starting appintentsmetadataprocessor export
2025-04-27 15:04:44.016 appintentsmetadataprocessor[745:4382] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDisplayViewTest.swift, ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+makeCoder.swift, CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.o (in target 'YComponentBrowser' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowser.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests normal (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/Extensions --platform xros --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YComponentBrowserTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.YComponentBrowserTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/YComponentBrowserTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/YComponentBrowserTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-xros/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:04:44.246 appintentsmetadataprocessor[748:4418] Starting appintentsmetadataprocessor export
2025-04-27 15:04:44.248 appintentsmetadataprocessor[748:4418] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest/YComponentBrowserTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/YComponentBrowserTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "YComponentBrowser",
  "name" : "YComponentBrowser",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "YComponentBrowser",
      "targets" : [
        "YComponentBrowser"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YComponentBrowserTests",
      "module_type" : "SwiftTarget",
      "name" : "YComponentBrowserTests",
      "path" : "Tests/YComponentBrowserTests",
      "sources" : [
        "CatalogFactoryTest.swift",
        "ClassificationScene/ClassificationDataSourceTests.swift",
        "ClassificationScene/ClassificationViewControllerTest.swift",
        "Extensions/XCTestCase+MemoryLeakTracking.swift",
        "Extensions/XCTestCase+makeCoder.swift",
        "Models/Categories/CatalogCategoryTest.swift",
        "Models/Categories/CategoriesTest.swift",
        "Models/Destinations/CatalogDestinationTests.swift",
        "Models/Destinations/SubcategoryDestinationTests.swift",
        "Protocols/IdentifiableProtocolTest.swift",
        "UI Components/Generic Cells/GenericCollectionViewCellTest.swift",
        "UI Components/Generic Cells/GenericTableViewCellTest.swift",
        "UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift",
        "UI Components/Generic Controllers/GenericTableViewControllerTest.swift",
        "UI Components/Generic Views/CatalogDisplayViewTest.swift",
        "UI Components/Generic Views/ColorViewTest.swift",
        "UI Components/Generic Views/FontViewTest.swift",
        "UI Components/Generic Views/IconViewTest.swift"
      ],
      "target_dependencies" : [
        "YComponentBrowser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YComponentBrowser",
      "module_type" : "SwiftTarget",
      "name" : "YComponentBrowser",
      "path" : "Sources/YComponentBrowser",
      "product_memberships" : [
        "YComponentBrowser"
      ],
      "sources" : [
        "CatalogFactory.swift",
        "ClassificationScene/ClassificationDataSource.swift",
        "ClassificationScene/ClassificationViewController.swift",
        "Models/Categories/CatalogCategory.swift",
        "Models/Categories/ColorCategory.swift",
        "Models/Categories/ComponentCategory.swift",
        "Models/Categories/CustomCategory.swift",
        "Models/Categories/FontCategory.swift",
        "Models/Categories/IconCategory.swift",
        "Models/Destinations/CatalogDetailDestination.swift",
        "Models/Destinations/SubcategoryDetailDestination.swift",
        "Protocols/CatalogDataSource.swift",
        "Protocols/Classification.swift",
        "Protocols/Destination.swift",
        "Protocols/Highlightable.swift",
        "Protocols/Identifiable.swift",
        "Protocols/Populatable.swift",
        "Protocols/Reusable.swift",
        "Protocols/Selectable.swift",
        "UI Components/Generic Cells/GenericCollectionViewCell.swift",
        "UI Components/Generic Cells/GenericTableViewCell.swift",
        "UI Components/Generic Controllers/GenericCollectionViewController.swift",
        "UI Components/Generic Controllers/GenericTableViewController.swift",
        "UI Components/Generic Views/CatalogDisplayView.swift",
        "UI Components/Generic Views/ColorView.swift",
        "UI Components/Generic Views/ContentView.swift",
        "UI Components/Generic Views/FontView.swift",
        "UI Components/Generic Views/IconView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.