The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build AceLayout, reference 1.1.3 (2b96b1), with Swift 6.0 for Linux on 1 Dec 2024 09:29:28 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:916:32: error: 'EdgeInsets' is not a member type of enum 'AceLayout.AL'
914 |         /// - Returns: An  `NSLayoutConstraint` object that represents `self` edges are inside of `superview` edges adjusted by `insets`.
915 |         public func insideOrEqualToSuperview(
916 |             insetBy insets: AL.EdgeInsets = .zero
    |                                `- error: 'EdgeInsets' is not a member type of enum 'AceLayout.AL'
917 |         ) -> [NSLayoutConstraint] {
918 |             [
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:942:74: error: cannot find type 'NSLayoutConstraint' in scope
940 |         /// - Returns: An  `NSLayoutConstraint` object that represents `self` edges are inside of `superview` edges adjusted by `inset`.
941 |         @inlinable
942 |         public func insideOrEqualToSuperview(insetBy inset: CGFloat) -> [NSLayoutConstraint] {
    |                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
943 |             insideOrEqualToSuperview(
944 |                 insetBy: .init(top: inset, left: inset, bottom: inset, right: inset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:942:61: error: cannot find type 'CGFloat' in scope
940 |         /// - Returns: An  `NSLayoutConstraint` object that represents `self` edges are inside of `superview` edges adjusted by `inset`.
941 |         @inlinable
942 |         public func insideOrEqualToSuperview(insetBy inset: CGFloat) -> [NSLayoutConstraint] {
    |                                                             `- error: cannot find type 'CGFloat' in scope
943 |             insideOrEqualToSuperview(
944 |                 insetBy: .init(top: inset, left: inset, bottom: inset, right: inset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some XAxesConstrainable,
 44 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 45 |     ) -> NSLayoutConstraint {
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some XAxesConstrainable,
 44 |         plus offset: CGFloat = 0
 45 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 47 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some XAxesConstrainable,
 69 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 70 |     ) -> NSLayoutConstraint {
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some XAxesConstrainable,
 69 |         plus offset: CGFloat = 0
 70 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 72 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some XAxesConstrainable,
 94 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 95 |     ) -> NSLayoutConstraint {
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some XAxesConstrainable,
 94 |         plus offset: CGFloat = 0
 95 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 97 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:116:63: error: cannot find type 'NSLayoutConstraint' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x == `superview` x + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:116:47: error: cannot find type 'CGFloat' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x == `superview` x + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:140:73: error: cannot find type 'NSLayoutConstraint' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x <= `superview` x + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:140:57: error: cannot find type 'CGFloat' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x <= `superview` x + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:164:76: error: cannot find type 'NSLayoutConstraint' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x >= `superview` x + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:164:60: error: cannot find type 'CGFloat' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` x >= `superview` x + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 45 |     ) -> NSLayoutConstraint {
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
 45 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 47 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 70 |     ) -> NSLayoutConstraint {
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
 70 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 72 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 95 |     ) -> NSLayoutConstraint {
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
 95 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 97 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:63: error: cannot find type 'NSLayoutConstraint' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:47: error: cannot find type 'CGFloat' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:73: error: cannot find type 'NSLayoutConstraint' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:57: error: cannot find type 'CGFloat' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:76: error: cannot find type 'NSLayoutConstraint' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:60: error: cannot find type 'CGFloat' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:78: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:54: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:80: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:55: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:48:62: error: cannot find type 'NSLayoutConstraint' in scope
46 |     }
47 |
48 |     public static func buildExpression(_ expression: ()) -> [NSLayoutConstraint] {
   |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
49 |         []
50 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:78: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:50: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:78: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:52: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:79: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:54: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:80: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:55: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:24:11: error: cannot find type 'NSLayoutConstraint' in scope
 22 |         activates: Bool,
 23 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<LayoutBase>) -> [NSLayoutConstraint]
 24 |     ) -> [NSLayoutConstraint]
    |           `- error: cannot find type 'NSLayoutConstraint' in scope
 25 | }
 26 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:23:81: error: cannot find type 'NSLayoutConstraint' in scope
 21 |     func autoLayout(
 22 |         activates: Bool,
 23 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<LayoutBase>) -> [NSLayoutConstraint]
    |                                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 24 |     ) -> [NSLayoutConstraint]
 25 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:23:9: error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 21 |     func autoLayout(
 22 |         activates: Bool,
 23 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<LayoutBase>) -> [NSLayoutConstraint]
    |         `- error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 24 |     ) -> [NSLayoutConstraint]
 25 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:37:11: error: cannot find type 'NSLayoutConstraint' in scope
 35 |         activates: Bool,
 36 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
 37 |     ) -> [NSLayoutConstraint] {
    |           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |         let constraints = builder(LayoutItem(base: self))
 39 |         if activates {
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:36:75: error: cannot find type 'NSLayoutConstraint' in scope
 34 |     fileprivate func _autoLayout(
 35 |         activates: Bool,
 36 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
    |                                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 37 |     ) -> [NSLayoutConstraint] {
 38 |         let constraints = builder(LayoutItem(base: self))
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:36:9: error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 34 |     fileprivate func _autoLayout(
 35 |         activates: Bool,
 36 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
    |         `- error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 37 |     ) -> [NSLayoutConstraint] {
 38 |         let constraints = builder(LayoutItem(base: self))
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:65:11: error: cannot find type 'NSLayoutConstraint' in scope
 63 |         activates: Bool = true,
 64 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
 65 |     ) -> [NSLayoutConstraint] {
    |           `- error: cannot find type 'NSLayoutConstraint' in scope
 66 |         _autoLayout(activates: activates, builder: builder)
 67 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:64:75: error: cannot find type 'NSLayoutConstraint' in scope
 62 |     public func autoLayout(
 63 |         activates: Bool = true,
 64 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
    |                                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 65 |     ) -> [NSLayoutConstraint] {
 66 |         _autoLayout(activates: activates, builder: builder)
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:64:9: error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 62 |     public func autoLayout(
 63 |         activates: Bool = true,
 64 |         @LayoutConstraintsBuilder builder: (_ item: LayoutItem<Self>) -> [NSLayoutConstraint]
    |         `- error: result builder attribute 'LayoutConstraintsBuilder' can only be applied to a parameter of function type
 65 |     ) -> [NSLayoutConstraint] {
 66 |         _autoLayout(activates: activates, builder: builder)
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:70:14: error: 'View' is not a member type of enum 'AceLayout.AL'
 68 | }
 69 |
 70 | extension AL.View: LayoutTarget {
    |              `- error: 'View' is not a member type of enum 'AceLayout.AL'
 71 |
 72 |     /// Creates layout constraints.
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutTarget.swift:99:14: error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
 97 | }
 98 |
 99 | extension AL.LayoutGuide: LayoutTarget {}
    |              `- error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
100 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
[10/16] Compiling AceLayout Constrainable.swift
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:23:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 | @MainActor
22 | public protocol XAxesConstrainable: SuperviewProviding {
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:24:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 | public protocol XAxesConstrainable: SuperviewProviding {
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
   |                         `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:25:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
   |                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
27 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:26:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
27 |
28 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:28:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
27 |
28 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
29 | }
30 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:34:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
32 | @MainActor
33 | public protocol YAxesConstrainable: SuperviewProviding {
34 |     var topAnchor: NSLayoutYAxisAnchor { get }
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
36 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:35:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
33 | public protocol YAxesConstrainable: SuperviewProviding {
34 |     var topAnchor: NSLayoutYAxisAnchor { get }
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
   |                       `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
36 |
37 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:37:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
36 |
37 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
38 | }
39 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:46:22: error: cannot find type 'NSLayoutDimension' in scope
44 | @MainActor
45 | public protocol SizeConstrainable: SuperviewProviding {
46 |     var widthAnchor: NSLayoutDimension { get }
   |                      `- error: cannot find type 'NSLayoutDimension' in scope
47 |     var heightAnchor: NSLayoutDimension { get }
48 | }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:47:23: error: cannot find type 'NSLayoutDimension' in scope
45 | public protocol SizeConstrainable: SuperviewProviding {
46 |     var widthAnchor: NSLayoutDimension { get }
47 |     var heightAnchor: NSLayoutDimension { get }
   |                       `- error: cannot find type 'NSLayoutDimension' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:53:30: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | @MainActor
52 | public protocol BaselinesConstrainable: SuperviewProviding {
53 |     var firstBaselineAnchor: NSLayoutYAxisAnchor { get }
   |                              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 |     var lastBaselineAnchor: NSLayoutYAxisAnchor { get }
55 | }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:54:29: error: cannot find type 'NSLayoutYAxisAnchor' in scope
52 | public protocol BaselinesConstrainable: SuperviewProviding {
53 |     var firstBaselineAnchor: NSLayoutYAxisAnchor { get }
54 |     var lastBaselineAnchor: NSLayoutYAxisAnchor { get }
   |                             `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
55 | }
56 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:59:14: error: 'View' is not a member type of enum 'AceLayout.AL'
57 | // MARK: - UIView, NSView: Constrainable -
58 |
59 | extension AL.View: XYAxesConstrainable, SizeConstrainable, BaselinesConstrainable {}
   |              `- error: 'View' is not a member type of enum 'AceLayout.AL'
60 |
61 | // MARK: - UILayoutGuide, NSLayoutGuide: Constrainable -
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:63:14: error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
61 | // MARK: - UILayoutGuide, NSLayoutGuide: Constrainable -
62 |
63 | extension AL.LayoutGuide: XYAxesConstrainable, SizeConstrainable {
   |              `- error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
64 |     public var superview: AL.View? { owningView }
65 | }
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:14:11: error: cannot find type 'NSLayoutConstraint' in scope
12 | #endif
13 |
14 | extension NSLayoutConstraint {
   |           `- error: cannot find type 'NSLayoutConstraint' in scope
15 |
16 |     /// Updates the constraint with the specified `priority`.
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:26:20: error: cannot find type 'NSLayoutConstraint' in scope
24 | }
25 |
26 | extension Sequence<NSLayoutConstraint> {
   |                    `- error: cannot find type 'NSLayoutConstraint' in scope
27 |
28 |     /// Updates each constraint with the specified `priority`.
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:32:41: error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
30 |     /// - Returns: The updated `self` with the specified `priority`.
31 |     @discardableResult @MainActor
32 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
   |                                         `- error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
33 |         forEach { $0.priority = priority }
34 |         return self
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:33:22: error: value of type 'Self.Element' has no member 'priority'
31 |     @discardableResult @MainActor
32 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
33 |         forEach { $0.priority = priority }
   |                      `- error: value of type 'Self.Element' has no member 'priority'
34 |         return self
35 |     }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:64:30: error: 'View' is not a member type of enum 'AceLayout.AL'
62 |
63 | extension AL.LayoutGuide: XYAxesConstrainable, SizeConstrainable {
64 |     public var superview: AL.View? { owningView }
   |                              `- error: 'View' is not a member type of enum 'AceLayout.AL'
65 | }
66 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:20:41: error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
18 |     /// - Returns: The updated `self` with the specified `priority`.
19 |     @discardableResult
20 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
   |                                         `- error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
21 |         self.priority = priority
22 |         return self
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
[11/16] Compiling AceLayout NSLayoutConstraint+Extension.swift
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:23:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 | @MainActor
22 | public protocol XAxesConstrainable: SuperviewProviding {
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:24:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 | public protocol XAxesConstrainable: SuperviewProviding {
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
   |                         `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:25:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
   |                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
27 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:26:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
25 |     var leftAnchor: NSLayoutXAxisAnchor { get }
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
27 |
28 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:28:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |     var rightAnchor: NSLayoutXAxisAnchor { get }
27 |
28 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
29 | }
30 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:34:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
32 | @MainActor
33 | public protocol YAxesConstrainable: SuperviewProviding {
34 |     var topAnchor: NSLayoutYAxisAnchor { get }
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
36 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:35:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
33 | public protocol YAxesConstrainable: SuperviewProviding {
34 |     var topAnchor: NSLayoutYAxisAnchor { get }
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
   |                       `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
36 |
37 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:37:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
36 |
37 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
38 | }
39 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:46:22: error: cannot find type 'NSLayoutDimension' in scope
44 | @MainActor
45 | public protocol SizeConstrainable: SuperviewProviding {
46 |     var widthAnchor: NSLayoutDimension { get }
   |                      `- error: cannot find type 'NSLayoutDimension' in scope
47 |     var heightAnchor: NSLayoutDimension { get }
48 | }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:47:23: error: cannot find type 'NSLayoutDimension' in scope
45 | public protocol SizeConstrainable: SuperviewProviding {
46 |     var widthAnchor: NSLayoutDimension { get }
47 |     var heightAnchor: NSLayoutDimension { get }
   |                       `- error: cannot find type 'NSLayoutDimension' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:53:30: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | @MainActor
52 | public protocol BaselinesConstrainable: SuperviewProviding {
53 |     var firstBaselineAnchor: NSLayoutYAxisAnchor { get }
   |                              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 |     var lastBaselineAnchor: NSLayoutYAxisAnchor { get }
55 | }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:54:29: error: cannot find type 'NSLayoutYAxisAnchor' in scope
52 | public protocol BaselinesConstrainable: SuperviewProviding {
53 |     var firstBaselineAnchor: NSLayoutYAxisAnchor { get }
54 |     var lastBaselineAnchor: NSLayoutYAxisAnchor { get }
   |                             `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
55 | }
56 |
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:59:14: error: 'View' is not a member type of enum 'AceLayout.AL'
57 | // MARK: - UIView, NSView: Constrainable -
58 |
59 | extension AL.View: XYAxesConstrainable, SizeConstrainable, BaselinesConstrainable {}
   |              `- error: 'View' is not a member type of enum 'AceLayout.AL'
60 |
61 | // MARK: - UILayoutGuide, NSLayoutGuide: Constrainable -
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:63:14: error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
61 | // MARK: - UILayoutGuide, NSLayoutGuide: Constrainable -
62 |
63 | extension AL.LayoutGuide: XYAxesConstrainable, SizeConstrainable {
   |              `- error: 'LayoutGuide' is not a member type of enum 'AceLayout.AL'
64 |     public var superview: AL.View? { owningView }
65 | }
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:14:11: error: cannot find type 'NSLayoutConstraint' in scope
12 | #endif
13 |
14 | extension NSLayoutConstraint {
   |           `- error: cannot find type 'NSLayoutConstraint' in scope
15 |
16 |     /// Updates the constraint with the specified `priority`.
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:26:20: error: cannot find type 'NSLayoutConstraint' in scope
24 | }
25 |
26 | extension Sequence<NSLayoutConstraint> {
   |                    `- error: cannot find type 'NSLayoutConstraint' in scope
27 |
28 |     /// Updates each constraint with the specified `priority`.
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:32:41: error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
30 |     /// - Returns: The updated `self` with the specified `priority`.
31 |     @discardableResult @MainActor
32 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
   |                                         `- error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
33 |         forEach { $0.priority = priority }
34 |         return self
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:33:22: error: value of type 'Self.Element' has no member 'priority'
31 |     @discardableResult @MainActor
32 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
33 |         forEach { $0.priority = priority }
   |                      `- error: value of type 'Self.Element' has no member 'priority'
34 |         return self
35 |     }
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:64:30: error: 'View' is not a member type of enum 'AceLayout.AL'
62 |
63 | extension AL.LayoutGuide: XYAxesConstrainable, SizeConstrainable {
64 |     public var superview: AL.View? { owningView }
   |                              `- error: 'View' is not a member type of enum 'AceLayout.AL'
65 | }
66 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/Extensions/NSLayoutConstraint+Extension.swift:20:41: error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
18 |     /// - Returns: The updated `self` with the specified `priority`.
19 |     @discardableResult
20 |     public func priority(_ priority: AL.LayoutPriority) -> Self {
   |                                         `- error: 'LayoutPriority' is not a member type of enum 'AceLayout.AL'
21 |         self.priority = priority
22 |         return self
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
[12/16] Compiling AceLayout BaselineAnchor.swift
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:16:66: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a baseline layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                    Target == any BaselinesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:17:72: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                    Target == any BaselinesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:18:38: error: cannot find type 'NSLayoutAnchor' in scope
 16 | public protocol LayoutAnchor {
 17 |     associatedtype AnchorType: AnyObject
 18 |     associatedtype BaseLayoutAnchor: NSLayoutAnchor<AnchorType>
    |                                      `- error: cannot find type 'NSLayoutAnchor' in scope
 19 |
 20 |     /// A type of the layout target such as `UIView`, `UILayoutGuide`, `NSView` or `NSLayoutGuide`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:40:22: error: cannot find type 'CGFloat' in scope
 38 |     public func equal(
 39 |         to another: some BaselinesConstrainable,
 40 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 41 |     ) -> NSLayoutConstraint {
 42 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:41:10: error: cannot find type 'NSLayoutConstraint' in scope
 39 |         to another: some BaselinesConstrainable,
 40 |         plus offset: CGFloat = 0
 41 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 42 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 43 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:61:22: error: cannot find type 'CGFloat' in scope
 59 |     public func lessThanOrEqual(
 60 |         to another: some BaselinesConstrainable,
 61 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 62 |     ) -> NSLayoutConstraint {
 63 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:62:10: error: cannot find type 'NSLayoutConstraint' in scope
 60 |         to another: some BaselinesConstrainable,
 61 |         plus offset: CGFloat = 0
 62 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 63 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 64 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:82:22: error: cannot find type 'CGFloat' in scope
 80 |     public func greaterThanOrEqual(
 81 |         to another: some BaselinesConstrainable,
 82 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 83 |     ) -> NSLayoutConstraint {
 84 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:83:10: error: cannot find type 'NSLayoutConstraint' in scope
 81 |         to another: some BaselinesConstrainable,
 82 |         plus offset: CGFloat = 0
 83 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 84 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 85 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:101:63: error: cannot find type 'NSLayoutConstraint' in scope
 99 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
100 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline == `superview` baseline + `offset`.
101 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
102 |         guard let superview = target.superview else {
103 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:101:47: error: cannot find type 'CGFloat' in scope
 99 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
100 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline == `superview` baseline + `offset`.
101 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
102 |         guard let superview = target.superview else {
103 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:122:73: error: cannot find type 'NSLayoutConstraint' in scope
120 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
121 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline <= `superview` baseline + `offset`.
122 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
123 |         guard let superview = target.superview else {
124 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:122:57: error: cannot find type 'CGFloat' in scope
120 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
121 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline <= `superview` baseline + `offset`.
122 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
123 |         guard let superview = target.superview else {
124 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:143:76: error: cannot find type 'NSLayoutConstraint' in scope
141 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
142 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline >= `superview` baseline + `offset`.
143 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
144 |         guard let superview = target.superview else {
145 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:143:60: error: cannot find type 'CGFloat' in scope
141 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
142 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline >= `superview` baseline + `offset`.
143 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
144 |         guard let superview = target.superview else {
145 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:15:50: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 13 |
 14 | @available(iOS 11.0, macOS 11.0, tvOS 11.0, *)
 15 | extension LayoutAnchor where BaseLayoutAnchor == NSLayoutXAxisAnchor {
    |                                                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 |
 17 |     /// Returns a constraint of the form `self` x == `anotherAnchor` + systemSpacing \* `multiplier`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:44:10: error: cannot find type 'NSLayoutConstraint' in scope
 42 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 43 |         multipliedBy multiplier: CGFloat = 1
 44 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |         anchor.constraint(equalToSystemSpacingAfter: anotherAnchor, multiplier: multiplier)
 46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:43:34: error: cannot find type 'CGFloat' in scope
 41 |     public func equal(
 42 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 43 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
 44 |     ) -> NSLayoutConstraint {
 45 |         anchor.constraint(equalToSystemSpacingAfter: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:76:10: error: cannot find type 'NSLayoutConstraint' in scope
 74 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 75 |         multipliedBy multiplier: CGFloat = 1
 76 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 77 |         anchor.constraint(
 78 |             lessThanOrEqualToSystemSpacingAfter: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:75:34: error: cannot find type 'CGFloat' in scope
 73 |     public func lessThanOrEqual(
 74 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 75 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
 76 |     ) -> NSLayoutConstraint {
 77 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:112:10: error: cannot find type 'NSLayoutConstraint' in scope
110 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
111 |         multipliedBy multiplier: CGFloat = 1
112 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
113 |         anchor.constraint(
114 |             greaterThanOrEqualToSystemSpacingAfter: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:111:34: error: cannot find type 'CGFloat' in scope
109 |     public func greaterThanOrEqual(
110 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
111 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
112 |     ) -> NSLayoutConstraint {
113 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:121:50: error: cannot find type 'NSLayoutYAxisAnchor' in scope
119 |
120 | @available(iOS 11.0, macOS 11.0, tvOS 11.0, *)
121 | extension LayoutAnchor where BaseLayoutAnchor == NSLayoutYAxisAnchor {
    |                                                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
122 |
123 |     /// Returns a constraint of the form `self` y == `anotherAnchor` + systemSpacing \* `multiplier`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:150:10: error: cannot find type 'NSLayoutConstraint' in scope
148 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
149 |         multipliedBy multiplier: CGFloat = 1
150 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
151 |         anchor.constraint(equalToSystemSpacingBelow: anotherAnchor, multiplier: multiplier)
152 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:149:34: error: cannot find type 'CGFloat' in scope
147 |     public func equal(
148 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
149 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
150 |     ) -> NSLayoutConstraint {
151 |         anchor.constraint(equalToSystemSpacingBelow: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:181:10: error: cannot find type 'NSLayoutConstraint' in scope
179 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
180 |         multipliedBy multiplier: CGFloat = 1
181 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
182 |         anchor.constraint(
183 |             lessThanOrEqualToSystemSpacingBelow: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:180:34: error: cannot find type 'CGFloat' in scope
178 |     public func lessThanOrEqual(
179 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
180 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
181 |     ) -> NSLayoutConstraint {
182 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:214:10: error: cannot find type 'NSLayoutConstraint' in scope
212 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
213 |         multipliedBy multiplier: CGFloat = 1
214 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
215 |         anchor.constraint(
216 |             greaterThanOrEqualToSystemSpacingBelow: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:213:34: error: cannot find type 'CGFloat' in scope
211 |     public func greaterThanOrEqual(
212 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
213 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
214 |     ) -> NSLayoutConstraint {
215 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:77: error: cannot find type 'NSLayoutConstraint' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:65: error: cannot find type 'CGFloat' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'CGFloat' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:59: error: cannot find type 'NSLayoutConstraint' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:47: error: cannot find type 'CGFloat' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                               `- error: cannot find type 'CGFloat' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:75:10: error: cannot find type 'NSLayoutConstraint' in scope
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
 77 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:74:22: error: cannot find type 'CGFloat' in scope
 72 |     public func equal(
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:70: error: cannot find type 'NSLayoutConstraint' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:54: error: cannot find type 'CGFloat' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                      `- error: cannot find type 'CGFloat' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:87: error: cannot find type 'NSLayoutConstraint' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:75: error: cannot find type 'CGFloat' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                           `- error: cannot find type 'CGFloat' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:69: error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                     `- error: cannot find type 'NSLayoutConstraint' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:57: error: cannot find type 'CGFloat' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                         `- error: cannot find type 'CGFloat' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:99:10: error: cannot find type 'NSLayoutConstraint' in scope
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
101 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:98:22: error: cannot find type 'CGFloat' in scope
 96 |     public func lessThanOrEqual(
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:80: error: cannot find type 'NSLayoutConstraint' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:64: error: cannot find type 'CGFloat' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                `- error: cannot find type 'CGFloat' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:90: error: cannot find type 'NSLayoutConstraint' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:78: error: cannot find type 'CGFloat' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                              `- error: cannot find type 'CGFloat' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:72: error: cannot find type 'NSLayoutConstraint' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:60: error: cannot find type 'CGFloat' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                            `- error: cannot find type 'CGFloat' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:125:10: error: cannot find type 'NSLayoutConstraint' in scope
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
127 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:124:22: error: cannot find type 'CGFloat' in scope
122 |     public func greaterThanOrEqual(
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:187:10: error: cannot find type 'NSLayoutConstraint' in scope
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
189 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:186:22: error: cannot find type 'CGFloat' in scope
184 |     public func greaterThanOrEqual(
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:52: error: cannot find type 'NSLayoutConstraint' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:40: error: cannot find type 'CGFloat' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                        `- error: cannot find type 'CGFloat' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:62: error: cannot find type 'NSLayoutConstraint' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:50: error: cannot find type 'CGFloat' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                  `- error: cannot find type 'CGFloat' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:65: error: cannot find type 'NSLayoutConstraint' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:53: error: cannot find type 'CGFloat' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                     `- error: cannot find type 'CGFloat' in scope
 46 | }
 47 |
[13/16] Compiling AceLayout LayoutAnchor+Extension.swift
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:16:66: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a baseline layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                    Target == any BaselinesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:17:72: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                    Target == any BaselinesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:18:38: error: cannot find type 'NSLayoutAnchor' in scope
 16 | public protocol LayoutAnchor {
 17 |     associatedtype AnchorType: AnyObject
 18 |     associatedtype BaseLayoutAnchor: NSLayoutAnchor<AnchorType>
    |                                      `- error: cannot find type 'NSLayoutAnchor' in scope
 19 |
 20 |     /// A type of the layout target such as `UIView`, `UILayoutGuide`, `NSView` or `NSLayoutGuide`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:40:22: error: cannot find type 'CGFloat' in scope
 38 |     public func equal(
 39 |         to another: some BaselinesConstrainable,
 40 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 41 |     ) -> NSLayoutConstraint {
 42 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:41:10: error: cannot find type 'NSLayoutConstraint' in scope
 39 |         to another: some BaselinesConstrainable,
 40 |         plus offset: CGFloat = 0
 41 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 42 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 43 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:61:22: error: cannot find type 'CGFloat' in scope
 59 |     public func lessThanOrEqual(
 60 |         to another: some BaselinesConstrainable,
 61 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 62 |     ) -> NSLayoutConstraint {
 63 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:62:10: error: cannot find type 'NSLayoutConstraint' in scope
 60 |         to another: some BaselinesConstrainable,
 61 |         plus offset: CGFloat = 0
 62 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 63 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 64 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:82:22: error: cannot find type 'CGFloat' in scope
 80 |     public func greaterThanOrEqual(
 81 |         to another: some BaselinesConstrainable,
 82 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 83 |     ) -> NSLayoutConstraint {
 84 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:83:10: error: cannot find type 'NSLayoutConstraint' in scope
 81 |         to another: some BaselinesConstrainable,
 82 |         plus offset: CGFloat = 0
 83 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 84 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 85 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:101:63: error: cannot find type 'NSLayoutConstraint' in scope
 99 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
100 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline == `superview` baseline + `offset`.
101 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
102 |         guard let superview = target.superview else {
103 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:101:47: error: cannot find type 'CGFloat' in scope
 99 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
100 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline == `superview` baseline + `offset`.
101 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
102 |         guard let superview = target.superview else {
103 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:122:73: error: cannot find type 'NSLayoutConstraint' in scope
120 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
121 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline <= `superview` baseline + `offset`.
122 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
123 |         guard let superview = target.superview else {
124 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:122:57: error: cannot find type 'CGFloat' in scope
120 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
121 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline <= `superview` baseline + `offset`.
122 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
123 |         guard let superview = target.superview else {
124 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:143:76: error: cannot find type 'NSLayoutConstraint' in scope
141 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
142 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline >= `superview` baseline + `offset`.
143 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
144 |         guard let superview = target.superview else {
145 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:143:60: error: cannot find type 'CGFloat' in scope
141 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
142 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` baseline >= `superview` baseline + `offset`.
143 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
144 |         guard let superview = target.superview else {
145 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:15:50: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 13 |
 14 | @available(iOS 11.0, macOS 11.0, tvOS 11.0, *)
 15 | extension LayoutAnchor where BaseLayoutAnchor == NSLayoutXAxisAnchor {
    |                                                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 |
 17 |     /// Returns a constraint of the form `self` x == `anotherAnchor` + systemSpacing \* `multiplier`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:44:10: error: cannot find type 'NSLayoutConstraint' in scope
 42 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 43 |         multipliedBy multiplier: CGFloat = 1
 44 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |         anchor.constraint(equalToSystemSpacingAfter: anotherAnchor, multiplier: multiplier)
 46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:43:34: error: cannot find type 'CGFloat' in scope
 41 |     public func equal(
 42 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 43 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
 44 |     ) -> NSLayoutConstraint {
 45 |         anchor.constraint(equalToSystemSpacingAfter: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:76:10: error: cannot find type 'NSLayoutConstraint' in scope
 74 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 75 |         multipliedBy multiplier: CGFloat = 1
 76 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 77 |         anchor.constraint(
 78 |             lessThanOrEqualToSystemSpacingAfter: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:75:34: error: cannot find type 'CGFloat' in scope
 73 |     public func lessThanOrEqual(
 74 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
 75 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
 76 |     ) -> NSLayoutConstraint {
 77 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:112:10: error: cannot find type 'NSLayoutConstraint' in scope
110 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
111 |         multipliedBy multiplier: CGFloat = 1
112 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
113 |         anchor.constraint(
114 |             greaterThanOrEqualToSystemSpacingAfter: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:111:34: error: cannot find type 'CGFloat' in scope
109 |     public func greaterThanOrEqual(
110 |         toSystemSpacingAfter anotherAnchor: BaseLayoutAnchor,
111 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
112 |     ) -> NSLayoutConstraint {
113 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:121:50: error: cannot find type 'NSLayoutYAxisAnchor' in scope
119 |
120 | @available(iOS 11.0, macOS 11.0, tvOS 11.0, *)
121 | extension LayoutAnchor where BaseLayoutAnchor == NSLayoutYAxisAnchor {
    |                                                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
122 |
123 |     /// Returns a constraint of the form `self` y == `anotherAnchor` + systemSpacing \* `multiplier`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:150:10: error: cannot find type 'NSLayoutConstraint' in scope
148 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
149 |         multipliedBy multiplier: CGFloat = 1
150 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
151 |         anchor.constraint(equalToSystemSpacingBelow: anotherAnchor, multiplier: multiplier)
152 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:149:34: error: cannot find type 'CGFloat' in scope
147 |     public func equal(
148 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
149 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
150 |     ) -> NSLayoutConstraint {
151 |         anchor.constraint(equalToSystemSpacingBelow: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:181:10: error: cannot find type 'NSLayoutConstraint' in scope
179 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
180 |         multipliedBy multiplier: CGFloat = 1
181 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
182 |         anchor.constraint(
183 |             lessThanOrEqualToSystemSpacingBelow: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:180:34: error: cannot find type 'CGFloat' in scope
178 |     public func lessThanOrEqual(
179 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
180 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
181 |     ) -> NSLayoutConstraint {
182 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:214:10: error: cannot find type 'NSLayoutConstraint' in scope
212 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
213 |         multipliedBy multiplier: CGFloat = 1
214 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
215 |         anchor.constraint(
216 |             greaterThanOrEqualToSystemSpacingBelow: anotherAnchor,
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor+Extension.swift:213:34: error: cannot find type 'CGFloat' in scope
211 |     public func greaterThanOrEqual(
212 |         toSystemSpacingBelow anotherAnchor: BaseLayoutAnchor,
213 |         multipliedBy multiplier: CGFloat = 1
    |                                  `- error: cannot find type 'CGFloat' in scope
214 |     ) -> NSLayoutConstraint {
215 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:77: error: cannot find type 'NSLayoutConstraint' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:65: error: cannot find type 'CGFloat' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'CGFloat' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:59: error: cannot find type 'NSLayoutConstraint' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:47: error: cannot find type 'CGFloat' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                               `- error: cannot find type 'CGFloat' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:75:10: error: cannot find type 'NSLayoutConstraint' in scope
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
 77 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:74:22: error: cannot find type 'CGFloat' in scope
 72 |     public func equal(
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:70: error: cannot find type 'NSLayoutConstraint' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:54: error: cannot find type 'CGFloat' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                      `- error: cannot find type 'CGFloat' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:87: error: cannot find type 'NSLayoutConstraint' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:75: error: cannot find type 'CGFloat' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                           `- error: cannot find type 'CGFloat' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:69: error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                     `- error: cannot find type 'NSLayoutConstraint' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:57: error: cannot find type 'CGFloat' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                         `- error: cannot find type 'CGFloat' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:99:10: error: cannot find type 'NSLayoutConstraint' in scope
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
101 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:98:22: error: cannot find type 'CGFloat' in scope
 96 |     public func lessThanOrEqual(
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:80: error: cannot find type 'NSLayoutConstraint' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:64: error: cannot find type 'CGFloat' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                `- error: cannot find type 'CGFloat' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:90: error: cannot find type 'NSLayoutConstraint' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:78: error: cannot find type 'CGFloat' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                              `- error: cannot find type 'CGFloat' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:72: error: cannot find type 'NSLayoutConstraint' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:60: error: cannot find type 'CGFloat' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                            `- error: cannot find type 'CGFloat' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:125:10: error: cannot find type 'NSLayoutConstraint' in scope
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
127 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:124:22: error: cannot find type 'CGFloat' in scope
122 |     public func greaterThanOrEqual(
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:187:10: error: cannot find type 'NSLayoutConstraint' in scope
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
189 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:186:22: error: cannot find type 'CGFloat' in scope
184 |     public func greaterThanOrEqual(
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:52: error: cannot find type 'NSLayoutConstraint' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:40: error: cannot find type 'CGFloat' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                        `- error: cannot find type 'CGFloat' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:62: error: cannot find type 'NSLayoutConstraint' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:50: error: cannot find type 'CGFloat' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                  `- error: cannot find type 'CGFloat' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:65: error: cannot find type 'NSLayoutConstraint' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:53: error: cannot find type 'CGFloat' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                     `- error: cannot find type 'CGFloat' in scope
 46 | }
 47 |
[14/16] Compiling AceLayout LayoutItem.swift
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:20:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 18 |     public struct XAxis: XAxisAnchor {
 19 |         public let target: any XAxesConstrainable
 20 |         public let anchorKeyPath: KeyPath<any XAxesConstrainable, NSLayoutXAxisAnchor>
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 21 |     }
 22 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:18:38: error: cannot find type 'NSLayoutAnchor' in scope
 16 | public protocol LayoutAnchor {
 17 |     associatedtype AnchorType: AnyObject
 18 |     associatedtype BaseLayoutAnchor: NSLayoutAnchor<AnchorType>
    |                                      `- error: cannot find type 'NSLayoutAnchor' in scope
 19 |
 20 |     /// A type of the layout target such as `UIView`, `UILayoutGuide`, `NSView` or `NSLayoutGuide`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:16:63: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 14 | /// A type that represents a layout anchor for creating horizontal layout constraints.
 15 | @MainActor
 16 | public protocol XAxisAnchor: LayoutAnchor where AnchorType == NSLayoutXAxisAnchor,
    |                                                               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 17 |                                                 BaseLayoutAnchor == NSLayoutXAxisAnchor,
 18 |                                                 Target == any XAxesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/XAxisAnchor.swift:17:69: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol XAxisAnchor: LayoutAnchor where AnchorType == NSLayoutXAxisAnchor,
 17 |                                                 BaseLayoutAnchor == NSLayoutXAxisAnchor,
    |                                                                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 18 |                                                 Target == any XAxesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:77: error: cannot find type 'NSLayoutConstraint' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:65: error: cannot find type 'CGFloat' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'CGFloat' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:87: error: cannot find type 'NSLayoutConstraint' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:75: error: cannot find type 'CGFloat' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                           `- error: cannot find type 'CGFloat' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:90: error: cannot find type 'NSLayoutConstraint' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:78: error: cannot find type 'CGFloat' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                              `- error: cannot find type 'CGFloat' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:59: error: cannot find type 'NSLayoutConstraint' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:47: error: cannot find type 'CGFloat' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                               `- error: cannot find type 'CGFloat' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:69: error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                     `- error: cannot find type 'NSLayoutConstraint' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:57: error: cannot find type 'CGFloat' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                         `- error: cannot find type 'CGFloat' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:72: error: cannot find type 'NSLayoutConstraint' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:60: error: cannot find type 'CGFloat' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                            `- error: cannot find type 'CGFloat' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:52: error: cannot find type 'NSLayoutConstraint' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:40: error: cannot find type 'CGFloat' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                        `- error: cannot find type 'CGFloat' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:62: error: cannot find type 'NSLayoutConstraint' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:50: error: cannot find type 'CGFloat' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                  `- error: cannot find type 'CGFloat' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:65: error: cannot find type 'NSLayoutConstraint' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:53: error: cannot find type 'CGFloat' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                     `- error: cannot find type 'CGFloat' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:29:42: error: type 'LayoutRect.XAxis' does not conform to protocol 'LayoutAnchor'
 27 |
 28 |     /// A layout anchor representing the leading edge of the target’s frame.
 29 |     public var leading: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.leadingAnchor) }
    |                                          `- error: type 'LayoutRect.XAxis' does not conform to protocol 'LayoutAnchor'
 30 |
 31 |     /// A layout anchor representing the trailing edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:29:79: error: cannot infer key path type from context; consider explicitly specifying a root type
 27 |
 28 |     /// A layout anchor representing the leading edge of the target’s frame.
 29 |     public var leading: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.leadingAnchor) }
    |                                                                               `- error: cannot infer key path type from context; consider explicitly specifying a root type
 30 |
 31 |     /// A layout anchor representing the trailing edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:32:80: error: cannot infer key path type from context; consider explicitly specifying a root type
 30 |
 31 |     /// A layout anchor representing the trailing edge of the target’s frame.
 32 |     public var trailing: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.trailingAnchor) }
    |                                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 33 |
 34 |     /// A layout anchor representing the left edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:35:76: error: cannot infer key path type from context; consider explicitly specifying a root type
 33 |
 34 |     /// A layout anchor representing the left edge of the target’s frame.
 35 |     public var left: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.leftAnchor) }
    |                                                                            `- error: cannot infer key path type from context; consider explicitly specifying a root type
 36 |
 37 |     /// A layout anchor representing the right edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:38:77: error: cannot infer key path type from context; consider explicitly specifying a root type
 36 |
 37 |     /// A layout anchor representing the right edge of the target’s frame.
 38 |     public var right: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.rightAnchor) }
    |                                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 39 |
 40 |     /// A layout anchor representing the horizontal center of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:41:79: error: cannot infer key path type from context; consider explicitly specifying a root type
 39 |
 40 |     /// A layout anchor representing the horizontal center of the target’s frame.
 41 |     public var centerX: LayoutRect.XAxis { .init(target: base, anchorKeyPath: \.centerXAnchor) }
    |                                                                               `- error: cannot infer key path type from context; consider explicitly specifying a root type
 42 |
 43 |     /// A convenient anchor that contains layout anchors representing the leading and trailing edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:26:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 24 |     public struct YAxis: YAxisAnchor {
 25 |         public let target: any YAxesConstrainable
 26 |         public let anchorKeyPath: KeyPath<any YAxesConstrainable, NSLayoutYAxisAnchor>
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 27 |     }
 28 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:16:63: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                 Target == any YAxesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:17:69: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                     `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                 Target == any YAxesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:53:38: error: type 'LayoutRect.YAxis' does not conform to protocol 'LayoutAnchor'
 51 |
 52 |     /// A layout anchor representing the top edge of the target’s frame.
 53 |     public var top: LayoutRect.YAxis { .init(target: base, anchorKeyPath: \.topAnchor) }
    |                                      `- error: type 'LayoutRect.YAxis' does not conform to protocol 'LayoutAnchor'
 54 |
 55 |     /// A layout anchor representing the bottom edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:53:75: error: cannot infer key path type from context; consider explicitly specifying a root type
 51 |
 52 |     /// A layout anchor representing the top edge of the target’s frame.
 53 |     public var top: LayoutRect.YAxis { .init(target: base, anchorKeyPath: \.topAnchor) }
    |                                                                           `- error: cannot infer key path type from context; consider explicitly specifying a root type
 54 |
 55 |     /// A layout anchor representing the bottom edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:56:78: error: cannot infer key path type from context; consider explicitly specifying a root type
 54 |
 55 |     /// A layout anchor representing the bottom edge of the target’s frame.
 56 |     public var bottom: LayoutRect.YAxis { .init(target: base, anchorKeyPath: \.bottomAnchor) }
    |                                                                              `- error: cannot infer key path type from context; consider explicitly specifying a root type
 57 |
 58 |     /// A layout anchor representing the vertical center of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:59:79: error: cannot infer key path type from context; consider explicitly specifying a root type
 57 |
 58 |     /// A layout anchor representing the vertical center of the target’s frame.
 59 |     public var centerY: LayoutRect.YAxis { .init(target: base, anchorKeyPath: \.centerYAnchor) }
    |                                                                               `- error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |
 61 |     /// A convenient anchor that contains layout anchors representing the top and bottom edge of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:32:66: error: cannot find type 'NSLayoutDimension' in scope
 30 |     public struct Dimension: LayoutDimension {
 31 |         public let target: any SizeConstrainable
 32 |         public let anchorKeyPath: KeyPath<any SizeConstrainable, NSLayoutDimension>
    |                                                                  `- error: cannot find type 'NSLayoutDimension' in scope
 33 |     }
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:16:67: error: cannot find type 'NSLayoutDimension' in scope
 14 | /// A type that represents a layout anchor for creating size-based layout constraints.
 15 | @MainActor
 16 | public protocol LayoutDimension: LayoutAnchor where AnchorType == NSLayoutDimension,
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
 17 |                                                     BaseLayoutAnchor == NSLayoutDimension,
 18 |                                                     Target == any SizeConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:17:73: error: cannot find type 'NSLayoutDimension' in scope
 15 | @MainActor
 16 | public protocol LayoutDimension: LayoutAnchor where AnchorType == NSLayoutDimension,
 17 |                                                     BaseLayoutAnchor == NSLayoutDimension,
    |                                                                         `- error: cannot find type 'NSLayoutDimension' in scope
 18 |                                                     Target == any SizeConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:101:44: error: type 'LayoutRect.Dimension' does not conform to protocol 'LayoutAnchor'
 99 |
100 |     /// A layout anchor representing the width of the target’s frame.
101 |     public var width: LayoutRect.Dimension { .init(target: base, anchorKeyPath: \.widthAnchor) }
    |                                            `- error: type 'LayoutRect.Dimension' does not conform to protocol 'LayoutAnchor'
102 |
103 |     /// A layout anchor representing the height of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:101:81: error: cannot infer key path type from context; consider explicitly specifying a root type
 99 |
100 |     /// A layout anchor representing the width of the target’s frame.
101 |     public var width: LayoutRect.Dimension { .init(target: base, anchorKeyPath: \.widthAnchor) }
    |                                                                                 `- error: cannot infer key path type from context; consider explicitly specifying a root type
102 |
103 |     /// A layout anchor representing the height of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:104:82: error: cannot infer key path type from context; consider explicitly specifying a root type
102 |
103 |     /// A layout anchor representing the height of the target’s frame.
104 |     public var height: LayoutRect.Dimension { .init(target: base, anchorKeyPath: \.heightAnchor) }
    |                                                                                  `- error: cannot infer key path type from context; consider explicitly specifying a root type
105 |
106 |     /// A convenient anchor that contains layout anchors representing the width and height of the target’s frame.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:38:71: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 36 |     public struct Baseline: BaselineAnchor {
 37 |         public let target: any BaselinesConstrainable
 38 |         public let anchorKeyPath: KeyPath<any BaselinesConstrainable, NSLayoutYAxisAnchor>
    |                                                                       `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 39 |     }
 40 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:16:66: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a baseline layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                    Target == any BaselinesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/BaselineAnchor.swift:17:72: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol BaselineAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                    BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                    Target == any BaselinesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:113:51: error: type 'LayoutRect.Baseline' does not conform to protocol 'LayoutAnchor'
111 |
112 |     /// A layout anchor representing the baseline for the topmost line of text in the target.
113 |     public var firstBaseline: LayoutRect.Baseline {
    |                                                   `- error: type 'LayoutRect.Baseline' does not conform to protocol 'LayoutAnchor'
114 |         .init(target: base, anchorKeyPath: \.firstBaselineAnchor)
115 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:114:44: error: cannot infer key path type from context; consider explicitly specifying a root type
112 |     /// A layout anchor representing the baseline for the topmost line of text in the target.
113 |     public var firstBaseline: LayoutRect.Baseline {
114 |         .init(target: base, anchorKeyPath: \.firstBaselineAnchor)
    |                                            `- error: cannot infer key path type from context; consider explicitly specifying a root type
115 |     }
116 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutItem.swift:119:44: error: cannot infer key path type from context; consider explicitly specifying a root type
117 |     /// A layout anchor representing the baseline for the bottommost line of text in the target.
118 |     public var lastBaseline: LayoutRect.Baseline {
119 |         .init(target: base, anchorKeyPath: \.lastBaselineAnchor)
    |                                            `- error: cannot infer key path type from context; consider explicitly specifying a root type
120 |     }
121 | }
[15/16] Compiling AceLayout YAxisAnchor.swift
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:16:63: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                 Target == any YAxesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:17:69: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                     `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                 Target == any YAxesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:18:38: error: cannot find type 'NSLayoutAnchor' in scope
 16 | public protocol LayoutAnchor {
 17 |     associatedtype AnchorType: AnyObject
 18 |     associatedtype BaseLayoutAnchor: NSLayoutAnchor<AnchorType>
    |                                      `- error: cannot find type 'NSLayoutAnchor' in scope
 19 |
 20 |     /// A type of the layout target such as `UIView`, `UILayoutGuide`, `NSView` or `NSLayoutGuide`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 45 |     ) -> NSLayoutConstraint {
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
 45 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 47 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 70 |     ) -> NSLayoutConstraint {
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
 70 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 72 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 95 |     ) -> NSLayoutConstraint {
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
 95 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 97 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:63: error: cannot find type 'NSLayoutConstraint' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:47: error: cannot find type 'CGFloat' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:73: error: cannot find type 'NSLayoutConstraint' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:57: error: cannot find type 'CGFloat' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:76: error: cannot find type 'NSLayoutConstraint' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:60: error: cannot find type 'CGFloat' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:78: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:54: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:80: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:55: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:48:62: error: cannot find type 'NSLayoutConstraint' in scope
46 |     }
47 |
48 |     public static func buildExpression(_ expression: ()) -> [NSLayoutConstraint] {
   |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
49 |         []
50 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:78: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:50: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:78: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:52: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:79: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:54: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:80: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:55: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:77: error: cannot find type 'NSLayoutConstraint' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:65: error: cannot find type 'CGFloat' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'CGFloat' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:59: error: cannot find type 'NSLayoutConstraint' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:47: error: cannot find type 'CGFloat' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                               `- error: cannot find type 'CGFloat' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:75:10: error: cannot find type 'NSLayoutConstraint' in scope
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
 77 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:74:22: error: cannot find type 'CGFloat' in scope
 72 |     public func equal(
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:70: error: cannot find type 'NSLayoutConstraint' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:54: error: cannot find type 'CGFloat' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                      `- error: cannot find type 'CGFloat' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:87: error: cannot find type 'NSLayoutConstraint' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:75: error: cannot find type 'CGFloat' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                           `- error: cannot find type 'CGFloat' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:69: error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                     `- error: cannot find type 'NSLayoutConstraint' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:57: error: cannot find type 'CGFloat' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                         `- error: cannot find type 'CGFloat' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:99:10: error: cannot find type 'NSLayoutConstraint' in scope
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
101 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:98:22: error: cannot find type 'CGFloat' in scope
 96 |     public func lessThanOrEqual(
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:80: error: cannot find type 'NSLayoutConstraint' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:64: error: cannot find type 'CGFloat' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                `- error: cannot find type 'CGFloat' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:90: error: cannot find type 'NSLayoutConstraint' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:78: error: cannot find type 'CGFloat' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                              `- error: cannot find type 'CGFloat' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:72: error: cannot find type 'NSLayoutConstraint' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:60: error: cannot find type 'CGFloat' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                            `- error: cannot find type 'CGFloat' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:125:10: error: cannot find type 'NSLayoutConstraint' in scope
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
127 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:124:22: error: cannot find type 'CGFloat' in scope
122 |     public func greaterThanOrEqual(
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:187:10: error: cannot find type 'NSLayoutConstraint' in scope
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
189 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:186:22: error: cannot find type 'CGFloat' in scope
184 |     public func greaterThanOrEqual(
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:52: error: cannot find type 'NSLayoutConstraint' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:40: error: cannot find type 'CGFloat' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                        `- error: cannot find type 'CGFloat' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:62: error: cannot find type 'NSLayoutConstraint' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:50: error: cannot find type 'CGFloat' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                  `- error: cannot find type 'CGFloat' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:65: error: cannot find type 'NSLayoutConstraint' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:53: error: cannot find type 'CGFloat' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                     `- error: cannot find type 'CGFloat' in scope
 46 | }
 47 |
[16/16] Compiling AceLayout LayoutConstraintsBuilder.swift
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:16:63: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 14 | /// A type that represents a layout anchor for creating vertical layout constraints.
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
    |                                                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
 18 |                                                 Target == any YAxesConstrainable {}
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:17:69: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 15 | @MainActor
 16 | public protocol YAxisAnchor: LayoutAnchor where AnchorType == NSLayoutYAxisAnchor,
 17 |                                                 BaseLayoutAnchor == NSLayoutYAxisAnchor,
    |                                                                     `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |                                                 Target == any YAxesConstrainable {}
 19 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:18:38: error: cannot find type 'NSLayoutAnchor' in scope
 16 | public protocol LayoutAnchor {
 17 |     associatedtype AnchorType: AnyObject
 18 |     associatedtype BaseLayoutAnchor: NSLayoutAnchor<AnchorType>
    |                                      `- error: cannot find type 'NSLayoutAnchor' in scope
 19 |
 20 |     /// A type of the layout target such as `UIView`, `UILayoutGuide`, `NSView` or `NSLayoutGuide`.
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 45 |     ) -> NSLayoutConstraint {
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some YAxesConstrainable,
 44 |         plus offset: CGFloat = 0
 45 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 46 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], constant: offset)
 47 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 70 |     ) -> NSLayoutConstraint {
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some YAxesConstrainable,
 69 |         plus offset: CGFloat = 0
 70 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 71 |         anchor.constraint(lessThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 72 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 95 |     ) -> NSLayoutConstraint {
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some YAxesConstrainable,
 94 |         plus offset: CGFloat = 0
 95 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 96 |         anchor.constraint(greaterThanOrEqualTo: another[keyPath: anchorKeyPath], constant: offset)
 97 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:63: error: cannot find type 'NSLayoutConstraint' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:116:47: error: cannot find type 'CGFloat' in scope
114 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
115 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y == `superview` y + `offset`.
116 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
117 |         guard let superview = target.superview else {
118 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:73: error: cannot find type 'NSLayoutConstraint' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:140:57: error: cannot find type 'CGFloat' in scope
138 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
139 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y <= `superview` y + `offset`.
140 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
141 |         guard let superview = target.superview else {
142 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:76: error: cannot find type 'NSLayoutConstraint' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/YAxisAnchor.swift:164:60: error: cannot find type 'CGFloat' in scope
162 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` y >= `superview` y + `offset`.
164 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
165 |         guard let superview = target.superview else {
166 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/Constrainable.swift:17:23: error: 'View' is not a member type of enum 'AceLayout.AL'
15 | @MainActor
16 | public protocol SuperviewProviding {
17 |     var superview: AL.View? { get }
   |                       `- error: 'View' is not a member type of enum 'AceLayout.AL'
18 | }
19 |
/host/spi-builder-workspace/Sources/AceLayout/Shims.swift:9:13: note: 'AL' declared here
 7 |
 8 | /// A namespace for shims.
 9 | public enum AL {}
   |             `- note: 'AL' declared here
10 |
11 | #if canImport(UIKit)
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:78: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:40:54: error: cannot find type 'NSLayoutConstraint' in scope
38 | public struct LayoutConstraintsBuilder {
39 |
40 |     public static func buildExpression(_ expression: NSLayoutConstraint) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
41 |         [expression]
42 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:80: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:44:55: error: cannot find type 'NSLayoutConstraint' in scope
42 |     }
43 |
44 |     public static func buildExpression(_ expression: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
45 |         expression
46 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:48:62: error: cannot find type 'NSLayoutConstraint' in scope
46 |     }
47 |
48 |     public static func buildExpression(_ expression: ()) -> [NSLayoutConstraint] {
   |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
49 |         []
50 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:78: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:52:50: error: cannot find type 'NSLayoutConstraint' in scope
50 |     }
51 |
52 |     public static func buildBlock(_ components: [NSLayoutConstraint]...) -> [NSLayoutConstraint] {
   |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
53 |         components.flatMap { $0 }
54 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:78: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:56:52: error: cannot find type 'NSLayoutConstraint' in scope
54 |     }
55 |
56 |     public static func buildOptional(_ component: [NSLayoutConstraint]?) -> [NSLayoutConstraint] {
   |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
57 |         component ?? []
58 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:79: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:60:54: error: cannot find type 'NSLayoutConstraint' in scope
58 |     }
59 |
60 |     public static func buildEither(first component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
61 |         component
62 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:80: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutConstraintsBuilder.swift:64:55: error: cannot find type 'NSLayoutConstraint' in scope
62 |     }
63 |
64 |     public static func buildEither(second component: [NSLayoutConstraint]) -> [NSLayoutConstraint] {
   |                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
65 |         component
66 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:77: error: cannot find type 'NSLayoutConstraint' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:31:65: error: cannot find type 'CGFloat' in scope
 29 |     // MARK: - Constraints with BaseLayoutAnchor
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'CGFloat' in scope
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:59: error: cannot find type 'NSLayoutConstraint' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                           `- error: cannot find type 'NSLayoutConstraint' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:37:47: error: cannot find type 'CGFloat' in scope
 35 |     // MARK: - Constraints with LayoutAnchor
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                               `- error: cannot find type 'CGFloat' in scope
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:75:10: error: cannot find type 'NSLayoutConstraint' in scope
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
 77 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:74:22: error: cannot find type 'CGFloat' in scope
 72 |     public func equal(
 73 |         to anotherAnchor: BaseLayoutAnchor,
 74 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:70: error: cannot find type 'NSLayoutConstraint' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                      `- error: cannot find type 'NSLayoutConstraint' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:146:54: error: cannot find type 'CGFloat' in scope
144 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor == `another` anchor + `offset`.
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                      `- error: cannot find type 'CGFloat' in scope
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
148 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:87: error: cannot find type 'NSLayoutConstraint' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:32:75: error: cannot find type 'CGFloat' in scope
 30 |
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                           `- error: cannot find type 'CGFloat' in scope
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 34 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:69: error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                     `- error: cannot find type 'NSLayoutConstraint' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:38:57: error: cannot find type 'CGFloat' in scope
 36 |
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                         `- error: cannot find type 'CGFloat' in scope
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 40 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:99:10: error: cannot find type 'NSLayoutConstraint' in scope
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
101 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:98:22: error: cannot find type 'CGFloat' in scope
 96 |     public func lessThanOrEqual(
 97 |         to anotherAnchor: BaseLayoutAnchor,
 98 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:80: error: cannot find type 'NSLayoutConstraint' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                                `- error: cannot find type 'NSLayoutConstraint' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:165:64: error: cannot find type 'CGFloat' in scope
163 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` anchor <= `another` anchor + `offset`.
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                `- error: cannot find type 'CGFloat' in scope
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
167 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:90: error: cannot find type 'NSLayoutConstraint' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:33:78: error: cannot find type 'CGFloat' in scope
 31 |     func equal(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 32 |     func lessThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
 33 |     func greaterThanOrEqual(to anotherAnchor: BaseLayoutAnchor, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                              `- error: cannot find type 'CGFloat' in scope
 34 |
 35 |     // MARK: - Constraints with LayoutAnchor
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:72: error: cannot find type 'NSLayoutConstraint' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:39:60: error: cannot find type 'CGFloat' in scope
 37 |     func equal(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 38 |     func lessThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
 39 |     func greaterThanOrEqual(to another: Self, plus offset: CGFloat) -> NSLayoutConstraint
    |                                                            `- error: cannot find type 'CGFloat' in scope
 40 |
 41 |     // MARK: - Constraints with superview
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:125:10: error: cannot find type 'NSLayoutConstraint' in scope
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
127 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:124:22: error: cannot find type 'CGFloat' in scope
122 |     public func greaterThanOrEqual(
123 |         to anotherAnchor: BaseLayoutAnchor,
124 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:187:10: error: cannot find type 'NSLayoutConstraint' in scope
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
189 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:186:22: error: cannot find type 'CGFloat' in scope
184 |     public func greaterThanOrEqual(
185 |         to another: Self,
186 |         plus offset: CGFloat = 0
    |                      `- error: cannot find type 'CGFloat' in scope
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:52: error: cannot find type 'NSLayoutConstraint' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:43:40: error: cannot find type 'CGFloat' in scope
 41 |     // MARK: - Constraints with superview
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                        `- error: cannot find type 'CGFloat' in scope
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:62: error: cannot find type 'NSLayoutConstraint' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:44:50: error: cannot find type 'CGFloat' in scope
 42 |
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                  `- error: cannot find type 'CGFloat' in scope
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 46 | }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:65: error: cannot find type 'NSLayoutConstraint' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
 46 | }
 47 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:45:53: error: cannot find type 'CGFloat' in scope
 43 |     func equalToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 44 |     func lessThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
 45 |     func greaterThanOrEqualToSuperview(plus offset: CGFloat) -> NSLayoutConstraint
    |                                                     `- error: cannot find type 'CGFloat' in scope
 46 | }
 47 |
BUILD FAILURE 6.0 linux