Build Information
Failed to build DeclarativeTextKit, reference 0.7.0 (57fb27
), with Swift 6.0 for Linux on 5 Nov 2024 09:09:40 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CleanCocoa/DeclarativeTextKit.git
Reference: 0.7.0
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/CleanCocoa/DeclarativeTextKit
* tag 0.7.0 -> FETCH_HEAD
HEAD is now at 57fb275 fold "contains insertion point at" into regular contains(_:)
Cloned https://github.com/CleanCocoa/DeclarativeTextKit.git
Revision (git rev-parse @):
57fb275b1fa66a79422230b16bbb24724afbd7b0
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/CleanCocoa/DeclarativeTextKit.git at 0.7.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/CleanCocoa/DeclarativeTextKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/49] Emitting module DeclarativeTextKit
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
[5/55] Compiling DeclarativeTextKit NSRange+expandedToOther.swift
[6/55] Compiling DeclarativeTextKit NSRange+notFound.swift
[7/55] Compiling DeclarativeTextKit NSRange+prefix.swift
[8/55] Compiling DeclarativeTextKit NSRange+suffix.swift
[9/55] Compiling DeclarativeTextKit NSString+locationUpToCharacter.swift
[10/55] Compiling DeclarativeTextKit SortedArray.swift
[11/55] Compiling DeclarativeTextKit Modification.swift
[12/55] Compiling DeclarativeTextKit ModificationBuilder.swift
[13/55] Compiling DeclarativeTextKit ModificationSequence.swift
[14/55] Compiling DeclarativeTextKit Modifying.swift
[15/55] Compiling DeclarativeTextKit ScopedBufferSlice.swift
[16/55] Compiling DeclarativeTextKit AffectedRange.swift
[17/55] Compiling DeclarativeTextKit If.swift
[18/55] Compiling DeclarativeTextKit IfLet.swift
[19/55] Compiling DeclarativeTextKit ChangeInLength+Consume.swift
[20/55] Compiling DeclarativeTextKit ChangeInLength.swift
[21/55] Compiling DeclarativeTextKit Delete+Modification.swift
[22/55] Compiling DeclarativeTextKit Delete.swift
[23/55] Compiling DeclarativeTextKit Identity.swift
[24/55] Compiling DeclarativeTextKit WordRange.swift
[25/55] Compiling DeclarativeTextKit NSRange+Order.swift
[26/55] Compiling DeclarativeTextKit NSRange+Resized.swift
[27/55] Compiling DeclarativeTextKit NSRange+Shifted.swift
[28/55] Compiling DeclarativeTextKit NSRange+Subtracting.swift
[29/55] Compiling DeclarativeTextKit NSRange+containsRange.swift
[30/55] Compiling DeclarativeTextKit Buffer+SelectRangeExpression.swift
[31/55] Compiling DeclarativeTextKit BufferRangeExpression.swift
[32/55] Compiling DeclarativeTextKit LineRange.swift
[33/55] Compiling DeclarativeTextKit NSRange+BufferRangeExpression.swift
[34/55] Compiling DeclarativeTextKit Select.swift
[35/55] Compiling DeclarativeTextKit SelectedRange+BufferRangeExpression.swift
[36/55] Compiling DeclarativeTextKit Insert+Modification.swift
[37/55] Compiling DeclarativeTextKit Insert.swift
[38/55] Compiling DeclarativeTextKit Insertable.swift
[39/55] Compiling DeclarativeTextKit Line.swift
[40/55] Compiling DeclarativeTextKit String+Insertable.swift
[41/55] Compiling DeclarativeTextKit Word.swift
[42/55] Compiling DeclarativeTextKit Bool+inverted.swift
[43/55] Compiling DeclarativeTextKit Buffer+contains.swift
[44/55] Compiling DeclarativeTextKit Buffer+evaluate.swift
[45/55] Compiling DeclarativeTextKit Buffer+wordRange.swift
[46/55] Compiling DeclarativeTextKit Buffer.swift
[47/55] Compiling DeclarativeTextKit BufferAccessFailure.swift
[48/55] Compiling DeclarativeTextKit MutableStringBuffer.swift
[49/55] Compiling DeclarativeTextKit NSMutableString+BufferCompatibility.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[50/55] Compiling DeclarativeTextKit NSTextViewBuffer.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[51/55] Compiling DeclarativeTextKit UTF16.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[52/55] Compiling DeclarativeTextKit Undoable+NSTextViewBuffer.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[53/55] Compiling DeclarativeTextKit Undoable.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[54/55] Compiling DeclarativeTextKit Debug.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
[55/55] Compiling DeclarativeTextKit Expression.swift
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:3:34: error: cannot find type 'NSTextViewBuffer' in scope
1 | // Copyright © 2024 Christian Tietze. All rights reserved. Distributed under the MIT License.
2 |
3 | extension Undoable where Base == NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
4 | /// Wraps `base` to support automatic undo/redo of buffer mutations with the default undo manager of the `NSTextView`.
5 | ///
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:10:17: error: cannot find type 'NSTextViewBuffer' in scope
8 | /// This behavior can be tweaked by setting the `undoManager` on the enclosing document directly, or by implementing [`NSWindowDelegate.windowWillReturnUndoManager(_:)`](https://developer.apple.com/documentation/appkit/nswindowdelegate/1419745-windowwillreturnundomanager) to return `UndoManager` instances you manage yourself.
9 | public convenience init(
10 | _ base: NSTextViewBuffer
| `- error: cannot find type 'NSTextViewBuffer' in scope
11 | ) {
12 | self.init(base) {
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:18:11: error: cannot find type 'NSTextViewBuffer' in scope
16 | }
17 |
18 | extension NSTextViewBuffer {
| `- error: cannot find type 'NSTextViewBuffer' in scope
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:81:31: error: cannot find type 'UndoManager' in scope
79 | /// Lazy `UndoManager` access. Required to support `NSTextView`'s default behavior of not shipping with its own `UndoManager`, but delegating to the window or document.
80 | @usableFromInline
81 | let getUndoManager: () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
82 |
83 | /// Undo manager used by the buffer.
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:89:29: error: cannot find type 'UndoManager' in scope
87 | /// To guarantee that an undo manager is used to track changes to the buffer, use ``init(_:undoManager:)`` and supply an `UndoManager` instance (or use the default instance).
88 | @inlinable @inline(__always)
89 | public var undoManager: UndoManager? { getUndoManager() }
| `- error: cannot find type 'UndoManager' in scope
90 |
91 | @usableFromInline
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:41: error: cannot find type 'UndoManager' in scope
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: cannot find type 'UndoManager' in scope
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:94:25: error: @escaping attribute only applies to function types
92 | required init(
93 | _ base: Base,
94 | getUndoManager: @escaping () -> UndoManager?
| `- error: @escaping attribute only applies to function types
95 | ) {
96 | self.base = base
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable.swift:110:22: error: cannot find type 'UndoManager' in scope
108 | public convenience init(
109 | _ base: Base,
110 | undoManager: UndoManager = {
| `- error: cannot find type 'UndoManager' in scope
111 | let undoManager = UndoManager()
112 | undoManager.groupsByEvent = false
/host/spi-builder-workspace/Sources/DeclarativeTextKit/Buffer/Undoable+NSTextViewBuffer.swift:20:35: error: cannot find type 'NSTextViewBuffer' in scope
18 | extension NSTextViewBuffer {
19 | /// Buffer with the system's default undo/redo support (which is usually delegating to the `NSWindow` or `NSDocument`).
20 | public var undoable: Undoable<NSTextViewBuffer> { Undoable(self) }
| `- error: cannot find type 'NSTextViewBuffer' in scope
21 | }
22 |
BUILD FAILURE 6.0 linux