Build Information
Failed to build RLayoutKit, reference 0.4.1 (8ce1b7), with Swift 6.3 for Linux on 13 Apr 2026 12:53:41 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roy-ren/RLayoutKit.git
Reference: 0.4.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/roy-ren/RLayoutKit
* tag 0.4.1 -> FETCH_HEAD
HEAD is now at 8ce1b73 Add version available
Cloned https://github.com/roy-ren/RLayoutKit.git
Revision (git rev-parse @):
8ce1b7331e94fba6197fa0cb1e6f6df644b94850
SUCCESS checkout https://github.com/roy-ren/RLayoutKit.git at 0.4.1
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/roy-ren/RLayoutKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling RLayoutKit LayoutPoint.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:20:26: error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 | public struct LayoutPoint {
19 |
20 | let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 | let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
22 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:21:26: error: cannot find type 'NSLayoutYAxisAnchor' in scope
19 |
20 | let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
21 | let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | return [lsh.x == rsh.x,
44 | lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:49:41: error: cannot find type 'View' in scope
47 |
48 | @available(iOS 9.0, *)
49 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
50 |
51 | public var leadingTop: LayoutPoint {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | @discardableResult
241 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
242 | guard let superAnchor = lsh.superAnchor else {
243 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | @discardableResult
264 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
265 | guard let superAnchor = lsh.superAnchor else {
266 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | @discardableResult
280 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
281 | return lsh
282 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | @discardableResult
27 | public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | return [lsh.leading == rsh.leading,
29 | lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
33 |
34 | @discardableResult
35 | public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
36 |
37 | return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
45 |
46 | @discardableResult
47 | public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | return [lsh.width == rsh.width,
49 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
67 | extension LayoutSize {
68 | @discardableResult
69 | public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
70 | return [lsh.width == rsh.width,
71 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | #if os(iOS)
44 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
15 |
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | return .init(
20 | anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
44 | }
45 |
46 | public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
47 | return .init(
48 | anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | }
52 |
53 | public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 | return .init(
55 | anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | }
24 |
25 | public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 | return .init(
27 | anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 | }
73 |
74 | public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 | return .init(
76 | anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
79 | }
80 |
81 | public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
82 | return .init(
83 | anchor: base.centerYAnchor,
[4/13] Compiling RLayoutKit LayoutAnchor.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
[5/13] Compiling RLayoutKit LayoutMarginsGuideAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/13] Compiling RLayoutKit RLayoutKit.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
36 | }
37 |
38 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
41 | public var `super`: RLayoutKitWrapper<View>? {
| `- error: cannot find type 'View' in scope
42 | guard let superview = base.superView else {
43 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
61 | public protocol RLayoutCompatible {}
62 |
63 | extension View: RLayoutCompatible {
| `- error: cannot find type 'View' in scope
64 | var superView: View? {
65 | #if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
88 | }
89 |
90 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
91 |
92 | /// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | to view: T,
106 | andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | ) -> Base where T: View {
| `- error: cannot find type 'View' in scope
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:42:30: error: value of type 'Base' has no member 'superView'
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
41 | public var `super`: RLayoutKitWrapper<View>? {
42 | guard let superview = base.superView else {
| `- error: value of type 'Base' has no member 'superView'
43 | return nil
44 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:46:28: error: cannot find type 'View' in scope
44 | }
45 |
46 | return RLayoutKitWrapper<View>(superview)
| `- error: cannot find type 'View' in scope
47 | }
48 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:98:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
96 | @discardableResult
97 | public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
98 | base.translatesAutoresizingMaskIntoConstraints = false
| `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
99 | constrainHandler(base.rl)
100 | return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:99:25: error: value of type 'Base' has no member 'rl'
97 | public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
98 | base.translatesAutoresizingMaskIntoConstraints = false
99 | constrainHandler(base.rl)
| `- error: value of type 'Base' has no member 'rl'
100 | return base
101 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:108:8: error: value of type 'Base' has no member 'addedTo'
106 | andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | ) -> Base where T: View {
108 | base.addedTo(view)
| `- error: value of type 'Base' has no member 'addedTo'
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:109:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
107 | ) -> Base where T: View {
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
| `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
110 | handler(base.rl, view.rl)
111 | return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:16: error: value of type 'Base' has no member 'rl'
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
| `- error: value of type 'Base' has no member 'rl'
111 | return base
112 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:25: error: value of type 'T' has no member 'rl'
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
| `- error: value of type 'T' has no member 'rl'
111 | return base
112 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:64:17: error: cannot find type 'View' in scope
62 |
63 | extension View: RLayoutCompatible {
64 | var superView: View? {
| `- error: cannot find type 'View' in scope
65 | #if os(macOS)
66 | return self.superview
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:72:23: error: cannot find type 'View' in scope
70 | }
71 |
72 | func addedTo(_ view: View) {
| `- error: cannot find type 'View' in scope
73 | #if os(macOS)
74 | return view.addSubview(self)
[7/13] Compiling RLayoutKit SafeAreaGuideAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
36 | }
37 |
38 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
41 | public var `super`: RLayoutKitWrapper<View>? {
| `- error: cannot find type 'View' in scope
42 | guard let superview = base.superView else {
43 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
61 | public protocol RLayoutCompatible {}
62 |
63 | extension View: RLayoutCompatible {
| `- error: cannot find type 'View' in scope
64 | var superView: View? {
65 | #if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
88 | }
89 |
90 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
91 |
92 | /// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | to view: T,
106 | andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | ) -> Base where T: View {
| `- error: cannot find type 'View' in scope
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:42:30: error: value of type 'Base' has no member 'superView'
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
41 | public var `super`: RLayoutKitWrapper<View>? {
42 | guard let superview = base.superView else {
| `- error: value of type 'Base' has no member 'superView'
43 | return nil
44 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:46:28: error: cannot find type 'View' in scope
44 | }
45 |
46 | return RLayoutKitWrapper<View>(superview)
| `- error: cannot find type 'View' in scope
47 | }
48 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:98:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
96 | @discardableResult
97 | public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
98 | base.translatesAutoresizingMaskIntoConstraints = false
| `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
99 | constrainHandler(base.rl)
100 | return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:99:25: error: value of type 'Base' has no member 'rl'
97 | public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
98 | base.translatesAutoresizingMaskIntoConstraints = false
99 | constrainHandler(base.rl)
| `- error: value of type 'Base' has no member 'rl'
100 | return base
101 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:108:8: error: value of type 'Base' has no member 'addedTo'
106 | andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | ) -> Base where T: View {
108 | base.addedTo(view)
| `- error: value of type 'Base' has no member 'addedTo'
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:109:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
107 | ) -> Base where T: View {
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
| `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
110 | handler(base.rl, view.rl)
111 | return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:16: error: value of type 'Base' has no member 'rl'
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
| `- error: value of type 'Base' has no member 'rl'
111 | return base
112 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:25: error: value of type 'T' has no member 'rl'
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
110 | handler(base.rl, view.rl)
| `- error: value of type 'T' has no member 'rl'
111 | return base
112 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:64:17: error: cannot find type 'View' in scope
62 |
63 | extension View: RLayoutCompatible {
64 | var superView: View? {
| `- error: cannot find type 'View' in scope
65 | #if os(macOS)
66 | return self.superview
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:72:23: error: cannot find type 'View' in scope
70 | }
71 |
72 | func addedTo(_ view: View) {
| `- error: cannot find type 'View' in scope
73 | #if os(macOS)
74 | return view.addSubview(self)
[8/13] Emitting module RLayoutKit
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
36 | }
37 |
38 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
39 |
40 | /// An instance self's superView wrapped with an `RLayoutKitWapper` container
41 | public var `super`: RLayoutKitWrapper<View>? {
| `- error: cannot find type 'View' in scope
42 | guard let superview = base.superView else {
43 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
61 | public protocol RLayoutCompatible {}
62 |
63 | extension View: RLayoutCompatible {
| `- error: cannot find type 'View' in scope
64 | var superView: View? {
65 | #if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
88 | }
89 |
90 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
91 |
92 | /// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | to view: T,
106 | andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | ) -> Base where T: View {
| `- error: cannot find type 'View' in scope
108 | base.addedTo(view)
109 | base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
15 |
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | return .init(
20 | anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | }
24 |
25 | public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 | return .init(
27 | anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:32:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
30 | }
31 |
32 | public var left: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
33 | return .init(
34 | anchor: base.leftAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:39:34: error: cannot find type 'NSLayoutXAxisAnchor' in scope
37 | }
38 |
39 | public var right: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
40 | return .init(
41 | anchor: base.rightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
44 | }
45 |
46 | public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
47 | return .init(
48 | anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | }
52 |
53 | public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 | return .init(
55 | anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
58 | }
59 |
60 | public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
61 | return .init(
62 | anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
65 | }
66 |
67 | public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
68 | return .init(
69 | anchor: base.heightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 | }
73 |
74 | public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 | return .init(
76 | anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
79 | }
80 |
81 | public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
82 | return .init(
83 | anchor: base.centerYAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:88:42: error: cannot find type 'NSLayoutYAxisAnchor' in scope
86 | }
87 |
88 | public var firstBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
89 | return .init(
90 | anchor: base.firstBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:95:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
93 | }
94 |
95 | public var lastBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
96 | return .init(
97 | anchor: base.lastBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:23:11: error: cannot find type 'NSLayoutConstraint' in scope
21 | infix operator <=*: ComparisonPrecedence
22 |
23 | extension NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
24 |
25 | public var active: NSLayoutConstraint {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | #if os(iOS)
44 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:62:62: error: cannot find type 'NSLayoutConstraint' in scope
60 | }
61 |
62 | static func ==+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
63 | return lsh
64 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:107:68: error: cannot find type 'NSLayoutConstraint' in scope
105 |
106 | @discardableResult
107 | public static func >= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
108 | #if os(iOS)
109 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:127:62: error: cannot find type 'NSLayoutConstraint' in scope
125 | }
126 |
127 | static func >=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
128 | return lsh
129 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:171:68: error: cannot find type 'NSLayoutConstraint' in scope
169 |
170 | @discardableResult
171 | public static func <= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
172 | #if os(iOS)
173 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:191:62: error: cannot find type 'NSLayoutConstraint' in scope
189 | }
190 |
191 | static func <=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
192 | return lsh
193 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | @discardableResult
241 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
242 | guard let superAnchor = lsh.superAnchor else {
243 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | @discardableResult
264 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
265 | guard let superAnchor = lsh.superAnchor else {
266 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | @discardableResult
280 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
281 | return lsh
282 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:288:62: error: cannot find type 'NSLayoutConstraint' in scope
286 |
287 | @discardableResult
288 | public static func >= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
289 | return lsh
290 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:296:62: error: cannot find type 'NSLayoutConstraint' in scope
294 |
295 | @discardableResult
296 | public static func <= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
297 | return lsh
298 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:21:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | public struct LayoutEdge {
20 |
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:22:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
20 |
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:23:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
25 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:24:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
25 |
26 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | @discardableResult
27 | public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | return [lsh.leading == rsh.leading,
29 | lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
33 |
34 | @discardableResult
35 | public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
36 |
37 | return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:65:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 | public struct LayoutInsetsEdge {
64 |
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:66:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
64 |
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:67:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:68:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:86:41: error: cannot find type 'View' in scope
84 |
85 | @available(iOS 9.0, *)
86 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
87 |
88 | public var edges: LayoutEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:20:26: error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 | public struct LayoutPoint {
19 |
20 | let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 | let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
22 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:21:26: error: cannot find type 'NSLayoutYAxisAnchor' in scope
19 |
20 | let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
21 | let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | return [lsh.x == rsh.x,
44 | lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:49:41: error: cannot find type 'View' in scope
47 |
48 | @available(iOS 9.0, *)
49 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
50 |
51 | public var leadingTop: LayoutPoint {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:19:30: error: cannot find type 'NSLayoutDimension' in scope
17 | public struct LayoutSize {
18 |
19 | let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
| `- error: cannot find type 'NSLayoutDimension' in scope
20 | let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
21 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:20:31: error: cannot find type 'NSLayoutDimension' in scope
18 |
19 | let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
20 | let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
| `- error: cannot find type 'NSLayoutDimension' in scope
21 | }
22 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
45 |
46 | @discardableResult
47 | public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | return [lsh.width == rsh.width,
49 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:53:62: error: cannot find type 'NSLayoutConstraint' in scope
51 |
52 | @discardableResult
53 | public static func >= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
54 | return [lsh.width >= rsh.width,
55 | lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:59:62: error: cannot find type 'NSLayoutConstraint' in scope
57 |
58 | @discardableResult
59 | public static func <= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
60 | return [lsh.width <= rsh.width,
61 | lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
67 | extension LayoutSize {
68 | @discardableResult
69 | public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
70 | return [lsh.width == rsh.width,
71 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:75:66: error: cannot find type 'NSLayoutConstraint' in scope
73 |
74 | @discardableResult
75 | public static func >= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
76 | return [lsh.width >= rsh.width,
77 | lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
79 |
80 | @discardableResult
81 | public static func <= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
82 | return [lsh.width <= rsh.width,
83 | lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:88:41: error: cannot find type 'View' in scope
86 |
87 | @available(iOS 9.0, *)
88 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
89 |
90 | public var size: LayoutSize {
[9/13] Compiling RLayoutKit ScrollViewLayoutGuideAnchors.swift
[10/13] Compiling RLayoutKit LayoutSize.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:19:30: error: cannot find type 'NSLayoutDimension' in scope
17 | public struct LayoutSize {
18 |
19 | let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
| `- error: cannot find type 'NSLayoutDimension' in scope
20 | let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
21 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:20:31: error: cannot find type 'NSLayoutDimension' in scope
18 |
19 | let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
20 | let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
| `- error: cannot find type 'NSLayoutDimension' in scope
21 | }
22 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
45 |
46 | @discardableResult
47 | public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | return [lsh.width == rsh.width,
49 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:53:62: error: cannot find type 'NSLayoutConstraint' in scope
51 |
52 | @discardableResult
53 | public static func >= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
54 | return [lsh.width >= rsh.width,
55 | lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:59:62: error: cannot find type 'NSLayoutConstraint' in scope
57 |
58 | @discardableResult
59 | public static func <= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
60 | return [lsh.width <= rsh.width,
61 | lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
67 | extension LayoutSize {
68 | @discardableResult
69 | public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
70 | return [lsh.width == rsh.width,
71 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:75:66: error: cannot find type 'NSLayoutConstraint' in scope
73 |
74 | @discardableResult
75 | public static func >= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
76 | return [lsh.width >= rsh.width,
77 | lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
79 |
80 | @discardableResult
81 | public static func <= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
82 | return [lsh.width <= rsh.width,
83 | lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:88:41: error: cannot find type 'View' in scope
86 |
87 | @available(iOS 9.0, *)
88 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
89 |
90 | public var size: LayoutSize {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | @discardableResult
241 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
242 | guard let superAnchor = lsh.superAnchor else {
243 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | @discardableResult
264 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
265 | guard let superAnchor = lsh.superAnchor else {
266 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | @discardableResult
280 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
281 | return lsh
282 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | @discardableResult
27 | public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | return [lsh.leading == rsh.leading,
29 | lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
33 |
34 | @discardableResult
35 | public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
36 |
37 | return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | return [lsh.x == rsh.x,
44 | lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | #if os(iOS)
44 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:288:62: error: cannot find type 'NSLayoutConstraint' in scope
286 |
287 | @discardableResult
288 | public static func >= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
289 | return lsh
290 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:107:68: error: cannot find type 'NSLayoutConstraint' in scope
105 |
106 | @discardableResult
107 | public static func >= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
108 | #if os(iOS)
109 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:296:62: error: cannot find type 'NSLayoutConstraint' in scope
294 |
295 | @discardableResult
296 | public static func <= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
297 | return lsh
298 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:171:68: error: cannot find type 'NSLayoutConstraint' in scope
169 |
170 | @discardableResult
171 | public static func <= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
172 | #if os(iOS)
173 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
15 |
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
58 | }
59 |
60 | public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
61 | return .init(
62 | anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
65 | }
66 |
67 | public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
68 | return .init(
69 | anchor: base.heightAnchor,
[11/13] Compiling RLayoutKit ViewAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
15 |
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | return .init(
20 | anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | }
24 |
25 | public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 | return .init(
27 | anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:32:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
30 | }
31 |
32 | public var left: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
33 | return .init(
34 | anchor: base.leftAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:39:34: error: cannot find type 'NSLayoutXAxisAnchor' in scope
37 | }
38 |
39 | public var right: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
40 | return .init(
41 | anchor: base.rightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
44 | }
45 |
46 | public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
47 | return .init(
48 | anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | }
52 |
53 | public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 | return .init(
55 | anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
58 | }
59 |
60 | public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
61 | return .init(
62 | anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
65 | }
66 |
67 | public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
| `- error: cannot find type 'NSLayoutDimension' in scope
68 | return .init(
69 | anchor: base.heightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
72 | }
73 |
74 | public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
75 | return .init(
76 | anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
79 | }
80 |
81 | public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
82 | return .init(
83 | anchor: base.centerYAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:88:42: error: cannot find type 'NSLayoutYAxisAnchor' in scope
86 | }
87 |
88 | public var firstBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
89 | return .init(
90 | anchor: base.firstBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:95:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
93 | }
94 |
95 | public var lastBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
96 | return .init(
97 | anchor: base.lastBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:20:17: error: value of type 'Base' has no member 'leadingAnchor'
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
20 | anchor: base.leadingAnchor,
| `- error: value of type 'Base' has no member 'leadingAnchor'
21 | superAnchor: base.superView?.leadingAnchor
22 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:21:22: error: value of type 'Base' has no member 'superView'
19 | return .init(
20 | anchor: base.leadingAnchor,
21 | superAnchor: base.superView?.leadingAnchor
| `- error: value of type 'Base' has no member 'superView'
22 | )
23 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:27:17: error: value of type 'Base' has no member 'trailingAnchor'
25 | public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
26 | return .init(
27 | anchor: base.trailingAnchor,
| `- error: value of type 'Base' has no member 'trailingAnchor'
28 | superAnchor: base.superView?.trailingAnchor
29 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:28:22: error: value of type 'Base' has no member 'superView'
26 | return .init(
27 | anchor: base.trailingAnchor,
28 | superAnchor: base.superView?.trailingAnchor
| `- error: value of type 'Base' has no member 'superView'
29 | )
30 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:34:17: error: value of type 'Base' has no member 'leftAnchor'
32 | public var left: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
33 | return .init(
34 | anchor: base.leftAnchor,
| `- error: value of type 'Base' has no member 'leftAnchor'
35 | superAnchor: base.superView?.leftAnchor
36 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:35:22: error: value of type 'Base' has no member 'superView'
33 | return .init(
34 | anchor: base.leftAnchor,
35 | superAnchor: base.superView?.leftAnchor
| `- error: value of type 'Base' has no member 'superView'
36 | )
37 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:41:17: error: value of type 'Base' has no member 'rightAnchor'
39 | public var right: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
40 | return .init(
41 | anchor: base.rightAnchor,
| `- error: value of type 'Base' has no member 'rightAnchor'
42 | superAnchor: base.superView?.rightAnchor
43 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:42:22: error: value of type 'Base' has no member 'superView'
40 | return .init(
41 | anchor: base.rightAnchor,
42 | superAnchor: base.superView?.rightAnchor
| `- error: value of type 'Base' has no member 'superView'
43 | )
44 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:48:17: error: value of type 'Base' has no member 'topAnchor'
46 | public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
47 | return .init(
48 | anchor: base.topAnchor,
| `- error: value of type 'Base' has no member 'topAnchor'
49 | superAnchor: base.superView?.topAnchor
50 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:49:22: error: value of type 'Base' has no member 'superView'
47 | return .init(
48 | anchor: base.topAnchor,
49 | superAnchor: base.superView?.topAnchor
| `- error: value of type 'Base' has no member 'superView'
50 | )
51 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:55:17: error: value of type 'Base' has no member 'bottomAnchor'
53 | public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
54 | return .init(
55 | anchor: base.bottomAnchor,
| `- error: value of type 'Base' has no member 'bottomAnchor'
56 | superAnchor: base.superView?.bottomAnchor
57 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:56:22: error: value of type 'Base' has no member 'superView'
54 | return .init(
55 | anchor: base.bottomAnchor,
56 | superAnchor: base.superView?.bottomAnchor
| `- error: value of type 'Base' has no member 'superView'
57 | )
58 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:62:17: error: value of type 'Base' has no member 'widthAnchor'
60 | public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
61 | return .init(
62 | anchor: base.widthAnchor,
| `- error: value of type 'Base' has no member 'widthAnchor'
63 | superAnchor: base.superView?.widthAnchor
64 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:63:22: error: value of type 'Base' has no member 'superView'
61 | return .init(
62 | anchor: base.widthAnchor,
63 | superAnchor: base.superView?.widthAnchor
| `- error: value of type 'Base' has no member 'superView'
64 | )
65 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:69:17: error: value of type 'Base' has no member 'heightAnchor'
67 | public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
68 | return .init(
69 | anchor: base.heightAnchor,
| `- error: value of type 'Base' has no member 'heightAnchor'
70 | superAnchor: base.superView?.heightAnchor
71 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:70:22: error: value of type 'Base' has no member 'superView'
68 | return .init(
69 | anchor: base.heightAnchor,
70 | superAnchor: base.superView?.heightAnchor
| `- error: value of type 'Base' has no member 'superView'
71 | )
72 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:76:17: error: value of type 'Base' has no member 'centerXAnchor'
74 | public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
75 | return .init(
76 | anchor: base.centerXAnchor,
| `- error: value of type 'Base' has no member 'centerXAnchor'
77 | superAnchor: base.superView?.centerXAnchor
78 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:77:22: error: value of type 'Base' has no member 'superView'
75 | return .init(
76 | anchor: base.centerXAnchor,
77 | superAnchor: base.superView?.centerXAnchor
| `- error: value of type 'Base' has no member 'superView'
78 | )
79 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:83:17: error: value of type 'Base' has no member 'centerYAnchor'
81 | public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
82 | return .init(
83 | anchor: base.centerYAnchor,
| `- error: value of type 'Base' has no member 'centerYAnchor'
84 | superAnchor: base.superView?.centerYAnchor
85 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:84:22: error: value of type 'Base' has no member 'superView'
82 | return .init(
83 | anchor: base.centerYAnchor,
84 | superAnchor: base.superView?.centerYAnchor
| `- error: value of type 'Base' has no member 'superView'
85 | )
86 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:90:17: error: value of type 'Base' has no member 'firstBaselineAnchor'
88 | public var firstBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
89 | return .init(
90 | anchor: base.firstBaselineAnchor,
| `- error: value of type 'Base' has no member 'firstBaselineAnchor'
91 | superAnchor: base.superView?.firstBaselineAnchor
92 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:91:22: error: value of type 'Base' has no member 'superView'
89 | return .init(
90 | anchor: base.firstBaselineAnchor,
91 | superAnchor: base.superView?.firstBaselineAnchor
| `- error: value of type 'Base' has no member 'superView'
92 | )
93 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:97:17: error: value of type 'Base' has no member 'lastBaselineAnchor'
95 | public var lastBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
96 | return .init(
97 | anchor: base.lastBaselineAnchor,
| `- error: value of type 'Base' has no member 'lastBaselineAnchor'
98 | superAnchor: base.superView?.lastBaselineAnchor
99 | )
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:98:22: error: value of type 'Base' has no member 'superView'
96 | return .init(
97 | anchor: base.lastBaselineAnchor,
98 | superAnchor: base.superView?.lastBaselineAnchor
| `- error: value of type 'Base' has no member 'superView'
99 | )
100 | }
[12/13] Compiling RLayoutKit LayoutBase.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:23:11: error: cannot find type 'NSLayoutConstraint' in scope
21 | infix operator <=*: ComparisonPrecedence
22 |
23 | extension NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
24 |
25 | public var active: NSLayoutConstraint {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | #if os(iOS)
44 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:62:62: error: cannot find type 'NSLayoutConstraint' in scope
60 | }
61 |
62 | static func ==+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
63 | return lsh
64 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:107:68: error: cannot find type 'NSLayoutConstraint' in scope
105 |
106 | @discardableResult
107 | public static func >= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
108 | #if os(iOS)
109 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:127:62: error: cannot find type 'NSLayoutConstraint' in scope
125 | }
126 |
127 | static func >=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
128 | return lsh
129 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:171:68: error: cannot find type 'NSLayoutConstraint' in scope
169 |
170 | @discardableResult
171 | public static func <= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
172 | #if os(iOS)
173 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:191:62: error: cannot find type 'NSLayoutConstraint' in scope
189 | }
190 |
191 | static func <=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
192 | return lsh
193 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | @discardableResult
241 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
242 | guard let superAnchor = lsh.superAnchor else {
243 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | @discardableResult
264 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
265 | guard let superAnchor = lsh.superAnchor else {
266 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | @discardableResult
280 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
281 | return lsh
282 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:288:62: error: cannot find type 'NSLayoutConstraint' in scope
286 |
287 | @discardableResult
288 | public static func >= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
289 | return lsh
290 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:296:62: error: cannot find type 'NSLayoutConstraint' in scope
294 |
295 | @discardableResult
296 | public static func <= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
297 | return lsh
298 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:58:5: error: value of type 'Anchor' has no member 'constraint'
56 | return lsh
57 | .anchor
58 | .constraint(equalTo: rsh.anchor)
| `- error: value of type 'Anchor' has no member 'constraint'
59 | .active
60 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:65:5: error: value of type 'Anchor' has no member 'constraint'
63 | return lsh
64 | .anchor
65 | .constraint(equalTo: rsh.anchor,
| `- error: value of type 'Anchor' has no member 'constraint'
66 | constant: rsh.constant!)
67 | .active
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:123:5: error: value of type 'Anchor' has no member 'constraint'
121 | return lsh
122 | .anchor
123 | .constraint(greaterThanOrEqualTo: rsh.anchor)
| `- error: value of type 'Anchor' has no member 'constraint'
124 | .active
125 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:130:5: error: value of type 'Anchor' has no member 'constraint'
128 | return lsh
129 | .anchor
130 | .constraint(greaterThanOrEqualTo: rsh.anchor,
| `- error: value of type 'Anchor' has no member 'constraint'
131 | constant: rsh.constant!)
132 | .active
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:187:5: error: value of type 'Anchor' has no member 'constraint'
185 | return lsh
186 | .anchor
187 | .constraint(lessThanOrEqualTo: rsh.anchor)
| `- error: value of type 'Anchor' has no member 'constraint'
188 | .active
189 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:194:5: error: value of type 'Anchor' has no member 'constraint'
192 | return lsh
193 | .anchor
194 | .constraint(lessThanOrEqualTo: rsh.anchor,
| `- error: value of type 'Anchor' has no member 'constraint'
195 | constant: rsh.constant!)
196 | .active
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:25:21: error: cannot find type 'NSLayoutConstraint' in scope
23 | extension NSLayoutConstraint {
24 |
25 | public var active: NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
26 | isActive = true
27 | return self
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:30:23: error: cannot find type 'NSLayoutConstraint' in scope
28 | }
29 |
30 | public var inactive: NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
31 | isActive = false
32 | return self
[13/13] Compiling RLayoutKit LayoutEdge.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:21:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | public struct LayoutEdge {
20 |
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:22:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
20 |
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:23:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
21 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
25 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:24:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
23 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
24 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
25 |
26 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
25 |
26 | @discardableResult
27 | public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
28 | return [lsh.leading == rsh.leading,
29 | lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
33 |
34 | @discardableResult
35 | public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
36 |
37 | return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
45 | extension LayoutEdge {
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
49 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
52 | }
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
56 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:65:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
63 | public struct LayoutInsetsEdge {
64 |
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:66:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
64 |
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:67:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
65 | let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:68:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
66 | let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
67 | let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
68 | let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
72 | trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
75 | }
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
| `- error: cannot find type 'EdgeInsets' in scope
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
79 | trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:86:41: error: cannot find type 'View' in scope
84 |
85 | @available(iOS 9.0, *)
86 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
87 |
88 | public var edges: LayoutEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
| `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | @available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | @discardableResult
241 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
242 | guard let superAnchor = lsh.superAnchor else {
243 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | @discardableResult
264 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
| `- error: cannot find type 'NSLayoutConstraint' in scope
265 | guard let superAnchor = lsh.superAnchor else {
266 | return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | @discardableResult
280 | public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
281 | return lsh
282 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | return [lsh.x == rsh.x,
44 | lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
45 |
46 | @discardableResult
47 | public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
48 | return [lsh.width == rsh.width,
49 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
67 | extension LayoutSize {
68 | @discardableResult
69 | public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
| `- error: cannot find type 'NSLayoutConstraint' in scope
70 | return [lsh.width == rsh.width,
71 | lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 | @discardableResult
42 | public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
| `- error: cannot find type 'NSLayoutConstraint' in scope
43 | #if os(iOS)
44 | if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | @available(iOS 10.0, *)
234 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
235 | return lsh
236 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | @available(iOS 10.0, *)
257 | public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
| `- error: cannot find type 'NSLayoutDimension' in scope
258 | return lsh
259 | .anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:48:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
46 |
47 | public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
48 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
49 | trailing: lsh.trailing - rsh.right,
50 | top: lsh.top + rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:55:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
53 |
54 | public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
55 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
56 | trailing: lsh.trailing + rsh.right,
57 | top: lsh.top - rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:71:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
69 |
70 | public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
71 | return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | trailing: lsh.trailing - rsh.right,
73 | top: lsh.top + rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:78:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
76 |
77 | public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
78 | return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
79 | trailing: lsh.trailing + rsh.right,
80 | top: lsh.top - rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
15 |
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
| `- error: cannot find type 'View' in scope
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
19 | return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
16 | @available(iOS 9.0, *)
17 | extension RLayoutKitWrapper where Base: View {
18 | public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
19 | return .init(
20 | anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
23 | }
24 |
25 | public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
| `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
26 | return .init(
27 | anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
44 | }
45 |
46 | public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
47 | return .init(
48 | anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
51 | }
52 |
53 | public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
| `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
54 | return .init(
55 | anchor: base.bottomAnchor,
BUILD FAILURE 6.3 linux