The Swift Package Index logo.Swift Package Index

Build Information

Failed to build AceLayout, reference 1.1.3 (2b96b1), with Swift 6.3 for Linux on 14 Apr 2026 19:29:25 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

    |                                                                     `- error: cannot find type 'CGFloat' in scope
471 |         guard let superview = target.superview else {
472 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:76: error: cannot find type 'NSLayoutConstraint' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:60: error: cannot find type 'CGFloat' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:493:10: error: cannot find type 'NSLayoutConstraint' in scope
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
493 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
494 |         guard let superview = target.superview else {
495 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:492:34: error: cannot find type 'CGFloat' in scope
490 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension \* `multiplier`.
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
493 |     ) -> NSLayoutConstraint {
494 |         guard let superview = target.superview else {
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:774:42: error: cannot infer contextual base in reference to member 'init'
772 |             insetBy inset: CGFloat
773 |         ) -> [NSLayoutConstraint] {
774 |             equal(to: another, insetBy: .init(top: inset, left: inset, bottom: inset, right: inset))
    |                                          `- error: cannot infer contextual base in reference to member 'init'
775 |         }
776 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:837:27: error: cannot infer contextual base in reference to member 'init'
835 |             insideOrEqual(
836 |                 to: another,
837 |                 insetBy: .init(top: inset, left: inset, bottom: inset, right: inset)
    |                           `- error: cannot infer contextual base in reference to member 'init'
838 |             )
839 |         }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:890:40: error: cannot infer contextual base in reference to member 'init'
888 |         @inlinable
889 |         public func equalToSuperview(insetBy inset: CGFloat) -> [NSLayoutConstraint] {
890 |             equalToSuperview(insetBy: .init(top: inset, left: inset, bottom: inset, right: inset))
    |                                        `- error: cannot infer contextual base in reference to member 'init'
891 |         }
892 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutRect.swift:944:27: error: cannot infer contextual base in reference to member 'init'
942 |         public func insideOrEqualToSuperview(insetBy inset: CGFloat) -> [NSLayoutConstraint] {
943 |             insideOrEqualToSuperview(
944 |                 insetBy: .init(top: inset, left: inset, bottom: inset, right: inset)
    |                           `- error: cannot infer contextual base in reference to member 'init'
945 |             )
946 |         }
/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)
[11/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/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+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: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.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+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: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.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+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: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/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: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 |
[12/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/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+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: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.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+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: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.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+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: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/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: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 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)
[14/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)
[15/16] Compiling AceLayout LayoutAnchor.swift
/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/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/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: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: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: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: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: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:76:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 77 |     }
 78 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:100:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
101 |     }
102 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:126:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
127 |     }
128 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:147:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
148 |     }
149 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:166:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
167 |     }
168 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:188:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
189 |     }
190 | }
/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/LayoutAnchors/LayoutDimension.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:116:34: error: cannot find type 'CGFloat' in scope
114 |     public func equal(
115 |         to another: some SizeConstrainable,
116 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
117 |     ) -> NSLayoutConstraint {
118 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:117:10: error: cannot find type 'NSLayoutConstraint' in scope
115 |         to another: some SizeConstrainable,
116 |         multipliedBy multiplier: CGFloat
117 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
118 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], multiplier: multiplier)
119 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:138:34: error: cannot find type 'CGFloat' in scope
136 |     public func lessThanOrEqual(
137 |         to another: some SizeConstrainable,
138 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
139 |     ) -> NSLayoutConstraint {
140 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:139:10: error: cannot find type 'NSLayoutConstraint' in scope
137 |         to another: some SizeConstrainable,
138 |         multipliedBy multiplier: CGFloat
139 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
140 |         anchor.constraint(
141 |             lessThanOrEqualTo: another[keyPath: anchorKeyPath],
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:163:34: error: cannot find type 'CGFloat' in scope
161 |     public func greaterThanOrEqual(
162 |         to another: some SizeConstrainable,
163 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
164 |     ) -> NSLayoutConstraint {
165 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:164:10: error: cannot find type 'NSLayoutConstraint' in scope
162 |         to another: some SizeConstrainable,
163 |         multipliedBy multiplier: CGFloat
164 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         anchor.constraint(
166 |             greaterThanOrEqualTo: another[keyPath: anchorKeyPath],
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:191:10: error: cannot find type 'NSLayoutConstraint' in scope
189 |         to anotherAnchor: BaseLayoutAnchor,
190 |         multipliedBy multiplier: CGFloat
191 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
192 |         anchor.constraint(equalTo: anotherAnchor, multiplier: multiplier)
193 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:190:34: error: cannot find type 'CGFloat' in scope
188 |     public func equal(
189 |         to anotherAnchor: BaseLayoutAnchor,
190 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
191 |     ) -> NSLayoutConstraint {
192 |         anchor.constraint(equalTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:213:10: error: cannot find type 'NSLayoutConstraint' in scope
211 |         to anotherAnchor: BaseLayoutAnchor,
212 |         multipliedBy multiplier: CGFloat
213 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
214 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, multiplier: multiplier)
215 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:212:34: error: cannot find type 'CGFloat' in scope
210 |     public func lessThanOrEqual(
211 |         to anotherAnchor: BaseLayoutAnchor,
212 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
213 |     ) -> NSLayoutConstraint {
214 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:235:10: error: cannot find type 'NSLayoutConstraint' in scope
233 |         to anotherAnchor: BaseLayoutAnchor,
234 |         multipliedBy multiplier: CGFloat
235 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
236 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, multiplier: multiplier)
237 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:234:34: error: cannot find type 'CGFloat' in scope
232 |     public func greaterThanOrEqual(
233 |         to anotherAnchor: BaseLayoutAnchor,
234 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
235 |     ) -> NSLayoutConstraint {
236 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:260:10: error: cannot find type 'NSLayoutConstraint' in scope
258 |         to another: Self,
259 |         multipliedBy multiplier: CGFloat
260 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
261 |         anchor.constraint(equalTo: another.anchor, multiplier: multiplier)
262 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:259:34: error: cannot find type 'CGFloat' in scope
257 |     public func equal(
258 |         to another: Self,
259 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
260 |     ) -> NSLayoutConstraint {
261 |         anchor.constraint(equalTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:283:10: error: cannot find type 'NSLayoutConstraint' in scope
281 |         to another: Self,
282 |         multipliedBy multiplier: CGFloat
283 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
284 |         anchor.constraint(lessThanOrEqualTo: another.anchor, multiplier: multiplier)
285 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:282:34: error: cannot find type 'CGFloat' in scope
280 |     public func lessThanOrEqual(
281 |         to another: Self,
282 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
283 |     ) -> NSLayoutConstraint {
284 |         anchor.constraint(lessThanOrEqualTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:306:10: error: cannot find type 'NSLayoutConstraint' in scope
304 |         to another: Self,
305 |         multipliedBy multiplier: CGFloat
306 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
307 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, multiplier: multiplier)
308 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:305:34: error: cannot find type 'CGFloat' in scope
303 |     public func greaterThanOrEqual(
304 |         to another: Self,
305 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
306 |     ) -> NSLayoutConstraint {
307 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:325:48: error: cannot find type 'NSLayoutConstraint' in scope
323 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `constant`.
324 |     @inlinable
325 |     public func equal(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                `- error: cannot find type 'NSLayoutConstraint' in scope
326 |         anchor.constraint(equalToConstant: constant)
327 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:325:36: error: cannot find type 'CGFloat' in scope
323 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `constant`.
324 |     @inlinable
325 |     public func equal(to constant: CGFloat) -> NSLayoutConstraint {
    |                                    `- error: cannot find type 'CGFloat' in scope
326 |         anchor.constraint(equalToConstant: constant)
327 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:342:58: error: cannot find type 'NSLayoutConstraint' in scope
340 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `constant`.
341 |     @inlinable
342 |     public func lessThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
343 |         anchor.constraint(lessThanOrEqualToConstant: constant)
344 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:342:46: error: cannot find type 'CGFloat' in scope
340 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `constant`.
341 |     @inlinable
342 |     public func lessThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                              `- error: cannot find type 'CGFloat' in scope
343 |         anchor.constraint(lessThanOrEqualToConstant: constant)
344 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:359:61: error: cannot find type 'NSLayoutConstraint' in scope
357 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `constant`.
358 |     @inlinable
359 |     public func greaterThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
360 |         anchor.constraint(greaterThanOrEqualToConstant: constant)
361 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:359:49: error: cannot find type 'CGFloat' in scope
357 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `constant`.
358 |     @inlinable
359 |     public func greaterThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                 `- error: cannot find type 'CGFloat' in scope
360 |         anchor.constraint(greaterThanOrEqualToConstant: constant)
361 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:380:63: error: cannot find type 'NSLayoutConstraint' in scope
378 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
379 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension + `offset`.
380 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
381 |         guard let superview = target.superview else {
382 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:380:47: error: cannot find type 'CGFloat' in scope
378 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
379 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension + `offset`.
380 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
381 |         guard let superview = target.superview else {
382 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:404:73: error: cannot find type 'NSLayoutConstraint' in scope
402 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
403 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension + `offset`.
404 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
405 |         guard let superview = target.superview else {
406 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:404:57: error: cannot find type 'CGFloat' in scope
402 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
403 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension + `offset`.
404 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
405 |         guard let superview = target.superview else {
406 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:76: error: cannot find type 'NSLayoutConstraint' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:60: error: cannot find type 'CGFloat' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:449:71: error: cannot find type 'NSLayoutConstraint' in scope
447 |     ///   - multiplier: The multiplier constant for the constraint.
448 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension \* `multiplier`.
449 |     public func equalToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
450 |         guard let superview = target.superview else {
451 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:449:59: error: cannot find type 'CGFloat' in scope
447 |     ///   - multiplier: The multiplier constant for the constraint.
448 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension \* `multiplier`.
449 |     public func equalToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                           `- error: cannot find type 'CGFloat' in scope
450 |         guard let superview = target.superview else {
451 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:470:81: error: cannot find type 'NSLayoutConstraint' in scope
468 |     ///   - multiplier: The multiplier constant for the constraint.
469 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension \* `multiplier`.
470 |     public func lessThanOrEqualToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
471 |         guard let superview = target.superview else {
472 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:470:69: error: cannot find type 'CGFloat' in scope
468 |     ///   - multiplier: The multiplier constant for the constraint.
469 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension \* `multiplier`.
470 |     public func lessThanOrEqualToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                     `- error: cannot find type 'CGFloat' in scope
471 |         guard let superview = target.superview else {
472 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:493:10: error: cannot find type 'NSLayoutConstraint' in scope
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
493 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
494 |         guard let superview = target.superview else {
495 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:492:34: error: cannot find type 'CGFloat' in scope
490 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension \* `multiplier`.
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
493 |     ) -> NSLayoutConstraint {
494 |         guard let superview = target.superview else {
/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: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: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: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: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: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(
[16/16] Compiling AceLayout LayoutDimension.swift
/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/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/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: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: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: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: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: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:76:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 74 |         plus offset: CGFloat = 0
 75 |     ) -> NSLayoutConstraint {
 76 |         anchor.constraint(equalTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 77 |     }
 78 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:100:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
 98 |         plus offset: CGFloat = 0
 99 |     ) -> NSLayoutConstraint {
100 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
101 |     }
102 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:126:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
124 |         plus offset: CGFloat = 0
125 |     ) -> NSLayoutConstraint {
126 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
127 |     }
128 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:147:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
145 |     @inlinable
146 |     public func equal(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
147 |         anchor.constraint(equalTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
148 |     }
149 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:166:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
164 |     @inlinable
165 |     public func lessThanOrEqual(to another: Self, plus offset: CGFloat = 0) -> NSLayoutConstraint {
166 |         anchor.constraint(lessThanOrEqualTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
167 |     }
168 |
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutAnchor.swift:188:16: error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
186 |         plus offset: CGFloat = 0
187 |     ) -> NSLayoutConstraint {
188 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, constant: offset)
    |                `- error: value of type 'Self.BaseLayoutAnchor' has no member 'constraint'
189 |     }
190 | }
/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/LayoutAnchors/LayoutDimension.swift:44:22: error: cannot find type 'CGFloat' in scope
 42 |     public func equal(
 43 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:45:10: error: cannot find type 'NSLayoutConstraint' in scope
 43 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:69:22: error: cannot find type 'CGFloat' in scope
 67 |     public func lessThanOrEqual(
 68 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:70:10: error: cannot find type 'NSLayoutConstraint' in scope
 68 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:94:22: error: cannot find type 'CGFloat' in scope
 92 |     public func greaterThanOrEqual(
 93 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:95:10: error: cannot find type 'NSLayoutConstraint' in scope
 93 |         to another: some SizeConstrainable,
 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/LayoutDimension.swift:116:34: error: cannot find type 'CGFloat' in scope
114 |     public func equal(
115 |         to another: some SizeConstrainable,
116 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
117 |     ) -> NSLayoutConstraint {
118 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:117:10: error: cannot find type 'NSLayoutConstraint' in scope
115 |         to another: some SizeConstrainable,
116 |         multipliedBy multiplier: CGFloat
117 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
118 |         anchor.constraint(equalTo: another[keyPath: anchorKeyPath], multiplier: multiplier)
119 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:138:34: error: cannot find type 'CGFloat' in scope
136 |     public func lessThanOrEqual(
137 |         to another: some SizeConstrainable,
138 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
139 |     ) -> NSLayoutConstraint {
140 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:139:10: error: cannot find type 'NSLayoutConstraint' in scope
137 |         to another: some SizeConstrainable,
138 |         multipliedBy multiplier: CGFloat
139 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
140 |         anchor.constraint(
141 |             lessThanOrEqualTo: another[keyPath: anchorKeyPath],
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:163:34: error: cannot find type 'CGFloat' in scope
161 |     public func greaterThanOrEqual(
162 |         to another: some SizeConstrainable,
163 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
164 |     ) -> NSLayoutConstraint {
165 |         anchor.constraint(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:164:10: error: cannot find type 'NSLayoutConstraint' in scope
162 |         to another: some SizeConstrainable,
163 |         multipliedBy multiplier: CGFloat
164 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
165 |         anchor.constraint(
166 |             greaterThanOrEqualTo: another[keyPath: anchorKeyPath],
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:191:10: error: cannot find type 'NSLayoutConstraint' in scope
189 |         to anotherAnchor: BaseLayoutAnchor,
190 |         multipliedBy multiplier: CGFloat
191 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
192 |         anchor.constraint(equalTo: anotherAnchor, multiplier: multiplier)
193 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:190:34: error: cannot find type 'CGFloat' in scope
188 |     public func equal(
189 |         to anotherAnchor: BaseLayoutAnchor,
190 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
191 |     ) -> NSLayoutConstraint {
192 |         anchor.constraint(equalTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:213:10: error: cannot find type 'NSLayoutConstraint' in scope
211 |         to anotherAnchor: BaseLayoutAnchor,
212 |         multipliedBy multiplier: CGFloat
213 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
214 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, multiplier: multiplier)
215 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:212:34: error: cannot find type 'CGFloat' in scope
210 |     public func lessThanOrEqual(
211 |         to anotherAnchor: BaseLayoutAnchor,
212 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
213 |     ) -> NSLayoutConstraint {
214 |         anchor.constraint(lessThanOrEqualTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:235:10: error: cannot find type 'NSLayoutConstraint' in scope
233 |         to anotherAnchor: BaseLayoutAnchor,
234 |         multipliedBy multiplier: CGFloat
235 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
236 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, multiplier: multiplier)
237 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:234:34: error: cannot find type 'CGFloat' in scope
232 |     public func greaterThanOrEqual(
233 |         to anotherAnchor: BaseLayoutAnchor,
234 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
235 |     ) -> NSLayoutConstraint {
236 |         anchor.constraint(greaterThanOrEqualTo: anotherAnchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:260:10: error: cannot find type 'NSLayoutConstraint' in scope
258 |         to another: Self,
259 |         multipliedBy multiplier: CGFloat
260 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
261 |         anchor.constraint(equalTo: another.anchor, multiplier: multiplier)
262 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:259:34: error: cannot find type 'CGFloat' in scope
257 |     public func equal(
258 |         to another: Self,
259 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
260 |     ) -> NSLayoutConstraint {
261 |         anchor.constraint(equalTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:283:10: error: cannot find type 'NSLayoutConstraint' in scope
281 |         to another: Self,
282 |         multipliedBy multiplier: CGFloat
283 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
284 |         anchor.constraint(lessThanOrEqualTo: another.anchor, multiplier: multiplier)
285 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:282:34: error: cannot find type 'CGFloat' in scope
280 |     public func lessThanOrEqual(
281 |         to another: Self,
282 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
283 |     ) -> NSLayoutConstraint {
284 |         anchor.constraint(lessThanOrEqualTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:306:10: error: cannot find type 'NSLayoutConstraint' in scope
304 |         to another: Self,
305 |         multipliedBy multiplier: CGFloat
306 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
307 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, multiplier: multiplier)
308 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:305:34: error: cannot find type 'CGFloat' in scope
303 |     public func greaterThanOrEqual(
304 |         to another: Self,
305 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
306 |     ) -> NSLayoutConstraint {
307 |         anchor.constraint(greaterThanOrEqualTo: another.anchor, multiplier: multiplier)
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:325:48: error: cannot find type 'NSLayoutConstraint' in scope
323 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `constant`.
324 |     @inlinable
325 |     public func equal(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                `- error: cannot find type 'NSLayoutConstraint' in scope
326 |         anchor.constraint(equalToConstant: constant)
327 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:325:36: error: cannot find type 'CGFloat' in scope
323 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `constant`.
324 |     @inlinable
325 |     public func equal(to constant: CGFloat) -> NSLayoutConstraint {
    |                                    `- error: cannot find type 'CGFloat' in scope
326 |         anchor.constraint(equalToConstant: constant)
327 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:342:58: error: cannot find type 'NSLayoutConstraint' in scope
340 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `constant`.
341 |     @inlinable
342 |     public func lessThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                          `- error: cannot find type 'NSLayoutConstraint' in scope
343 |         anchor.constraint(lessThanOrEqualToConstant: constant)
344 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:342:46: error: cannot find type 'CGFloat' in scope
340 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `constant`.
341 |     @inlinable
342 |     public func lessThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                              `- error: cannot find type 'CGFloat' in scope
343 |         anchor.constraint(lessThanOrEqualToConstant: constant)
344 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:359:61: error: cannot find type 'NSLayoutConstraint' in scope
357 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `constant`.
358 |     @inlinable
359 |     public func greaterThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                             `- error: cannot find type 'NSLayoutConstraint' in scope
360 |         anchor.constraint(greaterThanOrEqualToConstant: constant)
361 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:359:49: error: cannot find type 'CGFloat' in scope
357 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `constant`.
358 |     @inlinable
359 |     public func greaterThanOrEqual(to constant: CGFloat) -> NSLayoutConstraint {
    |                                                 `- error: cannot find type 'CGFloat' in scope
360 |         anchor.constraint(greaterThanOrEqualToConstant: constant)
361 |     }
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:380:63: error: cannot find type 'NSLayoutConstraint' in scope
378 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
379 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension + `offset`.
380 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- error: cannot find type 'NSLayoutConstraint' in scope
381 |         guard let superview = target.superview else {
382 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:380:47: error: cannot find type 'CGFloat' in scope
378 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
379 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension + `offset`.
380 |     public func equalToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                               `- error: cannot find type 'CGFloat' in scope
381 |         guard let superview = target.superview else {
382 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:404:73: error: cannot find type 'NSLayoutConstraint' in scope
402 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
403 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension + `offset`.
404 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- error: cannot find type 'NSLayoutConstraint' in scope
405 |         guard let superview = target.superview else {
406 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:404:57: error: cannot find type 'CGFloat' in scope
402 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
403 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension + `offset`.
404 |     public func lessThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                         `- error: cannot find type 'CGFloat' in scope
405 |         guard let superview = target.superview else {
406 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:76: error: cannot find type 'NSLayoutConstraint' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- error: cannot find type 'NSLayoutConstraint' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:428:60: error: cannot find type 'CGFloat' in scope
426 |     ///   - offset: A constant offset for the constraint. The default value is `0`.
427 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension + `offset`.
428 |     public func greaterThanOrEqualToSuperview(plus offset: CGFloat = 0) -> NSLayoutConstraint {
    |                                                            `- error: cannot find type 'CGFloat' in scope
429 |         guard let superview = target.superview else {
430 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:449:71: error: cannot find type 'NSLayoutConstraint' in scope
447 |     ///   - multiplier: The multiplier constant for the constraint.
448 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension \* `multiplier`.
449 |     public func equalToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                       `- error: cannot find type 'NSLayoutConstraint' in scope
450 |         guard let superview = target.superview else {
451 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:449:59: error: cannot find type 'CGFloat' in scope
447 |     ///   - multiplier: The multiplier constant for the constraint.
448 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension == `superview` dimension \* `multiplier`.
449 |     public func equalToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                           `- error: cannot find type 'CGFloat' in scope
450 |         guard let superview = target.superview else {
451 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:470:81: error: cannot find type 'NSLayoutConstraint' in scope
468 |     ///   - multiplier: The multiplier constant for the constraint.
469 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension \* `multiplier`.
470 |     public func lessThanOrEqualToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                                 `- error: cannot find type 'NSLayoutConstraint' in scope
471 |         guard let superview = target.superview else {
472 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:470:69: error: cannot find type 'CGFloat' in scope
468 |     ///   - multiplier: The multiplier constant for the constraint.
469 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension <= `superview` dimension \* `multiplier`.
470 |     public func lessThanOrEqualToSuperview(multipliedBy multiplier: CGFloat) -> NSLayoutConstraint {
    |                                                                     `- error: cannot find type 'CGFloat' in scope
471 |         guard let superview = target.superview else {
472 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:493:10: error: cannot find type 'NSLayoutConstraint' in scope
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
493 |     ) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutConstraint' in scope
494 |         guard let superview = target.superview else {
495 |             preconditionFailure(
/host/spi-builder-workspace/Sources/AceLayout/LayoutAnchors/LayoutDimension.swift:492:34: error: cannot find type 'CGFloat' in scope
490 |     /// - Returns: An  `NSLayoutConstraint` object that represents `self` dimension >= `superview` dimension \* `multiplier`.
491 |     public func greaterThanOrEqualToSuperview(
492 |         multipliedBy multiplier: CGFloat
    |                                  `- error: cannot find type 'CGFloat' in scope
493 |     ) -> NSLayoutConstraint {
494 |         guard let superview = target.superview else {
/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: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: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: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: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: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(
BUILD FAILURE 6.3 linux