The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build BBLayoutKit, reference master (54b41a), with Swift 6.0 for Linux on 27 Nov 2024 23:50:13 UTC.

Build Command

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

Build Log

311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:310:10: error: cannot find type 'NSLayoutDimension' in scope
308 |
309 | public func != (
310 |     lhs: NSLayoutDimension,
    |          `- error: cannot find type 'NSLayoutDimension' in scope
311 |     rhs: CGFloat) -> NSLayoutConstraint {
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:311:10: error: cannot find type 'CGFloat' in scope
309 | public func != (
310 |     lhs: NSLayoutDimension,
311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |          `- error: cannot find type 'CGFloat' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:97:28: error: cannot infer contextual base in reference to member 'top'
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
 96 |
 97 |         if sides.contains(.top) || top != nil {
    |                            `- error: cannot infer contextual base in reference to member 'top'
 98 |             view.anchor(
 99 |                 lhs: .top,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:15:14: error: cannot find type 'CGFloat' in scope
13 | public protocol BBEdgeInsetConvertible {
14 |
15 |     var top: CGFloat { get }
   |              `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var left: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:99:23: error: cannot infer contextual base in reference to member 'top'
 97 |         if sides.contains(.top) || top != nil {
 98 |             view.anchor(
 99 |                 lhs: .top,
    |                       `- error: cannot infer contextual base in reference to member 'top'
100 |                 relation: topRelation,
101 |                 rhs: top ?? topAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:104:28: error: cannot infer contextual base in reference to member 'left'
102 |                 constant: inset.top)
103 |         }
104 |         if sides.contains(.left) || left != nil {
    |                            `- error: cannot infer contextual base in reference to member 'left'
105 |             view.anchor(
106 |                 lhs: .left,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:17:15: error: cannot find type 'CGFloat' in scope
15 |     var top: CGFloat { get }
16 |
17 |     var left: CGFloat { get }
   |               `- error: cannot find type 'CGFloat' in scope
18 |
19 |     var bottom: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:106:23: error: cannot infer contextual base in reference to member 'left'
104 |         if sides.contains(.left) || left != nil {
105 |             view.anchor(
106 |                 lhs: .left,
    |                       `- error: cannot infer contextual base in reference to member 'left'
107 |                 relation: leftRelation,
108 |                 rhs: left ?? leftAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:111:28: error: cannot infer contextual base in reference to member 'leading'
109 |                 constant: inset.left)
110 |         }
111 |         if sides.contains(.leading) || leading != nil {
    |                            `- error: cannot infer contextual base in reference to member 'leading'
112 |             view.anchor(
113 |                 lhs: .leading,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:113:23: error: cannot infer contextual base in reference to member 'leading'
111 |         if sides.contains(.leading) || leading != nil {
112 |             view.anchor(
113 |                 lhs: .leading,
    |                       `- error: cannot infer contextual base in reference to member 'leading'
114 |                 relation: leadingRelation,
115 |                 rhs: leading ?? leadingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:118:28: error: cannot infer contextual base in reference to member 'bottom'
116 |                 constant: inset.left)
117 |         }
118 |         if sides.contains(.bottom) || bottom != nil {
    |                            `- error: cannot infer contextual base in reference to member 'bottom'
119 |             view.anchor(
120 |                 lhs: .bottom,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:140:10: error: cannot find type 'NSLayoutAnchor' in scope
138 |
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
142 |     (lhs, (1, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:10: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:23: error: cannot find type 'NSLayoutAnchor' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:52: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                    `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:61: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                             `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:23: error: cannot find type 'NSLayoutAnchor' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:59: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                           `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:68: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                                    `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:11: error: cannot find type 'NSLayoutAnchor' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:47: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                               `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:56: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                                        `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:10: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:11: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:48: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:6: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:43: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:23: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:60: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                            `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:6: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:43: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:19:17: error: cannot find type 'CGFloat' in scope
17 |     var left: CGFloat { get }
18 |
19 |     var bottom: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
20 |
21 |     var right: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:120:23: error: cannot infer contextual base in reference to member 'bottom'
118 |         if sides.contains(.bottom) || bottom != nil {
119 |             view.anchor(
120 |                 lhs: .bottom,
    |                       `- error: cannot infer contextual base in reference to member 'bottom'
121 |                 relation: bottomRelation,
122 |                 rhs: bottom ?? bottomAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:125:28: error: cannot infer contextual base in reference to member 'right'
123 |                 constant: -inset.bottom)
124 |         }
125 |         if sides.contains(.right) || right != nil {
    |                            `- error: cannot infer contextual base in reference to member 'right'
126 |             view.anchor(
127 |                 lhs: .right,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:21:16: error: cannot find type 'CGFloat' in scope
19 |     var bottom: CGFloat { get }
20 |
21 |     var right: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:127:23: error: cannot infer contextual base in reference to member 'right'
125 |         if sides.contains(.right) || right != nil {
126 |             view.anchor(
127 |                 lhs: .right,
    |                       `- error: cannot infer contextual base in reference to member 'right'
128 |                 relation: rightRelation,
129 |                 rhs: right ?? rightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:132:28: error: cannot infer contextual base in reference to member 'trailing'
130 |                 constant: -inset.right)
131 |         }
132 |         if sides.contains(.trailing) || trailing != nil {
    |                            `- error: cannot infer contextual base in reference to member 'trailing'
133 |             view.anchor(
134 |                 lhs: .trailing,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:134:23: error: cannot infer contextual base in reference to member 'trailing'
132 |         if sides.contains(.trailing) || trailing != nil {
133 |             view.anchor(
134 |                 lhs: .trailing,
    |                       `- error: cannot infer contextual base in reference to member 'trailing'
135 |                 relation: trailingRelation,
136 |                 rhs: trailing ?? trailingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:150:30: error: cannot infer contextual base in reference to member 'centerX'
148 |         offset: BBOffsetConvertible                  = 0) {
149 |
150 |         if centers.contains(.centerX) || centerX != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerX'
151 |             view.anchor(
152 |                 lhs: .centerX,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:15:21: error: cannot find type 'CGFloat' in scope
13 | public protocol BBOffsetConvertible {
14 |
15 |     var horizontal: CGFloat { get }
   |                     `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var vertical: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:152:23: error: cannot infer contextual base in reference to member 'centerX'
150 |         if centers.contains(.centerX) || centerX != nil {
151 |             view.anchor(
152 |                 lhs: .centerX,
    |                       `- error: cannot infer contextual base in reference to member 'centerX'
153 |                 relation: centerXRelation,
154 |                 rhs: centerX ?? centerXAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:157:30: error: cannot infer contextual base in reference to member 'centerY'
155 |                 constant: offset.horizontal)
156 |         }
157 |         if centers.contains(.centerY) || centerY != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerY'
158 |             view.anchor(
159 |                 lhs: .centerY,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:17:19: error: cannot find type 'CGFloat' in scope
15 |     var horizontal: CGFloat { get }
16 |
17 |     var vertical: CGFloat { get }
   |                   `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:159:23: error: cannot infer contextual base in reference to member 'centerY'
157 |         if centers.contains(.centerY) || centerY != nil {
158 |             view.anchor(
159 |                 lhs: .centerY,
    |                       `- error: cannot infer contextual base in reference to member 'centerY'
160 |                 relation: centerYRelation,
161 |                 rhs: centerY ?? centerYAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:176:28: error: cannot infer contextual base in reference to member 'width'
174 |         size: BBSizeConvertible                     = 0) {
175 |
176 |         if sides.contains(.width) || width != nil {
    |                            `- error: cannot infer contextual base in reference to member 'width'
177 |             view.anchor(
178 |                 lhs: .width,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:15:23: error: cannot find type 'CGFloat' in scope
13 | public struct BBMultiplier {
14 |
15 |     public var width: CGFloat
   |                       `- error: cannot find type 'CGFloat' in scope
16 |
17 |     public var height: CGFloat
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:15:16: error: cannot find type 'CGFloat' in scope
13 | public protocol BBSizeConvertible {
14 |
15 |     var width: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var height: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:178:23: error: cannot infer contextual base in reference to member 'width'
176 |         if sides.contains(.width) || width != nil {
177 |             view.anchor(
178 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
179 |                 relation: widthRelation,
180 |                 rhs: width ?? widthAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:185:23: error: cannot infer contextual base in reference to member 'width'
183 |         } else if size.width != 0 {
184 |             view.anchor(
185 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
186 |                 relation: widthRelation,
187 |                 rhs: size.width)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:189:28: error: cannot infer contextual base in reference to member 'height'
187 |                 rhs: size.width)
188 |         }
189 |         if sides.contains(.height) || height != nil {
    |                            `- error: cannot infer contextual base in reference to member 'height'
190 |             view.anchor(
191 |                 lhs: .height,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:17:24: error: cannot find type 'CGFloat' in scope
15 |     public var width: CGFloat
16 |
17 |     public var height: CGFloat
   |                        `- error: cannot find type 'CGFloat' in scope
18 |
19 |     public init(w width: CGFloat = 1, h height: CGFloat = 1) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:17:17: error: cannot find type 'CGFloat' in scope
15 |     var width: CGFloat { get }
16 |
17 |     var height: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:191:23: error: cannot infer contextual base in reference to member 'height'
189 |         if sides.contains(.height) || height != nil {
190 |             view.anchor(
191 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
192 |                 relation: heightRelation,
193 |                 rhs: height ?? heightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:198:23: error: cannot infer contextual base in reference to member 'height'
196 |         } else if size.height != 0 {
197 |             view.anchor(
198 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
199 |                 relation: heightRelation,
200 |                 rhs: size.height)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:211:39: error: cannot find type 'NSLayoutAnchor' in scope
209 |         constant: CGFloat                     = 0) {
210 |
211 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<AnchorType>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
212 |
213 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:215:34: error: cannot find type 'NSLayoutDimension' in scope
213 |         switch relation {
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
216 |                 if let rhs = rhs as? NSLayoutDimension {
217 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:216:38: error: cannot find type 'NSLayoutDimension' in scope
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
216 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
217 |                     lhs.constraint(
218 |                         lessThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:234:34: error: cannot find type 'NSLayoutDimension' in scope
232 |             }
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
235 |                 if let rhs = rhs as? NSLayoutDimension {
236 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:235:38: error: cannot find type 'NSLayoutDimension' in scope
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
235 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
236 |                     lhs.constraint(
237 |                         greaterThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:253:34: error: cannot find type 'NSLayoutDimension' in scope
251 |             }
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
254 |                 if let rhs = rhs as? NSLayoutDimension {
255 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:254:38: error: cannot find type 'NSLayoutDimension' in scope
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
254 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
255 |                     lhs.constraint(
256 |                         equalTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:279:39: error: cannot find type 'NSLayoutAnchor' in scope
277 |         rhs: CGFloat                          = 0) {
278 |
279 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<NSLayoutDimension>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
280 |
281 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:283:34: error: cannot find type 'NSLayoutDimension' in scope
281 |         switch relation {
282 |         case .lessThanOrEqual:
283 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
284 |                 lhs.constraint(
285 |                     lessThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:289:34: error: cannot find type 'NSLayoutDimension' in scope
287 |             }
288 |         case .greaterThanOrEqual:
289 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
290 |                 lhs.constraint(
291 |                     greaterThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:295:34: error: cannot find type 'NSLayoutDimension' in scope
293 |             }
294 |         default:
295 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
296 |                 lhs.constraint(
297 |                     equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:17:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
15 | public extension BBAnchorable {
16 |
17 |     var leading: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 |         leadingAnchor
19 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:21:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 |     }
20 |
21 |     var trailing: NSLayoutXAxisAnchor {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 |         trailingAnchor
23 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:25:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 |     }
24 |
25 |     var left: NSLayoutXAxisAnchor {
   |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |         leftAnchor
27 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:29:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
27 |     }
28 |
29 |     var right: NSLayoutXAxisAnchor {
   |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
30 |         rightAnchor
31 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:33:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
31 |     }
32 |
33 |     var top: NSLayoutYAxisAnchor {
   |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
34 |         topAnchor
35 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:37:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     }
36 |
37 |     var bottom: NSLayoutYAxisAnchor {
   |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
38 |         bottomAnchor
39 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:41:16: error: cannot find type 'NSLayoutDimension' in scope
39 |     }
40 |
41 |     var width: NSLayoutDimension {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
42 |         widthAnchor
43 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:45:17: error: cannot find type 'NSLayoutDimension' in scope
43 |     }
44 |
45 |     var height: NSLayoutDimension {
   |                 `- error: cannot find type 'NSLayoutDimension' in scope
46 |         heightAnchor
47 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:49:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
47 |     }
48 |
49 |     var centerX: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
50 |         centerXAnchor
51 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:53:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 |     }
52 |
53 |     var centerY: NSLayoutYAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 |         centerYAnchor
55 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:16: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:35: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                                   `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:40: error: cannot find type 'NSLayoutYAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:43: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                                           `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                                         `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:39: error: cannot find type 'NSLayoutXAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                                       `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:10: error: cannot find type 'NSLayoutYAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:31: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |                               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
[19/20] Compiling BBLayoutKit BBAnchorableExtensions.swift
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:17:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
15 | public protocol BBAnchorable {
16 |
17 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 |
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:19:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
17 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
18 |
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
   |                         `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
20 |
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:21:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
20 |
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
   |                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 |
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:23:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
22 |
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:25:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
24 |
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
26 |
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:27:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
26 |
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
   |                       `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
28 |
29 |     var widthAnchor: NSLayoutDimension { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:29:22: error: cannot find type 'NSLayoutDimension' in scope
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
28 |
29 |     var widthAnchor: NSLayoutDimension { get }
   |                      `- error: cannot find type 'NSLayoutDimension' in scope
30 |
31 |     var heightAnchor: NSLayoutDimension { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:31:23: error: cannot find type 'NSLayoutDimension' in scope
29 |     var widthAnchor: NSLayoutDimension { get }
30 |
31 |     var heightAnchor: NSLayoutDimension { get }
   |                       `- error: cannot find type 'NSLayoutDimension' in scope
32 |
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:33:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
31 |     var heightAnchor: NSLayoutDimension { get }
32 |
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
34 |
35 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:35:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
34 |
35 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
36 | }
37 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:19:22: error: cannot find type 'NSLayoutConstraint' in scope
 17 |     func anchorView(
 18 |         _ view: BBAnchorable,
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:20:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |         _ view: BBAnchorable,
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
    |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:21:22: error: cannot find type 'NSLayoutConstraint' in scope
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:22:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
    |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:23:23: error: cannot find type 'NSLayoutConstraint' in scope
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
    |                       `- error: cannot find type 'NSLayoutConstraint' in scope
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:24:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:25:26: error: cannot find type 'NSLayoutConstraint' in scope
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:26:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
    |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:27:25: error: cannot find type 'NSLayoutConstraint' in scope
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:28:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
    |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:29:24: error: cannot find type 'NSLayoutConstraint' in scope
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:30:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
    |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 32 |         inset: BBEdgeInsetConvertible                 = 0,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:31:27: error: cannot find type 'NSLayoutConstraint' in scope
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
    |                           `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:33:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:34:26: error: cannot find type 'NSLayoutConstraint' in scope
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:35:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
 37 |         offset: BBOffsetConvertible                   = 0,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:36:26: error: cannot find type 'NSLayoutConstraint' in scope
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:38:16: error: cannot find type 'NSLayoutDimension' in scope
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
    |                `- error: cannot find type 'NSLayoutDimension' in scope
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:39:24: error: cannot find type 'NSLayoutConstraint' in scope
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |         height: NSLayoutDimension?                    = nil,
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:40:17: error: cannot find type 'NSLayoutDimension' in scope
 38 |         width: NSLayoutDimension?                     = nil,
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
    |                 `- error: cannot find type 'NSLayoutDimension' in scope
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
 42 |         multiplier: BBMultiplierConvertible           = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:41:25: error: cannot find type 'NSLayoutConstraint' in scope
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 42 |         multiplier: BBMultiplierConvertible           = 1,
 43 |         size: BBSizeConvertible                       = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:82:20: error: cannot find type 'NSLayoutConstraint' in scope
 80 |     func anchorEdges(
 81 |         _ view: BBAnchorable,
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
    |                    `- error: cannot find type 'NSLayoutConstraint' in scope
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:83:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 81 |         _ view: BBAnchorable,
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
    |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:84:22: error: cannot find type 'NSLayoutConstraint' in scope
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:85:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
    |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:86:23: error: cannot find type 'NSLayoutConstraint' in scope
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
    |                       `- error: cannot find type 'NSLayoutConstraint' in scope
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:87:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:88:26: error: cannot find type 'NSLayoutConstraint' in scope
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:89:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
    |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:90:25: error: cannot find type 'NSLayoutConstraint' in scope
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:91:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
    |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:92:24: error: cannot find type 'NSLayoutConstraint' in scope
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:93:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
    |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:94:27: error: cannot find type 'NSLayoutConstraint' in scope
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
    |                           `- error: cannot find type 'NSLayoutConstraint' in scope
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
 96 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:143:22: error: cannot find type 'NSLayoutConstraint' in scope
141 |     func anchorCenters(
142 |         _ view: BBAnchorable,
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:144:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
142 |         _ view: BBAnchorable,
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:145:26: error: cannot find type 'NSLayoutConstraint' in scope
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:146:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
    |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
148 |         offset: BBOffsetConvertible                  = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:147:26: error: cannot find type 'NSLayoutConstraint' in scope
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
148 |         offset: BBOffsetConvertible                  = 0) {
149 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:168:20: error: cannot find type 'NSLayoutConstraint' in scope
166 |     func anchorSides(
167 |         _ view: BBAnchorable,
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
    |                    `- error: cannot find type 'NSLayoutConstraint' in scope
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:169:16: error: cannot find type 'NSLayoutDimension' in scope
167 |         _ view: BBAnchorable,
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
169 |         width: NSLayoutDimension?                   = nil,
    |                `- error: cannot find type 'NSLayoutDimension' in scope
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:170:24: error: cannot find type 'NSLayoutConstraint' in scope
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
171 |         height: NSLayoutDimension?                  = nil,
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:171:17: error: cannot find type 'NSLayoutDimension' in scope
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
    |                 `- error: cannot find type 'NSLayoutDimension' in scope
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
173 |         multiplier: BBMultiplierConvertible         = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:172:25: error: cannot find type 'NSLayoutConstraint' in scope
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
173 |         multiplier: BBMultiplierConvertible         = 1,
174 |         size: BBSizeConvertible                     = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:205:14: error: cannot find type 'NSLayoutConstraint' in scope
203 |
204 |     func anchor<AnchorType: NSObject>(
205 |         lhs: NSLayoutConstraint.Attribute,
    |              `- error: cannot find type 'NSLayoutConstraint' in scope
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:206:19: error: cannot find type 'NSLayoutConstraint' in scope
204 |     func anchor<AnchorType: NSObject>(
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
    |                   `- error: cannot find type 'NSLayoutConstraint' in scope
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:207:14: error: cannot find type 'NSLayoutAnchor' in scope
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
    |              `- error: cannot find type 'NSLayoutAnchor' in scope
208 |         multiplier: CGFloat                   = 1,
209 |         constant: CGFloat                     = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:208:21: error: cannot find type 'CGFloat' in scope
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
    |                     `- error: cannot find type 'CGFloat' in scope
209 |         constant: CGFloat                     = 0) {
210 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:209:19: error: cannot find type 'CGFloat' in scope
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
209 |         constant: CGFloat                     = 0) {
    |                   `- error: cannot find type 'CGFloat' in scope
210 |
211 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<AnchorType>?
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:204:29: error: cannot find type 'NSObject' in scope
202 |     }
203 |
204 |     func anchor<AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:275:14: error: cannot find type 'NSLayoutConstraint' in scope
273 |
274 |     func anchor(
275 |         lhs: NSLayoutConstraint.Attribute,
    |              `- error: cannot find type 'NSLayoutConstraint' in scope
276 |         relation: NSLayoutConstraint.Relation = .equal,
277 |         rhs: CGFloat                          = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:276:19: error: cannot find type 'NSLayoutConstraint' in scope
274 |     func anchor(
275 |         lhs: NSLayoutConstraint.Attribute,
276 |         relation: NSLayoutConstraint.Relation = .equal,
    |                   `- error: cannot find type 'NSLayoutConstraint' in scope
277 |         rhs: CGFloat                          = 0) {
278 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:277:14: error: cannot find type 'CGFloat' in scope
275 |         lhs: NSLayoutConstraint.Attribute,
276 |         relation: NSLayoutConstraint.Relation = .equal,
277 |         rhs: CGFloat                          = 0) {
    |              `- error: cannot find type 'CGFloat' in scope
278 |
279 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<NSLayoutDimension>?
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:62: error: cannot find type 'NSLayoutConstraint' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:95: error: cannot find type 'NSLayoutAnchor' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                                                                               `- error: cannot find type 'NSLayoutAnchor' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:37: error: cannot find type 'NSObject' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                     `- error: cannot find type 'NSObject' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:64:10: error: cannot find type 'NSLayoutAnchor' in scope
 62 |
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:65:10: error: cannot find type 'NSLayoutAnchor' in scope
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
 67 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:65:41: error: cannot find type 'NSLayoutConstraint' in scope
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
    |                                         `- error: cannot find type 'NSLayoutConstraint' in scope
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
 67 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:63:29: error: cannot find type 'NSObject' in scope
 61 | // MARK: - Single Anchor Constraint With Inactive Status
 62 |
 63 | public func != <AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:228:10: error: cannot find type 'NSLayoutAnchor' in scope
226 |
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 |     -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:11: error: cannot find type 'NSLayoutAnchor' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:40: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |                                        `- error: cannot find type 'CGFloat' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:49: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |                                                 `- error: cannot find type 'CGFloat' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:230:8: error: cannot find type 'NSLayoutConstraint' in scope
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 |     -> NSLayoutConstraint {
    |        `- error: cannot find type 'NSLayoutConstraint' in scope
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
232 |             let rhsAnchor       = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:227:29: error: cannot find type 'NSObject' in scope
225 | // MARK: - Single Anchor Constraint With Constant, Relation And Inactive Status
226 |
227 | public func != <AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:73:50: error: cannot find type 'NSLayoutConstraint' in scope
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
    |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
 75 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:72:10: error: cannot find type 'NSLayoutAnchor' in scope
 70 |
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:73:10: error: cannot find type 'NSLayoutAnchor' in scope
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
 75 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:81:50: error: cannot find type 'NSLayoutConstraint' in scope
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
    |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
 83 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:80:10: error: cannot find type 'NSLayoutAnchor' in scope
 78 |
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:81:10: error: cannot find type 'NSLayoutAnchor' in scope
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
 83 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:89:48: error: cannot find type 'NSLayoutConstraint' in scope
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
    |                                                `- error: cannot find type 'NSLayoutConstraint' in scope
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
 91 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:88:10: error: cannot find type 'NSLayoutAnchor' in scope
 86 |
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:89:10: error: cannot find type 'NSLayoutAnchor' in scope
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
 91 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:311:22: error: cannot find type 'NSLayoutConstraint' in scope
309 | public func != (
310 |     lhs: NSLayoutDimension,
311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:310:10: error: cannot find type 'NSLayoutDimension' in scope
308 |
309 | public func != (
310 |     lhs: NSLayoutDimension,
    |          `- error: cannot find type 'NSLayoutDimension' in scope
311 |     rhs: CGFloat) -> NSLayoutConstraint {
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:311:10: error: cannot find type 'CGFloat' in scope
309 | public func != (
310 |     lhs: NSLayoutDimension,
311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |          `- error: cannot find type 'CGFloat' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:97:28: error: cannot infer contextual base in reference to member 'top'
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
 96 |
 97 |         if sides.contains(.top) || top != nil {
    |                            `- error: cannot infer contextual base in reference to member 'top'
 98 |             view.anchor(
 99 |                 lhs: .top,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:15:14: error: cannot find type 'CGFloat' in scope
13 | public protocol BBEdgeInsetConvertible {
14 |
15 |     var top: CGFloat { get }
   |              `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var left: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:99:23: error: cannot infer contextual base in reference to member 'top'
 97 |         if sides.contains(.top) || top != nil {
 98 |             view.anchor(
 99 |                 lhs: .top,
    |                       `- error: cannot infer contextual base in reference to member 'top'
100 |                 relation: topRelation,
101 |                 rhs: top ?? topAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:104:28: error: cannot infer contextual base in reference to member 'left'
102 |                 constant: inset.top)
103 |         }
104 |         if sides.contains(.left) || left != nil {
    |                            `- error: cannot infer contextual base in reference to member 'left'
105 |             view.anchor(
106 |                 lhs: .left,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:17:15: error: cannot find type 'CGFloat' in scope
15 |     var top: CGFloat { get }
16 |
17 |     var left: CGFloat { get }
   |               `- error: cannot find type 'CGFloat' in scope
18 |
19 |     var bottom: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:106:23: error: cannot infer contextual base in reference to member 'left'
104 |         if sides.contains(.left) || left != nil {
105 |             view.anchor(
106 |                 lhs: .left,
    |                       `- error: cannot infer contextual base in reference to member 'left'
107 |                 relation: leftRelation,
108 |                 rhs: left ?? leftAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:111:28: error: cannot infer contextual base in reference to member 'leading'
109 |                 constant: inset.left)
110 |         }
111 |         if sides.contains(.leading) || leading != nil {
    |                            `- error: cannot infer contextual base in reference to member 'leading'
112 |             view.anchor(
113 |                 lhs: .leading,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:113:23: error: cannot infer contextual base in reference to member 'leading'
111 |         if sides.contains(.leading) || leading != nil {
112 |             view.anchor(
113 |                 lhs: .leading,
    |                       `- error: cannot infer contextual base in reference to member 'leading'
114 |                 relation: leadingRelation,
115 |                 rhs: leading ?? leadingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:118:28: error: cannot infer contextual base in reference to member 'bottom'
116 |                 constant: inset.left)
117 |         }
118 |         if sides.contains(.bottom) || bottom != nil {
    |                            `- error: cannot infer contextual base in reference to member 'bottom'
119 |             view.anchor(
120 |                 lhs: .bottom,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:140:10: error: cannot find type 'NSLayoutAnchor' in scope
138 |
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
142 |     (lhs, (1, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:10: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:23: error: cannot find type 'NSLayoutAnchor' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:52: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                    `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:61: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                             `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:23: error: cannot find type 'NSLayoutAnchor' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:59: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                           `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:68: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                                    `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:11: error: cannot find type 'NSLayoutAnchor' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:47: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                               `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:56: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                                        `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:10: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:11: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:48: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:6: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:43: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:23: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:60: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                            `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:6: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:43: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:19:17: error: cannot find type 'CGFloat' in scope
17 |     var left: CGFloat { get }
18 |
19 |     var bottom: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
20 |
21 |     var right: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:120:23: error: cannot infer contextual base in reference to member 'bottom'
118 |         if sides.contains(.bottom) || bottom != nil {
119 |             view.anchor(
120 |                 lhs: .bottom,
    |                       `- error: cannot infer contextual base in reference to member 'bottom'
121 |                 relation: bottomRelation,
122 |                 rhs: bottom ?? bottomAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:125:28: error: cannot infer contextual base in reference to member 'right'
123 |                 constant: -inset.bottom)
124 |         }
125 |         if sides.contains(.right) || right != nil {
    |                            `- error: cannot infer contextual base in reference to member 'right'
126 |             view.anchor(
127 |                 lhs: .right,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:21:16: error: cannot find type 'CGFloat' in scope
19 |     var bottom: CGFloat { get }
20 |
21 |     var right: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:127:23: error: cannot infer contextual base in reference to member 'right'
125 |         if sides.contains(.right) || right != nil {
126 |             view.anchor(
127 |                 lhs: .right,
    |                       `- error: cannot infer contextual base in reference to member 'right'
128 |                 relation: rightRelation,
129 |                 rhs: right ?? rightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:132:28: error: cannot infer contextual base in reference to member 'trailing'
130 |                 constant: -inset.right)
131 |         }
132 |         if sides.contains(.trailing) || trailing != nil {
    |                            `- error: cannot infer contextual base in reference to member 'trailing'
133 |             view.anchor(
134 |                 lhs: .trailing,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:134:23: error: cannot infer contextual base in reference to member 'trailing'
132 |         if sides.contains(.trailing) || trailing != nil {
133 |             view.anchor(
134 |                 lhs: .trailing,
    |                       `- error: cannot infer contextual base in reference to member 'trailing'
135 |                 relation: trailingRelation,
136 |                 rhs: trailing ?? trailingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:150:30: error: cannot infer contextual base in reference to member 'centerX'
148 |         offset: BBOffsetConvertible                  = 0) {
149 |
150 |         if centers.contains(.centerX) || centerX != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerX'
151 |             view.anchor(
152 |                 lhs: .centerX,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:15:21: error: cannot find type 'CGFloat' in scope
13 | public protocol BBOffsetConvertible {
14 |
15 |     var horizontal: CGFloat { get }
   |                     `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var vertical: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:152:23: error: cannot infer contextual base in reference to member 'centerX'
150 |         if centers.contains(.centerX) || centerX != nil {
151 |             view.anchor(
152 |                 lhs: .centerX,
    |                       `- error: cannot infer contextual base in reference to member 'centerX'
153 |                 relation: centerXRelation,
154 |                 rhs: centerX ?? centerXAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:157:30: error: cannot infer contextual base in reference to member 'centerY'
155 |                 constant: offset.horizontal)
156 |         }
157 |         if centers.contains(.centerY) || centerY != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerY'
158 |             view.anchor(
159 |                 lhs: .centerY,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:17:19: error: cannot find type 'CGFloat' in scope
15 |     var horizontal: CGFloat { get }
16 |
17 |     var vertical: CGFloat { get }
   |                   `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:159:23: error: cannot infer contextual base in reference to member 'centerY'
157 |         if centers.contains(.centerY) || centerY != nil {
158 |             view.anchor(
159 |                 lhs: .centerY,
    |                       `- error: cannot infer contextual base in reference to member 'centerY'
160 |                 relation: centerYRelation,
161 |                 rhs: centerY ?? centerYAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:176:28: error: cannot infer contextual base in reference to member 'width'
174 |         size: BBSizeConvertible                     = 0) {
175 |
176 |         if sides.contains(.width) || width != nil {
    |                            `- error: cannot infer contextual base in reference to member 'width'
177 |             view.anchor(
178 |                 lhs: .width,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:15:23: error: cannot find type 'CGFloat' in scope
13 | public struct BBMultiplier {
14 |
15 |     public var width: CGFloat
   |                       `- error: cannot find type 'CGFloat' in scope
16 |
17 |     public var height: CGFloat
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:15:16: error: cannot find type 'CGFloat' in scope
13 | public protocol BBSizeConvertible {
14 |
15 |     var width: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var height: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:178:23: error: cannot infer contextual base in reference to member 'width'
176 |         if sides.contains(.width) || width != nil {
177 |             view.anchor(
178 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
179 |                 relation: widthRelation,
180 |                 rhs: width ?? widthAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:185:23: error: cannot infer contextual base in reference to member 'width'
183 |         } else if size.width != 0 {
184 |             view.anchor(
185 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
186 |                 relation: widthRelation,
187 |                 rhs: size.width)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:189:28: error: cannot infer contextual base in reference to member 'height'
187 |                 rhs: size.width)
188 |         }
189 |         if sides.contains(.height) || height != nil {
    |                            `- error: cannot infer contextual base in reference to member 'height'
190 |             view.anchor(
191 |                 lhs: .height,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:17:24: error: cannot find type 'CGFloat' in scope
15 |     public var width: CGFloat
16 |
17 |     public var height: CGFloat
   |                        `- error: cannot find type 'CGFloat' in scope
18 |
19 |     public init(w width: CGFloat = 1, h height: CGFloat = 1) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:17:17: error: cannot find type 'CGFloat' in scope
15 |     var width: CGFloat { get }
16 |
17 |     var height: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:191:23: error: cannot infer contextual base in reference to member 'height'
189 |         if sides.contains(.height) || height != nil {
190 |             view.anchor(
191 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
192 |                 relation: heightRelation,
193 |                 rhs: height ?? heightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:198:23: error: cannot infer contextual base in reference to member 'height'
196 |         } else if size.height != 0 {
197 |             view.anchor(
198 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
199 |                 relation: heightRelation,
200 |                 rhs: size.height)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:211:39: error: cannot find type 'NSLayoutAnchor' in scope
209 |         constant: CGFloat                     = 0) {
210 |
211 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<AnchorType>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
212 |
213 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:215:34: error: cannot find type 'NSLayoutDimension' in scope
213 |         switch relation {
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
216 |                 if let rhs = rhs as? NSLayoutDimension {
217 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:216:38: error: cannot find type 'NSLayoutDimension' in scope
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
216 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
217 |                     lhs.constraint(
218 |                         lessThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:234:34: error: cannot find type 'NSLayoutDimension' in scope
232 |             }
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
235 |                 if let rhs = rhs as? NSLayoutDimension {
236 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:235:38: error: cannot find type 'NSLayoutDimension' in scope
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
235 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
236 |                     lhs.constraint(
237 |                         greaterThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:253:34: error: cannot find type 'NSLayoutDimension' in scope
251 |             }
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
254 |                 if let rhs = rhs as? NSLayoutDimension {
255 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:254:38: error: cannot find type 'NSLayoutDimension' in scope
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
254 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
255 |                     lhs.constraint(
256 |                         equalTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:279:39: error: cannot find type 'NSLayoutAnchor' in scope
277 |         rhs: CGFloat                          = 0) {
278 |
279 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<NSLayoutDimension>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
280 |
281 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:283:34: error: cannot find type 'NSLayoutDimension' in scope
281 |         switch relation {
282 |         case .lessThanOrEqual:
283 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
284 |                 lhs.constraint(
285 |                     lessThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:289:34: error: cannot find type 'NSLayoutDimension' in scope
287 |             }
288 |         case .greaterThanOrEqual:
289 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
290 |                 lhs.constraint(
291 |                     greaterThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:295:34: error: cannot find type 'NSLayoutDimension' in scope
293 |             }
294 |         default:
295 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
296 |                 lhs.constraint(
297 |                     equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:17:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
15 | public extension BBAnchorable {
16 |
17 |     var leading: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 |         leadingAnchor
19 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:21:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 |     }
20 |
21 |     var trailing: NSLayoutXAxisAnchor {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 |         trailingAnchor
23 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:25:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 |     }
24 |
25 |     var left: NSLayoutXAxisAnchor {
   |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |         leftAnchor
27 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:29:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
27 |     }
28 |
29 |     var right: NSLayoutXAxisAnchor {
   |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
30 |         rightAnchor
31 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:33:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
31 |     }
32 |
33 |     var top: NSLayoutYAxisAnchor {
   |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
34 |         topAnchor
35 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:37:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     }
36 |
37 |     var bottom: NSLayoutYAxisAnchor {
   |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
38 |         bottomAnchor
39 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:41:16: error: cannot find type 'NSLayoutDimension' in scope
39 |     }
40 |
41 |     var width: NSLayoutDimension {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
42 |         widthAnchor
43 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:45:17: error: cannot find type 'NSLayoutDimension' in scope
43 |     }
44 |
45 |     var height: NSLayoutDimension {
   |                 `- error: cannot find type 'NSLayoutDimension' in scope
46 |         heightAnchor
47 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:49:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
47 |     }
48 |
49 |     var centerX: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
50 |         centerXAnchor
51 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:53:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 |     }
52 |
53 |     var centerY: NSLayoutYAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 |         centerYAnchor
55 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:16: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:35: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                                   `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:40: error: cannot find type 'NSLayoutYAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:43: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                                           `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                                         `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:39: error: cannot find type 'NSLayoutXAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                                       `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:10: error: cannot find type 'NSLayoutYAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:31: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |                               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
[20/20] Compiling BBLayoutKit BBAnchorableHelpers.swift
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:17:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
15 | public protocol BBAnchorable {
16 |
17 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 |
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:19:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
17 |     var leadingAnchor: NSLayoutXAxisAnchor { get }
18 |
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
   |                         `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
20 |
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:21:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 |     var trailingAnchor: NSLayoutXAxisAnchor { get }
20 |
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
   |                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 |
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:23:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 |     var leftAnchor: NSLayoutXAxisAnchor { get }
22 |
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
24 |
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:25:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
23 |     var rightAnchor: NSLayoutXAxisAnchor { get }
24 |
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
26 |
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:27:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
25 |     var topAnchor: NSLayoutYAxisAnchor { get }
26 |
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
   |                       `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
28 |
29 |     var widthAnchor: NSLayoutDimension { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:29:22: error: cannot find type 'NSLayoutDimension' in scope
27 |     var bottomAnchor: NSLayoutYAxisAnchor { get }
28 |
29 |     var widthAnchor: NSLayoutDimension { get }
   |                      `- error: cannot find type 'NSLayoutDimension' in scope
30 |
31 |     var heightAnchor: NSLayoutDimension { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:31:23: error: cannot find type 'NSLayoutDimension' in scope
29 |     var widthAnchor: NSLayoutDimension { get }
30 |
31 |     var heightAnchor: NSLayoutDimension { get }
   |                       `- error: cannot find type 'NSLayoutDimension' in scope
32 |
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:33:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
31 |     var heightAnchor: NSLayoutDimension { get }
32 |
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
34 |
35 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorable.swift:35:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
33 |     var centerXAnchor: NSLayoutXAxisAnchor { get }
34 |
35 |     var centerYAnchor: NSLayoutYAxisAnchor { get }
   |                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
36 | }
37 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:19:22: error: cannot find type 'NSLayoutConstraint' in scope
 17 |     func anchorView(
 18 |         _ view: BBAnchorable,
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:20:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 18 |         _ view: BBAnchorable,
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
    |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:21:22: error: cannot find type 'NSLayoutConstraint' in scope
 19 |         anchors: Set<NSLayoutConstraint.Attribute>    = [],
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:22:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 20 |         top: NSLayoutYAxisAnchor?                     = nil,
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
    |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:23:23: error: cannot find type 'NSLayoutConstraint' in scope
 21 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
    |                       `- error: cannot find type 'NSLayoutConstraint' in scope
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:24:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 22 |         left: NSLayoutXAxisAnchor?                    = nil,
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:25:26: error: cannot find type 'NSLayoutConstraint' in scope
 23 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:26:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 24 |         leading: NSLayoutXAxisAnchor?                 = nil,
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
    |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:27:25: error: cannot find type 'NSLayoutConstraint' in scope
 25 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:28:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
    |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:29:24: error: cannot find type 'NSLayoutConstraint' in scope
 27 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:30:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 28 |         right: NSLayoutXAxisAnchor?                   = nil,
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
    |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 32 |         inset: BBEdgeInsetConvertible                 = 0,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:31:27: error: cannot find type 'NSLayoutConstraint' in scope
 29 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 30 |         trailing: NSLayoutXAxisAnchor?                = nil,
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
    |                           `- error: cannot find type 'NSLayoutConstraint' in scope
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:33:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 31 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:34:26: error: cannot find type 'NSLayoutConstraint' in scope
 32 |         inset: BBEdgeInsetConvertible                 = 0,
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:35:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 33 |         centerX: NSLayoutXAxisAnchor?                 = nil,
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
 37 |         offset: BBOffsetConvertible                   = 0,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:36:26: error: cannot find type 'NSLayoutConstraint' in scope
 34 |         centerXRelation: NSLayoutConstraint.Relation  = .equal,
 35 |         centerY: NSLayoutYAxisAnchor?                 = nil,
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:38:16: error: cannot find type 'NSLayoutDimension' in scope
 36 |         centerYRelation: NSLayoutConstraint.Relation  = .equal,
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
    |                `- error: cannot find type 'NSLayoutDimension' in scope
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:39:24: error: cannot find type 'NSLayoutConstraint' in scope
 37 |         offset: BBOffsetConvertible                   = 0,
 38 |         width: NSLayoutDimension?                     = nil,
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 40 |         height: NSLayoutDimension?                    = nil,
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:40:17: error: cannot find type 'NSLayoutDimension' in scope
 38 |         width: NSLayoutDimension?                     = nil,
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
    |                 `- error: cannot find type 'NSLayoutDimension' in scope
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
 42 |         multiplier: BBMultiplierConvertible           = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:41:25: error: cannot find type 'NSLayoutConstraint' in scope
 39 |         widthRelation: NSLayoutConstraint.Relation    = .equal,
 40 |         height: NSLayoutDimension?                    = nil,
 41 |         heightRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 42 |         multiplier: BBMultiplierConvertible           = 1,
 43 |         size: BBSizeConvertible                       = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:82:20: error: cannot find type 'NSLayoutConstraint' in scope
 80 |     func anchorEdges(
 81 |         _ view: BBAnchorable,
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
    |                    `- error: cannot find type 'NSLayoutConstraint' in scope
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:83:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 81 |         _ view: BBAnchorable,
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
    |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:84:22: error: cannot find type 'NSLayoutConstraint' in scope
 82 |         sides: Set<NSLayoutConstraint.Attribute>      = [],
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:85:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 83 |         top: NSLayoutYAxisAnchor?                     = nil,
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
    |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:86:23: error: cannot find type 'NSLayoutConstraint' in scope
 84 |         topRelation: NSLayoutConstraint.Relation      = .equal,
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
    |                       `- error: cannot find type 'NSLayoutConstraint' in scope
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:87:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 85 |         left: NSLayoutXAxisAnchor?                    = nil,
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:88:26: error: cannot find type 'NSLayoutConstraint' in scope
 86 |         leftRelation: NSLayoutConstraint.Relation     = .equal,
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:89:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 87 |         leading: NSLayoutXAxisAnchor?                 = nil,
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
    |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:90:25: error: cannot find type 'NSLayoutConstraint' in scope
 88 |         leadingRelation: NSLayoutConstraint.Relation  = .equal,
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:91:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 89 |         bottom: NSLayoutYAxisAnchor?                  = nil,
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
    |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:92:24: error: cannot find type 'NSLayoutConstraint' in scope
 90 |         bottomRelation: NSLayoutConstraint.Relation   = .equal,
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:93:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 91 |         right: NSLayoutXAxisAnchor?                   = nil,
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
    |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:94:27: error: cannot find type 'NSLayoutConstraint' in scope
 92 |         rightRelation: NSLayoutConstraint.Relation    = .equal,
 93 |         trailing: NSLayoutXAxisAnchor?                = nil,
 94 |         trailingRelation: NSLayoutConstraint.Relation = .equal,
    |                           `- error: cannot find type 'NSLayoutConstraint' in scope
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
 96 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:143:22: error: cannot find type 'NSLayoutConstraint' in scope
141 |     func anchorCenters(
142 |         _ view: BBAnchorable,
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:144:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
142 |         _ view: BBAnchorable,
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
    |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:145:26: error: cannot find type 'NSLayoutConstraint' in scope
143 |         centers: Set<NSLayoutConstraint.Attribute>   = [],
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:146:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
144 |         centerX: NSLayoutXAxisAnchor?                = nil,
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
    |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
148 |         offset: BBOffsetConvertible                  = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:147:26: error: cannot find type 'NSLayoutConstraint' in scope
145 |         centerXRelation: NSLayoutConstraint.Relation = .equal,
146 |         centerY: NSLayoutYAxisAnchor?                = nil,
147 |         centerYRelation: NSLayoutConstraint.Relation = .equal,
    |                          `- error: cannot find type 'NSLayoutConstraint' in scope
148 |         offset: BBOffsetConvertible                  = 0) {
149 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:168:20: error: cannot find type 'NSLayoutConstraint' in scope
166 |     func anchorSides(
167 |         _ view: BBAnchorable,
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
    |                    `- error: cannot find type 'NSLayoutConstraint' in scope
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:169:16: error: cannot find type 'NSLayoutDimension' in scope
167 |         _ view: BBAnchorable,
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
169 |         width: NSLayoutDimension?                   = nil,
    |                `- error: cannot find type 'NSLayoutDimension' in scope
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:170:24: error: cannot find type 'NSLayoutConstraint' in scope
168 |         sides: Set<NSLayoutConstraint.Attribute>    = [],
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
    |                        `- error: cannot find type 'NSLayoutConstraint' in scope
171 |         height: NSLayoutDimension?                  = nil,
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:171:17: error: cannot find type 'NSLayoutDimension' in scope
169 |         width: NSLayoutDimension?                   = nil,
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
    |                 `- error: cannot find type 'NSLayoutDimension' in scope
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
173 |         multiplier: BBMultiplierConvertible         = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:172:25: error: cannot find type 'NSLayoutConstraint' in scope
170 |         widthRelation: NSLayoutConstraint.Relation  = .equal,
171 |         height: NSLayoutDimension?                  = nil,
172 |         heightRelation: NSLayoutConstraint.Relation = .equal,
    |                         `- error: cannot find type 'NSLayoutConstraint' in scope
173 |         multiplier: BBMultiplierConvertible         = 1,
174 |         size: BBSizeConvertible                     = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:205:14: error: cannot find type 'NSLayoutConstraint' in scope
203 |
204 |     func anchor<AnchorType: NSObject>(
205 |         lhs: NSLayoutConstraint.Attribute,
    |              `- error: cannot find type 'NSLayoutConstraint' in scope
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:206:19: error: cannot find type 'NSLayoutConstraint' in scope
204 |     func anchor<AnchorType: NSObject>(
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
    |                   `- error: cannot find type 'NSLayoutConstraint' in scope
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:207:14: error: cannot find type 'NSLayoutAnchor' in scope
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
    |              `- error: cannot find type 'NSLayoutAnchor' in scope
208 |         multiplier: CGFloat                   = 1,
209 |         constant: CGFloat                     = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:208:21: error: cannot find type 'CGFloat' in scope
206 |         relation: NSLayoutConstraint.Relation = .equal,
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
    |                     `- error: cannot find type 'CGFloat' in scope
209 |         constant: CGFloat                     = 0) {
210 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:209:19: error: cannot find type 'CGFloat' in scope
207 |         rhs: NSLayoutAnchor<AnchorType>?            = nil,
208 |         multiplier: CGFloat                   = 1,
209 |         constant: CGFloat                     = 0) {
    |                   `- error: cannot find type 'CGFloat' in scope
210 |
211 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<AnchorType>?
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:204:29: error: cannot find type 'NSObject' in scope
202 |     }
203 |
204 |     func anchor<AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
205 |         lhs: NSLayoutConstraint.Attribute,
206 |         relation: NSLayoutConstraint.Relation = .equal,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:275:14: error: cannot find type 'NSLayoutConstraint' in scope
273 |
274 |     func anchor(
275 |         lhs: NSLayoutConstraint.Attribute,
    |              `- error: cannot find type 'NSLayoutConstraint' in scope
276 |         relation: NSLayoutConstraint.Relation = .equal,
277 |         rhs: CGFloat                          = 0) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:276:19: error: cannot find type 'NSLayoutConstraint' in scope
274 |     func anchor(
275 |         lhs: NSLayoutConstraint.Attribute,
276 |         relation: NSLayoutConstraint.Relation = .equal,
    |                   `- error: cannot find type 'NSLayoutConstraint' in scope
277 |         rhs: CGFloat                          = 0) {
278 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:277:14: error: cannot find type 'CGFloat' in scope
275 |         lhs: NSLayoutConstraint.Attribute,
276 |         relation: NSLayoutConstraint.Relation = .equal,
277 |         rhs: CGFloat                          = 0) {
    |              `- error: cannot find type 'CGFloat' in scope
278 |
279 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<NSLayoutDimension>?
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:62: error: cannot find type 'NSLayoutConstraint' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:95: error: cannot find type 'NSLayoutAnchor' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                                                                               `- error: cannot find type 'NSLayoutAnchor' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:303:37: error: cannot find type 'NSObject' in scope
301 |     }
302 |
303 |     private func anchor<AnchorType: NSObject>(for attribute: NSLayoutConstraint.Attribute) -> NSLayoutAnchor<AnchorType>? {
    |                                     `- error: cannot find type 'NSObject' in scope
304 |         switch attribute {
305 |         case .top:
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:64:10: error: cannot find type 'NSLayoutAnchor' in scope
 62 |
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:65:10: error: cannot find type 'NSLayoutAnchor' in scope
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
 67 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:65:41: error: cannot find type 'NSLayoutConstraint' in scope
 63 | public func != <AnchorType: NSObject>(
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
    |                                         `- error: cannot find type 'NSLayoutConstraint' in scope
 66 |     let constraint      = lhs.constraint(equalTo: rhs)
 67 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:63:29: error: cannot find type 'NSObject' in scope
 61 | // MARK: - Single Anchor Constraint With Inactive Status
 62 |
 63 | public func != <AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
 64 |     lhs: NSLayoutAnchor<AnchorType>,
 65 |     rhs: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:228:10: error: cannot find type 'NSLayoutAnchor' in scope
226 |
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 |     -> NSLayoutConstraint {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:11: error: cannot find type 'NSLayoutAnchor' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:40: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |                                        `- error: cannot find type 'CGFloat' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:229:49: error: cannot find type 'CGFloat' in scope
227 | public func != <AnchorType: NSObject>(
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
    |                                                 `- error: cannot find type 'CGFloat' in scope
230 |     -> NSLayoutConstraint {
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:230:8: error: cannot find type 'NSLayoutConstraint' in scope
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
230 |     -> NSLayoutConstraint {
    |        `- error: cannot find type 'NSLayoutConstraint' in scope
231 |         if let lhsAnchor        = lhs as? NSLayoutDimension,
232 |             let rhsAnchor       = rhs.0 as? NSLayoutDimension {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:227:29: error: cannot find type 'NSObject' in scope
225 | // MARK: - Single Anchor Constraint With Constant, Relation And Inactive Status
226 |
227 | public func != <AnchorType: NSObject>(
    |                             `- error: cannot find type 'NSObject' in scope
228 |     lhs: NSLayoutAnchor<AnchorType>,
229 |     rhs: (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:73:50: error: cannot find type 'NSLayoutConstraint' in scope
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
    |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
 75 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:72:10: error: cannot find type 'NSLayoutAnchor' in scope
 70 |
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:73:10: error: cannot find type 'NSLayoutAnchor' in scope
 71 | @discardableResult public func != (
 72 |     lhs: NSLayoutAnchor<NSLayoutXAxisAnchor>,
 73 |     rhs: NSLayoutAnchor<NSLayoutXAxisAnchor>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 74 |     let constraint      = lhs.constraint(equalTo: rhs)
 75 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:81:50: error: cannot find type 'NSLayoutConstraint' in scope
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
    |                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
 83 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:80:10: error: cannot find type 'NSLayoutAnchor' in scope
 78 |
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:81:10: error: cannot find type 'NSLayoutAnchor' in scope
 79 | @discardableResult public func != (
 80 |     lhs: NSLayoutAnchor<NSLayoutYAxisAnchor>,
 81 |     rhs: NSLayoutAnchor<NSLayoutYAxisAnchor>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 82 |     let constraint      = lhs.constraint(equalTo: rhs)
 83 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:89:48: error: cannot find type 'NSLayoutConstraint' in scope
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
    |                                                `- error: cannot find type 'NSLayoutConstraint' in scope
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
 91 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:88:10: error: cannot find type 'NSLayoutAnchor' in scope
 86 |
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:89:10: error: cannot find type 'NSLayoutAnchor' in scope
 87 | @discardableResult public func != (
 88 |     lhs: NSLayoutAnchor<NSLayoutDimension>,
 89 |     rhs: NSLayoutAnchor<NSLayoutDimension>) -> NSLayoutConstraint {
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
 90 |     let constraint      = lhs.constraint(equalTo: rhs)
 91 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:311:22: error: cannot find type 'NSLayoutConstraint' in scope
309 | public func != (
310 |     lhs: NSLayoutDimension,
311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |                      `- error: cannot find type 'NSLayoutConstraint' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:310:10: error: cannot find type 'NSLayoutDimension' in scope
308 |
309 | public func != (
310 |     lhs: NSLayoutDimension,
    |          `- error: cannot find type 'NSLayoutDimension' in scope
311 |     rhs: CGFloat) -> NSLayoutConstraint {
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:311:10: error: cannot find type 'CGFloat' in scope
309 | public func != (
310 |     lhs: NSLayoutDimension,
311 |     rhs: CGFloat) -> NSLayoutConstraint {
    |          `- error: cannot find type 'CGFloat' in scope
312 |     let constraint      = lhs.constraint(equalToConstant: rhs)
313 |     constraint.isActive = false
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:97:28: error: cannot infer contextual base in reference to member 'top'
 95 |         inset: BBEdgeInsetConvertible                 = 0) {
 96 |
 97 |         if sides.contains(.top) || top != nil {
    |                            `- error: cannot infer contextual base in reference to member 'top'
 98 |             view.anchor(
 99 |                 lhs: .top,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:15:14: error: cannot find type 'CGFloat' in scope
13 | public protocol BBEdgeInsetConvertible {
14 |
15 |     var top: CGFloat { get }
   |              `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var left: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:99:23: error: cannot infer contextual base in reference to member 'top'
 97 |         if sides.contains(.top) || top != nil {
 98 |             view.anchor(
 99 |                 lhs: .top,
    |                       `- error: cannot infer contextual base in reference to member 'top'
100 |                 relation: topRelation,
101 |                 rhs: top ?? topAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:104:28: error: cannot infer contextual base in reference to member 'left'
102 |                 constant: inset.top)
103 |         }
104 |         if sides.contains(.left) || left != nil {
    |                            `- error: cannot infer contextual base in reference to member 'left'
105 |             view.anchor(
106 |                 lhs: .left,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:17:15: error: cannot find type 'CGFloat' in scope
15 |     var top: CGFloat { get }
16 |
17 |     var left: CGFloat { get }
   |               `- error: cannot find type 'CGFloat' in scope
18 |
19 |     var bottom: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:106:23: error: cannot infer contextual base in reference to member 'left'
104 |         if sides.contains(.left) || left != nil {
105 |             view.anchor(
106 |                 lhs: .left,
    |                       `- error: cannot infer contextual base in reference to member 'left'
107 |                 relation: leftRelation,
108 |                 rhs: left ?? leftAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:111:28: error: cannot infer contextual base in reference to member 'leading'
109 |                 constant: inset.left)
110 |         }
111 |         if sides.contains(.leading) || leading != nil {
    |                            `- error: cannot infer contextual base in reference to member 'leading'
112 |             view.anchor(
113 |                 lhs: .leading,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:113:23: error: cannot infer contextual base in reference to member 'leading'
111 |         if sides.contains(.leading) || leading != nil {
112 |             view.anchor(
113 |                 lhs: .leading,
    |                       `- error: cannot infer contextual base in reference to member 'leading'
114 |                 relation: leadingRelation,
115 |                 rhs: leading ?? leadingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:118:28: error: cannot infer contextual base in reference to member 'bottom'
116 |                 constant: inset.left)
117 |         }
118 |         if sides.contains(.bottom) || bottom != nil {
    |                            `- error: cannot infer contextual base in reference to member 'bottom'
119 |             view.anchor(
120 |                 lhs: .bottom,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:140:10: error: cannot find type 'NSLayoutAnchor' in scope
138 |
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
    |          `- error: cannot find type 'NSLayoutAnchor' in scope
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
142 |     (lhs, (1, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:10: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:23: error: cannot find type 'NSLayoutAnchor' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:52: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                    `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:141:61: error: cannot find type 'CGFloat' in scope
139 | public func -<AnchorType>(
140 |     lhs: NSLayoutAnchor<AnchorType>,
141 |     rhs: CGFloat) -> (NSLayoutAnchor<AnchorType>, (CGFloat, CGFloat)) {
    |                                                             `- error: cannot find type 'CGFloat' in scope
142 |     (lhs, (1, -rhs))
143 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:23: error: cannot find type 'NSLayoutAnchor' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:59: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                           `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:68: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |                                                                    `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:11: error: cannot find type 'NSLayoutAnchor' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:47: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                               `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:164:56: error: cannot find type 'CGFloat' in scope
162 |
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
    |                                                        `- error: cannot find type 'CGFloat' in scope
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
166 |     (lhs.0, (lhs.1.0, -rhs))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableOperators.swift:165:10: error: cannot find type 'CGFloat' in scope
163 | public func - (
164 |     lhs: (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)),
165 |     rhs: CGFloat) -> (NSLayoutAnchor<NSLayoutDimension>, (CGFloat, CGFloat)) {
    |          `- error: cannot find type 'CGFloat' in scope
166 |     (lhs.0, (lhs.1.0, -rhs))
167 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:11: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |           `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:78:48: error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                `- error: cannot find type 'NSLayoutAnchor' in scope
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
 80 |         (lhs, rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:6: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:79:43: error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 79 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)), BBEdgeInsetConvertible) {
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 80 |         (lhs, rhs)
 81 | }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:23: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                       `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:75:60: error: cannot find type 'NSLayoutAnchor' in scope
 73 | }
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
    |                                                            `- error: cannot find type 'NSLayoutAnchor' in scope
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
 77 |                rhs: BBEdgeInsetConvertible)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:6: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |      `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBOperators/BBAutoLayoutableQuadrupleOperators.swift:76:43: error: cannot find type 'NSLayoutAnchor' in scope
 74 |
 75 | public func - (lhs: ((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
 76 |     (NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>)),
    |                                           `- error: cannot find type 'NSLayoutAnchor' in scope
 77 |                rhs: BBEdgeInsetConvertible)
 78 |     -> (((NSLayoutAnchor<NSLayoutYAxisAnchor>, NSLayoutAnchor<NSLayoutXAxisAnchor>),
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:19:17: error: cannot find type 'CGFloat' in scope
17 |     var left: CGFloat { get }
18 |
19 |     var bottom: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
20 |
21 |     var right: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:120:23: error: cannot infer contextual base in reference to member 'bottom'
118 |         if sides.contains(.bottom) || bottom != nil {
119 |             view.anchor(
120 |                 lhs: .bottom,
    |                       `- error: cannot infer contextual base in reference to member 'bottom'
121 |                 relation: bottomRelation,
122 |                 rhs: bottom ?? bottomAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:125:28: error: cannot infer contextual base in reference to member 'right'
123 |                 constant: -inset.bottom)
124 |         }
125 |         if sides.contains(.right) || right != nil {
    |                            `- error: cannot infer contextual base in reference to member 'right'
126 |             view.anchor(
127 |                 lhs: .right,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBEdgeInsetConvertible.swift:21:16: error: cannot find type 'CGFloat' in scope
19 |     var bottom: CGFloat { get }
20 |
21 |     var right: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:127:23: error: cannot infer contextual base in reference to member 'right'
125 |         if sides.contains(.right) || right != nil {
126 |             view.anchor(
127 |                 lhs: .right,
    |                       `- error: cannot infer contextual base in reference to member 'right'
128 |                 relation: rightRelation,
129 |                 rhs: right ?? rightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:132:28: error: cannot infer contextual base in reference to member 'trailing'
130 |                 constant: -inset.right)
131 |         }
132 |         if sides.contains(.trailing) || trailing != nil {
    |                            `- error: cannot infer contextual base in reference to member 'trailing'
133 |             view.anchor(
134 |                 lhs: .trailing,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:134:23: error: cannot infer contextual base in reference to member 'trailing'
132 |         if sides.contains(.trailing) || trailing != nil {
133 |             view.anchor(
134 |                 lhs: .trailing,
    |                       `- error: cannot infer contextual base in reference to member 'trailing'
135 |                 relation: trailingRelation,
136 |                 rhs: trailing ?? trailingAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:150:30: error: cannot infer contextual base in reference to member 'centerX'
148 |         offset: BBOffsetConvertible                  = 0) {
149 |
150 |         if centers.contains(.centerX) || centerX != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerX'
151 |             view.anchor(
152 |                 lhs: .centerX,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:15:21: error: cannot find type 'CGFloat' in scope
13 | public protocol BBOffsetConvertible {
14 |
15 |     var horizontal: CGFloat { get }
   |                     `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var vertical: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:152:23: error: cannot infer contextual base in reference to member 'centerX'
150 |         if centers.contains(.centerX) || centerX != nil {
151 |             view.anchor(
152 |                 lhs: .centerX,
    |                       `- error: cannot infer contextual base in reference to member 'centerX'
153 |                 relation: centerXRelation,
154 |                 rhs: centerX ?? centerXAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:157:30: error: cannot infer contextual base in reference to member 'centerY'
155 |                 constant: offset.horizontal)
156 |         }
157 |         if centers.contains(.centerY) || centerY != nil {
    |                              `- error: cannot infer contextual base in reference to member 'centerY'
158 |             view.anchor(
159 |                 lhs: .centerY,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBOffsetConvertible.swift:17:19: error: cannot find type 'CGFloat' in scope
15 |     var horizontal: CGFloat { get }
16 |
17 |     var vertical: CGFloat { get }
   |                   `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:159:23: error: cannot infer contextual base in reference to member 'centerY'
157 |         if centers.contains(.centerY) || centerY != nil {
158 |             view.anchor(
159 |                 lhs: .centerY,
    |                       `- error: cannot infer contextual base in reference to member 'centerY'
160 |                 relation: centerYRelation,
161 |                 rhs: centerY ?? centerYAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:176:28: error: cannot infer contextual base in reference to member 'width'
174 |         size: BBSizeConvertible                     = 0) {
175 |
176 |         if sides.contains(.width) || width != nil {
    |                            `- error: cannot infer contextual base in reference to member 'width'
177 |             view.anchor(
178 |                 lhs: .width,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:15:23: error: cannot find type 'CGFloat' in scope
13 | public struct BBMultiplier {
14 |
15 |     public var width: CGFloat
   |                       `- error: cannot find type 'CGFloat' in scope
16 |
17 |     public var height: CGFloat
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:15:16: error: cannot find type 'CGFloat' in scope
13 | public protocol BBSizeConvertible {
14 |
15 |     var width: CGFloat { get }
   |                `- error: cannot find type 'CGFloat' in scope
16 |
17 |     var height: CGFloat { get }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:178:23: error: cannot infer contextual base in reference to member 'width'
176 |         if sides.contains(.width) || width != nil {
177 |             view.anchor(
178 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
179 |                 relation: widthRelation,
180 |                 rhs: width ?? widthAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:185:23: error: cannot infer contextual base in reference to member 'width'
183 |         } else if size.width != 0 {
184 |             view.anchor(
185 |                 lhs: .width,
    |                       `- error: cannot infer contextual base in reference to member 'width'
186 |                 relation: widthRelation,
187 |                 rhs: size.width)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:189:28: error: cannot infer contextual base in reference to member 'height'
187 |                 rhs: size.width)
188 |         }
189 |         if sides.contains(.height) || height != nil {
    |                            `- error: cannot infer contextual base in reference to member 'height'
190 |             view.anchor(
191 |                 lhs: .height,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBHelpers/BBMultiplier.swift:17:24: error: cannot find type 'CGFloat' in scope
15 |     public var width: CGFloat
16 |
17 |     public var height: CGFloat
   |                        `- error: cannot find type 'CGFloat' in scope
18 |
19 |     public init(w width: CGFloat = 1, h height: CGFloat = 1) {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBConvertible/BBSizeConvertible.swift:17:17: error: cannot find type 'CGFloat' in scope
15 |     var width: CGFloat { get }
16 |
17 |     var height: CGFloat { get }
   |                 `- error: cannot find type 'CGFloat' in scope
18 | }
19 |
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:191:23: error: cannot infer contextual base in reference to member 'height'
189 |         if sides.contains(.height) || height != nil {
190 |             view.anchor(
191 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
192 |                 relation: heightRelation,
193 |                 rhs: height ?? heightAnchor,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:198:23: error: cannot infer contextual base in reference to member 'height'
196 |         } else if size.height != 0 {
197 |             view.anchor(
198 |                 lhs: .height,
    |                       `- error: cannot infer contextual base in reference to member 'height'
199 |                 relation: heightRelation,
200 |                 rhs: size.height)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:211:39: error: cannot find type 'NSLayoutAnchor' in scope
209 |         constant: CGFloat                     = 0) {
210 |
211 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<AnchorType>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
212 |
213 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:215:34: error: cannot find type 'NSLayoutDimension' in scope
213 |         switch relation {
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
216 |                 if let rhs = rhs as? NSLayoutDimension {
217 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:216:38: error: cannot find type 'NSLayoutDimension' in scope
214 |         case .lessThanOrEqual:
215 |             if let lhs = lhs as? NSLayoutDimension {
216 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
217 |                     lhs.constraint(
218 |                         lessThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:234:34: error: cannot find type 'NSLayoutDimension' in scope
232 |             }
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
235 |                 if let rhs = rhs as? NSLayoutDimension {
236 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:235:38: error: cannot find type 'NSLayoutDimension' in scope
233 |         case .greaterThanOrEqual:
234 |             if let lhs = lhs as? NSLayoutDimension {
235 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
236 |                     lhs.constraint(
237 |                         greaterThanOrEqualTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:253:34: error: cannot find type 'NSLayoutDimension' in scope
251 |             }
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
254 |                 if let rhs = rhs as? NSLayoutDimension {
255 |                     lhs.constraint(
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:254:38: error: cannot find type 'NSLayoutDimension' in scope
252 |         default:
253 |             if let lhs = lhs as? NSLayoutDimension {
254 |                 if let rhs = rhs as? NSLayoutDimension {
    |                                      `- error: cannot find type 'NSLayoutDimension' in scope
255 |                     lhs.constraint(
256 |                         equalTo: rhs,
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:279:39: error: cannot find type 'NSLayoutAnchor' in scope
277 |         rhs: CGFloat                          = 0) {
278 |
279 |         let lhs = anchor(for: lhs) as NSLayoutAnchor<NSLayoutDimension>?
    |                                       `- error: cannot find type 'NSLayoutAnchor' in scope
280 |
281 |         switch relation {
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:283:34: error: cannot find type 'NSLayoutDimension' in scope
281 |         switch relation {
282 |         case .lessThanOrEqual:
283 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
284 |                 lhs.constraint(
285 |                     lessThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:289:34: error: cannot find type 'NSLayoutDimension' in scope
287 |             }
288 |         case .greaterThanOrEqual:
289 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
290 |                 lhs.constraint(
291 |                     greaterThanOrEqualToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableExtensions.swift:295:34: error: cannot find type 'NSLayoutDimension' in scope
293 |             }
294 |         default:
295 |             if let lhs = lhs as? NSLayoutDimension {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
296 |                 lhs.constraint(
297 |                     equalToConstant: rhs)
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:17:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
15 | public extension BBAnchorable {
16 |
17 |     var leading: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 |         leadingAnchor
19 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:21:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 |     }
20 |
21 |     var trailing: NSLayoutXAxisAnchor {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 |         trailingAnchor
23 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:25:15: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 |     }
24 |
25 |     var left: NSLayoutXAxisAnchor {
   |               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 |         leftAnchor
27 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:29:16: error: cannot find type 'NSLayoutXAxisAnchor' in scope
27 |     }
28 |
29 |     var right: NSLayoutXAxisAnchor {
   |                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
30 |         rightAnchor
31 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:33:14: error: cannot find type 'NSLayoutYAxisAnchor' in scope
31 |     }
32 |
33 |     var top: NSLayoutYAxisAnchor {
   |              `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
34 |         topAnchor
35 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:37:17: error: cannot find type 'NSLayoutYAxisAnchor' in scope
35 |     }
36 |
37 |     var bottom: NSLayoutYAxisAnchor {
   |                 `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
38 |         bottomAnchor
39 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:41:16: error: cannot find type 'NSLayoutDimension' in scope
39 |     }
40 |
41 |     var width: NSLayoutDimension {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
42 |         widthAnchor
43 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:45:17: error: cannot find type 'NSLayoutDimension' in scope
43 |     }
44 |
45 |     var height: NSLayoutDimension {
   |                 `- error: cannot find type 'NSLayoutDimension' in scope
46 |         heightAnchor
47 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:49:18: error: cannot find type 'NSLayoutXAxisAnchor' in scope
47 |     }
48 |
49 |     var centerX: NSLayoutXAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
50 |         centerXAnchor
51 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:53:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 |     }
52 |
53 |     var centerY: NSLayoutYAxisAnchor {
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 |         centerYAnchor
55 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:16: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:57:35: error: cannot find type 'NSLayoutDimension' in scope
55 |     }
56 |
57 |     var size: (NSLayoutDimension, NSLayoutDimension) {
   |                                   `- error: cannot find type 'NSLayoutDimension' in scope
58 |         (widthAnchor, heightAnchor)
59 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:61:40: error: cannot find type 'NSLayoutYAxisAnchor' in scope
59 |     }
60 |
61 |     var centers: (NSLayoutXAxisAnchor, NSLayoutYAxisAnchor) {
   |                                        `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
62 |         (centerXAnchor, centerYAnchor)
63 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                      `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:65:43: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 |     }
64 |
65 |     var horizontal: (NSLayoutXAxisAnchor, NSLayoutXAxisAnchor) {
   |                                           `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 |         (leadingAnchor, trailingAnchor)
67 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:69:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
67 |     }
68 |
69 |     var vertical: (NSLayoutYAxisAnchor, NSLayoutYAxisAnchor) {
   |                                         `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
70 |         (topAnchor, bottomAnchor)
71 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                  `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:73:39: error: cannot find type 'NSLayoutXAxisAnchor' in scope
71 |     }
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
   |                                       `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:10: error: cannot find type 'NSLayoutYAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
/host/spi-builder-workspace/Sources/BBLayoutKit/BBAnchorable/BBAnchorableHelpers.swift:74:31: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 |
73 |     var sides: ((NSLayoutYAxisAnchor, NSLayoutXAxisAnchor),
74 |         (NSLayoutYAxisAnchor, NSLayoutXAxisAnchor)) {
   |                               `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 |         ((topAnchor, leadingAnchor), (bottomAnchor, trailingAnchor))
76 |     }
BUILD FAILURE 6.0 linux