The Swift Package Index logo.Swift Package Index

Build Information

Failed to build UIKitPlus, reference 2.3.0 (f1d23d), with Swift 6.1 for macOS (SPM) on 15 Jun 2025 00:00:35 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[190/296] Compiling UIKitPlus NotImplementedViewController.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[191/296] Compiling UIKitPlus StatusItem.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[192/296] Compiling UIKitPlus TabViewController.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[193/296] Compiling UIKitPlus ViewController.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[194/296] Compiling UIKitPlus Window.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[195/296] Compiling UIKitPlus ContentInsetAdjustment.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[196/296] Compiling UIKitPlus DeclarativeConstraintAnySide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:12:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 10 |
 11 | public class NavigationController: ViewController {
 12 |     public private (set) var viewControllers: [ViewController] = []
    |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 13 |
 14 |     public let rootViewController: ViewController
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:82:54: warning: no method declared with Objective-C selector 'redo:'
 80 |                 if event.modifierFlags.contains(.shift) && NSEvent.ModifierFlags.deviceIndependentFlagsMask.contains(.shift) {
 81 |                     if event.charactersIgnoringModifiers == "Z" {
 82 |                         if NSApp.sendAction(Selector("redo:"), to:nil, from:self) { return }
    |                                                      |- warning: no method declared with Objective-C selector 'redo:'
    |                                                      `- note: wrap the selector name in parentheses to suppress this warning
 83 |                     }
 84 |                 }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:88:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 86 |                 switch key {
 87 |                 case "x":
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:90:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 88 |                     if NSApp.sendAction(Selector("cut:"), to:nil, from:self) { return }
 89 |                 case "c":
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:92:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 90 |                     if NSApp.sendAction(Selector("copy:"), to:nil, from:self) { return }
 91 |                 case "v":
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:94:50: warning: no method declared with Objective-C selector 'undo:'
 92 |                     if NSApp.sendAction(Selector("paste:"), to:nil, from:self) { return }
 93 |                 case "z":
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
    |                                                  |- warning: no method declared with Objective-C selector 'undo:'
    |                                                  `- note: wrap the selector name in parentheses to suppress this warning
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacApp.swift:96:41: warning: use '#selector' instead of explicitly constructing a 'Selector'
 94 |                     if NSApp.sendAction(Selector("undo:"), to:nil, from:self) { return }
 95 |                 case "a":
 96 |                     if NSApp.sendAction(Selector("selectAll:"), to:nil, from:self) { return }
    |                                         `- warning: use '#selector' instead of explicitly constructing a 'Selector'
 97 |                 default:
 98 |                     break
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:191:5: warning: @discardableResult declared on a function returning Void is unnecessary
189 |
190 | extension NavigationController {
191 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
192 |     public func popViewController() {
193 |         popViewController(animated: true)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MacOS+NavigationController.swift:196:5: warning: @discardableResult declared on a function returning Void is unnecessary
194 |     }
195 |
196 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
197 |     public func popViewController(animated: Bool) {
198 |         guard let currentVC = viewControllers.popLast() else {
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:67:9: warning: result of call to 'submenu(content:)' is unused
 65 |
 66 |     public init (@MenuBuilder content: @escaping MenuBuilder.Block) {
 67 |         submenu(content: content)
    |         `- warning: result of call to 'submenu(content:)' is unused
 68 |     }
 69 |
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/MenuItem.swift:72:14: warning: result of call to 'title' is unused
 70 |     public func submenu(@MenuBuilder content: @escaping MenuBuilder.Block) -> Self {
 71 |         let menu = Menu()
 72 |         menu.title(item.title)
    |              `- warning: result of call to 'title' is unused
 73 |         item.submenu = menu.menu
 74 |         menu.parseMenuBuilder(content().menuBuilderContent)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:79:9: warning: result of call to 'title' is unused
 77 |
 78 |     public func title(_ state: UState<String>) -> Self {
 79 |         title(state.wrappedValue)
    |         `- warning: result of call to 'title' is unused
 80 |         state.listen {
 81 |             self.title($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:81:18: warning: result of call to 'title' is unused
 79 |         title(state.wrappedValue)
 80 |         state.listen {
 81 |             self.title($0)
    |                  `- warning: result of call to 'title' is unused
 82 |         }
 83 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:92:14: warning: result of call to 'attributedTitle' is unused
 90 |
 91 |     public func attributedTitle(_ state: UState<NSAttributedString>) -> Self {
 92 |         self.attributedTitle(state.wrappedValue)
    |              `- warning: result of call to 'attributedTitle' is unused
 93 |         state.listen {
 94 |             self.attributedTitle($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:94:18: warning: result of call to 'attributedTitle' is unused
 92 |         self.attributedTitle(state.wrappedValue)
 93 |         state.listen {
 94 |             self.attributedTitle($0)
    |                  `- warning: result of call to 'attributedTitle' is unused
 95 |         }
 96 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:105:9: warning: result of call to 'image' is unused
103 |
104 |     public func image(_ state: UState<NSImage?>) -> Self {
105 |         image(state.wrappedValue)
    |         `- warning: result of call to 'image' is unused
106 |         state.listen {
107 |             self.image($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:107:18: warning: result of call to 'image' is unused
105 |         image(state.wrappedValue)
106 |         state.listen {
107 |             self.image($0)
    |                  `- warning: result of call to 'image' is unused
108 |         }
109 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:118:9: warning: result of call to 'alternateImage' is unused
116 |
117 |     public func alternateImage(_ state: UState<NSImage?>) -> Self {
118 |         alternateImage(state.wrappedValue)
    |         `- warning: result of call to 'alternateImage' is unused
119 |         state.listen {
120 |             self.alternateImage($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:120:18: warning: result of call to 'alternateImage' is unused
118 |         alternateImage(state.wrappedValue)
119 |         state.listen {
120 |             self.alternateImage($0)
    |                  `- warning: result of call to 'alternateImage' is unused
121 |         }
122 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:131:14: warning: result of call to 'enabled' is unused
129 |
130 |     public func enabled(_ state: UState<Bool>) -> Self {
131 |         self.enabled(state.wrappedValue)
    |              `- warning: result of call to 'enabled' is unused
132 |         state.listen {
133 |             self.enabled($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:133:18: warning: result of call to 'enabled' is unused
131 |         self.enabled(state.wrappedValue)
132 |         state.listen {
133 |             self.enabled($0)
    |                  `- warning: result of call to 'enabled' is unused
134 |         }
135 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:144:14: warning: result of call to 'visible' is unused
142 |
143 |     public func visible(_ state: UState<Bool>) -> Self {
144 |         self.visible(state.wrappedValue)
    |              `- warning: result of call to 'visible' is unused
145 |         state.listen {
146 |             self.visible($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:146:18: warning: result of call to 'visible' is unused
144 |         self.visible(state.wrappedValue)
145 |         state.listen {
146 |             self.visible($0)
    |                  `- warning: result of call to 'visible' is unused
147 |         }
148 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:162:9: warning: result of call to 'toolTip' is unused
160 |
161 |     public func toolTip(_ state: UState<String>) -> Self {
162 |         toolTip(state.wrappedValue)
    |         `- warning: result of call to 'toolTip' is unused
163 |         state.listen {
164 |             self.toolTip($0)
/Users/admin/builder/spi-builder-workspace/Classes/Controllers/StatusItem.swift:164:18: warning: result of call to 'toolTip' is unused
162 |         toolTip(state.wrappedValue)
163 |         state.listen {
164 |             self.toolTip($0)
    |                  `- warning: result of call to 'toolTip' is unused
165 |         }
166 |         return self
[197/296] Compiling UIKitPlus UIColor+Hex.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[198/296] Compiling UIKitPlus UIControl+ActionHandler.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[199/296] Compiling UIKitPlus UIDevice+Model.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[200/296] Compiling UIKitPlus UIDeviceOrientation+Description.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[201/296] Compiling UIKitPlus UIFont+Family.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[202/296] Compiling UIKitPlus UIFont+PrintAll.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[203/296] Compiling UIKitPlus UIGestureRecognizer+GestureRecognizerable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[204/296] Compiling UIKitPlus UIImage+Blur.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[205/296] Compiling UIKitPlus UIImage+Resize.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[206/296] Compiling UIKitPlus UIImage+SegmentControlable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[207/296] Compiling UIKitPlus UIInterfaceOrientation+Description.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[208/296] Compiling UIKitPlus UIViewController+Body.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[209/296] Compiling UIKitPlus UIVisualEffect+Effects.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[210/296] Compiling UIKitPlus UNAuthorizationStatus+Status.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[211/296] Compiling UIKitPlus View+Add.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[212/296] Compiling UIKitPlus View+Body.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[213/296] Compiling UIKitPlus View+Menuable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[214/296] Compiling UIKitPlus View+SafeArea.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[215/296] Compiling UIKitPlus View+Shake.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[216/296] Compiling UIKitPlus View+ViewWithTag.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[217/296] Compiling UIKitPlus WrappedViewControllerable+Hidden.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[218/296] Compiling UIKitPlus Animation.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[219/296] Compiling UIKitPlus AttributedString.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[220/296] Compiling UIKitPlus ClickGestureRecognizer.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[221/296] Compiling UIKitPlus ForEach.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/UIViewController+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseViewController {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         view.body { block() }
11 |         return self
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/View+Body.swift:9:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 7 | extension BaseView {
 8 |     @discardableResult
 9 |     open func body(@BodyBuilder block: BodyBuilder.SingleView) -> Self {
   |     `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
10 |         addItem(block())
11 |         return self
[222/296] Compiling UIKitPlus DeclarativeProtocol+Bounds.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[223/296] Compiling UIKitPlus DeclarativeProtocol+Click.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[224/296] Compiling UIKitPlus DeclarativeProtocol+CompressionResistance.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[225/296] Compiling UIKitPlus DeclarativeProtocol+ConstraintLinks.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[226/296] Compiling UIKitPlus DeclarativeProtocol+Constraints.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[227/296] Compiling UIKitPlus DeclarativeProtocol+ConstraintsRelative.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[228/296] Compiling UIKitPlus DeclarativeProtocol+ConstraintsSolo.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[229/296] Compiling UIKitPlus DeclarativeProtocol+ConstraintsSuper.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[230/296] Compiling UIKitPlus DeclarativeProtocol+Corners.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[231/296] Compiling UIKitPlus DeclarativeProtocol+DeclarativeView.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[232/296] Compiling UIKitPlus DeclarativeProtocol+Gesture.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[233/296] Compiling UIKitPlus DeclarativeProtocol+Hidden.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[234/296] Compiling UIKitPlus DeclarativeProtocol+Hover.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[235/296] Compiling UIKitPlus DeclarativeProtocol+HuggingPriority.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[236/296] Compiling UIKitPlus DeclarativeProtocol+Itself.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[237/296] Compiling UIKitPlus DeclarativeProtocol+LayoutMargin.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[238/296] Compiling UIKitPlus DeclarativeProtocol+LayoutSubviews.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[239/296] Compiling UIKitPlus DeclarativeProtocol+LongPress.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[240/296] Compiling UIKitPlus DeclarativeProtocol+Magnification.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[241/296] Compiling UIKitPlus DeclarativeProtocol+MovedToSuperview.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[242/296] Compiling UIKitPlus DeclarativeProtocol+NextResponder.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[243/296] Compiling UIKitPlus DeclarativeProtocol+Opacity.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[244/296] Compiling UIKitPlus DeclarativeProtocol+Pan.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[245/296] Compiling UIKitPlus DeclarativeProtocol+Pinch.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[246/296] Compiling UIKitPlus DeclarativeProtocol+Press.swift
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[247/296] Compiling UIKitPlus DeclarativeProtocol+Rasterize.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[248/296] Compiling UIKitPlus DeclarativeProtocol+Rotation.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[249/296] Compiling UIKitPlus DeclarativeProtocol+ScreenEdgePan.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[250/296] Compiling UIKitPlus DeclarativeProtocol+Shadow.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[251/296] Compiling UIKitPlus DeclarativeProtocol+Swipe.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[252/296] Compiling UIKitPlus DeclarativeProtocol+Tag.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[253/296] Compiling UIKitPlus DeclarativeProtocol+Tap.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[254/296] Compiling UIKitPlus DeclarativeProtocol+Tint.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[255/296] Compiling UIKitPlus DeclarativeProtocol+UserInteraction.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[256/296] Compiling UIKitPlus NSEvent+Key.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[257/296] Compiling UIKitPlus NSLayoutConstraint+Activated.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[258/296] Compiling UIKitPlus NSLayoutConstraint+AllAttributes.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[259/296] Compiling UIKitPlus NSLayoutConstraint+Update.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[260/296] Compiling UIKitPlus NSSound+System.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[261/296] Compiling UIKitPlus NSView+BringToFront.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[262/296] Compiling UIKitPlus NavigationController+FadeTo.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[263/296] Compiling UIKitPlus NotificationCenter+Name.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[264/296] Compiling UIKitPlus Number+ConstraintValue.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[265/296] Compiling UIKitPlus Numeric+Device.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[266/296] Compiling UIKitPlus String+AttributedString.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[267/296] Compiling UIKitPlus String+LocalizedString.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[268/296] Compiling UIKitPlus String+SegmentControlable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[269/296] Compiling UIKitPlus TableView+Cellable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[270/296] Compiling UIKitPlus UIColor+Aplha.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[271/296] Compiling UIKitPlus UIColor+Dynamic.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NotificationCenter+Name.swift:21:1: warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 19 | }
 20 |
 21 | extension Notification.Name: RawRepresentable {}
    | |- warning: extension declares a conformance of imported type 'Name' to imported protocol 'RawRepresentable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 | extension NotificationCenter {
 23 |     public struct NotificationType {
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/NSView+BringToFront.swift:24:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
22 |                     return .orderedSame
23 |                 }
24 |             }, context: &theView)
   |                         `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
25 |     }
26 | }
[272/296] Compiling UIKitPlus DeclarativeConstraintCSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[273/296] Compiling UIKitPlus DeclarativeConstraintDSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[274/296] Compiling UIKitPlus DeclarativeConstraintXSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[275/296] Compiling UIKitPlus DeclarativeConstraintYSide.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[276/296] Compiling UIKitPlus Language.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[277/296] Compiling UIKitPlus LocalizedString.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[278/296] Compiling UIKitPlus MacOS+TextFieldContentType.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[279/296] Compiling UIKitPlus NavigationControllerStyle.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[280/296] Compiling UIKitPlus PushNotificationOption.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[281/296] Compiling UIKitPlus PushNotificationsAuthorizationStatus.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[282/296] Compiling UIKitPlus RootTransitionAnimation.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[283/296] Compiling UIKitPlus SegmentControlableItem.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[284/296] Compiling UIKitPlus StatusBarStyle.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[285/296] Compiling UIKitPlus TextFieldContentType.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[286/296] Compiling UIKitPlus TextItemInteraction.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[287/296] Compiling UIKitPlus Array+Diff.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[288/296] Compiling UIKitPlus AttrStr+Concat.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[289/296] Compiling UIKitPlus AttrStr+Joined.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[290/296] Compiling UIKitPlus ClosedRange+NSRange.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[291/296] Compiling UIKitPlus CollectionView+Cellable.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[292/296] Compiling UIKitPlus ConstraintValueType+Operators.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[293/296] Compiling UIKitPlus DeclarativeProtocol+Alpha.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[294/296] Compiling UIKitPlus DeclarativeProtocol+Apply.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[295/296] Compiling UIKitPlus DeclarativeProtocol+Background.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
[296/296] Compiling UIKitPlus DeclarativeProtocol+Borders.swift
/Users/admin/builder/spi-builder-workspace/Classes/Extensions/AttrStr+Joined.swift:17:13: warning: variable 'res' was never mutated; consider changing to 'let' constant
15 | extension Array: AnyString where Element == AnyString {
16 |     public var attributedString: NSAttributedString {
17 |         var res: NSMutableAttributedString = .init()
   |             `- warning: variable 'res' was never mutated; consider changing to 'let' constant
18 |         for str in self {
19 |             res.append(str.attributedString)
/Users/admin/builder/spi-builder-workspace/Classes/Objects/Properties.swift:43:73: error: cannot find type 'UITraitCollection' in scope
41 |         case borderColor, shadowColor
42 |     }
43 |     var traitCollectionDidChangeHandlers: [TraitCollectionHandlerType: (UITraitCollection) -> Void] = [:]
   |                                                                         `- error: cannot find type 'UITraitCollection' in scope
44 |
45 |     var hovered: Bool = false
BUILD FAILURE 6.1 macosSpm