Build Information
Successful build of STTextView, reference main (e8cf0c
), with Swift 6.1 for macOS (SPM) on 5 Sep 2025 04:24:50 UTC.
Swift 6 data race errors: 86
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:23:9: note: requirement 'textContentManager' declared here
21 |
22 | var textLayoutManager: NSTextLayoutManager { get }
23 | var textContentManager: NSTextContentManager { get }
| `- note: requirement 'textContentManager' declared here
24 | var textContainer: NSTextContainer { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:474:16: warning: main actor-isolated property 'textContainer' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
472 |
473 | /// The text view's text container
474 | public var textContainer: NSTextContainer {
| `- warning: main actor-isolated property 'textContainer' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
475 | get {
476 | textLayoutManager.textContainer!
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:24:9: note: requirement 'textContainer' declared here
22 | var textLayoutManager: NSTextLayoutManager { get }
23 | var textContentManager: NSTextContentManager { get }
24 | var textContainer: NSTextContainer { get set }
| `- note: requirement 'textContainer' declared here
25 |
26 | var widthTracksTextView: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:298:22: warning: main actor-isolated property 'widthTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
296 | ///
297 | /// - SeeAlso: [Tracking the Size of a Text View](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextStorageLayer/Tasks/TrackingSize.html#//apple_ref/doc/uid/20000927-CJBBIAAF)
298 | @objc public var widthTracksTextView: Bool {
| `- warning: main actor-isolated property 'widthTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
299 | set {
300 | if textContainer.widthTracksTextView != newValue {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:26:9: note: requirement 'widthTracksTextView' declared here
24 | var textContainer: NSTextContainer { get set }
25 |
26 | var widthTracksTextView: Bool { get set }
| `- note: requirement 'widthTracksTextView' declared here
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:313:22: warning: main actor-isolated property 'isHorizontallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
311 |
312 | /// A Boolean that controls whether the receiver changes its width to fit the width of its text.
313 | @objc public var isHorizontallyResizable: Bool {
| `- warning: main actor-isolated property 'isHorizontallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
314 | set {
315 | widthTracksTextView = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:27:9: note: requirement 'isHorizontallyResizable' declared here
25 |
26 | var widthTracksTextView: Bool { get set }
27 | var isHorizontallyResizable: Bool { get set }
| `- note: requirement 'isHorizontallyResizable' declared here
28 | var heightTracksTextView: Bool { get set }
29 | var isVerticallyResizable: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:330:22: warning: main actor-isolated property 'heightTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
328 | ///
329 | /// - SeeAlso: [Tracking the Size of a Text View](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextStorageLayer/Tasks/TrackingSize.html#//apple_ref/doc/uid/20000927-CJBBIAAF)
330 | @objc public var heightTracksTextView: Bool {
| `- warning: main actor-isolated property 'heightTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
331 | set {
332 | if textContainer.heightTracksTextView != newValue {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:28:9: note: requirement 'heightTracksTextView' declared here
26 | var widthTracksTextView: Bool { get set }
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
| `- note: requirement 'heightTracksTextView' declared here
29 | var isVerticallyResizable: Bool { get set }
30 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:345:22: warning: main actor-isolated property 'isVerticallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
343 |
344 | /// A Boolean that controls whether the receiver changes its height to fit the height of its text.
345 | @objc public var isVerticallyResizable: Bool {
| `- warning: main actor-isolated property 'isVerticallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
346 | set {
347 | heightTracksTextView = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:29:9: note: requirement 'isVerticallyResizable' declared here
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
29 | var isVerticallyResizable: Bool { get set }
| `- note: requirement 'isVerticallyResizable' declared here
30 |
31 | var highlightSelectedLine: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:357:28: warning: main actor-isolated property 'highlightSelectedLine' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
355 | /// A Boolean that controls whether the text view highlights the currently selected line.
356 | @MainActor @Invalidating(.layoutViewport)
357 | @objc dynamic open var highlightSelectedLine: Bool = false
| `- warning: main actor-isolated property 'highlightSelectedLine' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
358 |
359 | /// Enable to show line numbers in the gutter.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:31:9: note: requirement 'highlightSelectedLine' declared here
29 | var isVerticallyResizable: Bool { get set }
30 |
31 | var highlightSelectedLine: Bool { get set }
| `- note: requirement 'highlightSelectedLine' declared here
32 | var selectedLineHighlightColor: Color { get set}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:374:28: warning: main actor-isolated property 'selectedLineHighlightColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
372 | /// Note: Needs ``highlightSelectedLine`` to be set to `true`
373 | @Invalidating(.display)
374 | @objc dynamic open var selectedLineHighlightColor: NSColor = NSColor.selectedTextBackgroundColor.withAlphaComponent(0.25)
| `- warning: main actor-isolated property 'selectedLineHighlightColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
375 |
376 | /// The text view's background color
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:32:9: note: requirement 'selectedLineHighlightColor' declared here
30 |
31 | var highlightSelectedLine: Bool { get set }
32 | var selectedLineHighlightColor: Color { get set}
| `- note: requirement 'selectedLineHighlightColor' declared here
33 |
34 | var showsLineNumbers: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:361:14: warning: main actor-isolated property 'showsLineNumbers' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
359 | /// Enable to show line numbers in the gutter.
360 | @MainActor @Invalidating(.layout)
361 | open var showsLineNumbers: Bool = false {
| `- warning: main actor-isolated property 'showsLineNumbers' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
362 | didSet {
363 | isGutterVisible = showsLineNumbers
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:34:9: note: requirement 'showsLineNumbers' declared here
32 | var selectedLineHighlightColor: Color { get set}
33 |
34 | var showsLineNumbers: Bool { get set }
| `- note: requirement 'showsLineNumbers' declared here
35 | var showsInvisibleCharacters: Bool { get set }
36 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:560:16: warning: main actor-isolated property 'showsInvisibleCharacters' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
558 | /// A Boolean value that indicates whether to substitute visible glyphs for whitespace and other typically invisible characters.
559 | @Invalidating(.layoutViewport, .display)
560 | public var showsInvisibleCharacters: Bool = false {
| `- warning: main actor-isolated property 'showsInvisibleCharacters' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
561 | willSet {
562 | textLayoutManager.invalidateLayout(for: textLayoutManager.textViewportLayoutController.viewportRange ?? textLayoutManager.documentRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:35:9: note: requirement 'showsInvisibleCharacters' declared here
33 |
34 | var showsLineNumbers: Bool { get set }
35 | var showsInvisibleCharacters: Bool { get set }
| `- note: requirement 'showsInvisibleCharacters' declared here
36 |
37 | var font: Font { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:95:22: warning: main actor-isolated property 'font' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
93 | /// If you want to apply the font to only a portion of the text, you must create a new attributed string with the desired style information and assign it
94 | @MainActor
95 | @objc public var font: NSFont {
| `- warning: main actor-isolated property 'font' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
96 | get {
97 | _defaultTypingAttributes[.font] as! NSFont
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:37:9: note: requirement 'font' declared here
35 | var showsInvisibleCharacters: Bool { get set }
36 |
37 | var font: Font { get set }
| `- note: requirement 'font' declared here
38 | var textColor: Color { get set }
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:118:22: warning: main actor-isolated property 'textColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
116 | /// Default text color.
117 | @MainActor
118 | @objc public var textColor: NSColor {
| `- warning: main actor-isolated property 'textColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
119 | get {
120 | _defaultTypingAttributes[.foregroundColor] as! NSColor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:38:9: note: requirement 'textColor' declared here
36 |
37 | var font: Font { get set }
38 | var textColor: Color { get set }
| `- note: requirement 'textColor' declared here
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
40 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:139:22: warning: main actor-isolated property 'defaultParagraphStyle' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
137 | /// Default paragraph style.
138 | @MainActor
139 | @objc public var defaultParagraphStyle: NSParagraphStyle {
| `- warning: main actor-isolated property 'defaultParagraphStyle' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
140 | set {
141 | _defaultTypingAttributes[.paragraphStyle] = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:39:9: note: requirement 'defaultParagraphStyle' declared here
37 | var font: Font { get set }
38 | var textColor: Color { get set }
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
| `- note: requirement 'defaultParagraphStyle' declared here
40 |
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:159:36: warning: main actor-isolated property 'typingAttributes' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
157 | /// This dictionary contains the attribute keys (and corresponding values) to apply to newly typed text.
158 | /// When the text view’s selection changes, the contents of the dictionary are reset automatically.
159 | @objc public internal(set) var typingAttributes: [NSAttributedString.Key: Any] {
| `- warning: main actor-isolated property 'typingAttributes' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
160 | get {
161 | _typingAttributes.merging(_defaultTypingAttributes) { (current, _) in current }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:41:9: note: requirement 'typingAttributes' declared here
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
40 |
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
| `- note: requirement 'typingAttributes' declared here
42 |
43 | var text: String? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:250:20: warning: main actor-isolated property 'text' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
248 | /// For performance reasons, this value is the current backing store of the text object.
249 | /// If you want to maintain a snapshot of this as you manipulate the text storage, you should make a copy of the appropriate substring.
250 | @objc open var text: String? {
| `- warning: main actor-isolated property 'text' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
251 | set {
252 | let prevLocation = textLayoutManager.insertionPointLocations.first
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:43:9: note: requirement 'text' declared here
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
42 |
43 | var text: String? { get set }
| `- note: requirement 'text' declared here
44 | var attributedText: NSAttributedString? { get set }
45 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:272:20: warning: main actor-isolated property 'attributedText' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
270 | ///
271 | /// Assigning a new value to this property also replaces the value of the `text` property with the same string data, albeit without any formatting information. In addition, the `font`, `textColor`, and `textAlignment` properties are updated to reflect the typing attributes of the text view.
272 | @objc open var attributedText: NSAttributedString? {
| `- warning: main actor-isolated property 'attributedText' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
273 | set {
274 | let prevLocation = textLayoutManager.insertionPointLocations.first
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:44:9: note: requirement 'attributedText' declared here
42 |
43 | var text: String? { get set }
44 | var attributedText: NSAttributedString? { get set }
| `- note: requirement 'attributedText' declared here
45 |
46 | var isEditable: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:44:28: warning: main actor-isolated property 'isEditable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
43 | @Invalidating(.insertionPoint, .cursorRects)
44 | @objc dynamic open var isEditable: Bool = true {
| `- warning: main actor-isolated property 'isEditable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
45 | didSet {
46 | if isEditable == true {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:46:9: note: requirement 'isEditable' declared here
44 | var attributedText: NSAttributedString? { get set }
45 |
46 | var isEditable: Bool { get set }
| `- note: requirement 'isEditable' declared here
47 | var isSelectable: Bool { get set }
48 | var allowsUndo: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:54:28: warning: main actor-isolated property 'isSelectable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
52 | /// A Boolean value that controls whether the text views allows the user to select text.
53 | @Invalidating(.insertionPoint, .cursorRects)
54 | @objc dynamic open var isSelectable: Bool = true {
| `- warning: main actor-isolated property 'isSelectable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
55 | didSet {
56 | if isSelectable == false {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:47:9: note: requirement 'isSelectable' declared here
45 |
46 | var isEditable: Bool { get set }
47 | var isSelectable: Bool { get set }
| `- note: requirement 'isSelectable' declared here
48 | var allowsUndo: Bool { get set }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:402:28: warning: main actor-isolated property 'allowsUndo' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
400 | ///
401 | /// `true` if the receiver allows undo, otherwise `false`. Default `true`.
402 | @objc dynamic open var allowsUndo: Bool
| `- warning: main actor-isolated property 'allowsUndo' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
403 | internal var _undoManager: UndoManager?
404 | internal var _yankingManager = YankingManager()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:48:9: note: requirement 'allowsUndo' declared here
46 | var isEditable: Bool { get set }
47 | var isSelectable: Bool { get set }
48 | var allowsUndo: Bool { get set }
| `- note: requirement 'allowsUndo' declared here
49 |
50 | var textDelegate: Delegate? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:429:21: warning: main actor-isolated property 'textDelegate' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
427 |
428 | /// The delegate for all text views sharing the same layout manager.
429 | public weak var textDelegate: (any STTextViewDelegate)? {
| `- warning: main actor-isolated property 'textDelegate' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
430 | set {
431 | delegateProxy.source = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:50:9: note: requirement 'textDelegate' declared here
48 | var allowsUndo: Bool { get set }
49 |
50 | var textDelegate: Delegate? { get set }
| `- note: requirement 'textDelegate' declared here
51 |
52 | var gutterView: GutterView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:368:16: warning: main actor-isolated property 'gutterView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
366 |
367 | /// Gutter view
368 | public var gutterView: STGutterView?
| `- warning: main actor-isolated property 'gutterView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
369 |
370 | /// The highlight color of the selected line.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:52:9: note: requirement 'gutterView' declared here
50 | var textDelegate: Delegate? { get set }
51 |
52 | var gutterView: GutterView? { get }
| `- note: requirement 'gutterView' declared here
53 | func toggleRuler(_ sender: Any?)
54 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Gutter.swift:11:23: warning: main actor-isolated instance method 'toggleRuler' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
9 |
10 | /// This action method shows or hides the ruler, if the receiver is enclosed in a scroll view.
11 | @objc public func toggleRuler(_ sender: Any?) {
| |- warning: main actor-isolated instance method 'toggleRuler' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'toggleRuler' to make this instance method not isolated to the actor
12 | isGutterVisible.toggle()
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:53:10: note: mark the protocol requirement 'toggleRuler' 'async' to allow actor-isolated conformances
51 |
52 | var gutterView: GutterView? { get }
53 | func toggleRuler(_ sender: Any?)
| `- note: mark the protocol requirement 'toggleRuler' 'async' to allow actor-isolated conformances
54 |
55 | var textSelection: NSRange { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:962:16: warning: main actor-isolated property 'textSelection' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
960 | ///
961 | /// If the length of the selection range is 0, indicating that the selection is actually an insertion point
962 | public var textSelection: NSRange {
| `- warning: main actor-isolated property 'textSelection' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
963 | set {
964 | setSelectedRange(newValue)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:55:9: note: requirement 'textSelection' declared here
53 | func toggleRuler(_ sender: Any?)
54 |
55 | var textSelection: NSRange { get set }
| `- note: requirement 'textSelection' declared here
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1007:15: warning: main actor-isolated instance method 'addAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1005 |
1006 | /// Add attribute.
1007 | open func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange) {
| |- warning: main actor-isolated instance method 'addAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'addAttributes(_:range:)' to make this instance method not isolated to the actor
1008 | addAttributes(attrs, range: range, updateLayout: true)
1009 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:57:10: note: mark the protocol requirement 'addAttributes(_:range:)' 'async' to allow actor-isolated conformances
55 | var textSelection: NSRange { get set }
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
| `- note: mark the protocol requirement 'addAttributes(_:range:)' 'async' to allow actor-isolated conformances
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1042:15: warning: main actor-isolated instance method 'setAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1040 |
1041 | /// Set attributes.
1042 | open func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange) {
| |- warning: main actor-isolated instance method 'setAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'setAttributes(_:range:)' to make this instance method not isolated to the actor
1043 | setAttributes(attrs, range: range, updateLayout: true)
1044 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:58:10: note: mark the protocol requirement 'setAttributes(_:range:)' 'async' to allow actor-isolated conformances
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
| `- note: mark the protocol requirement 'setAttributes(_:range:)' 'async' to allow actor-isolated conformances
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
60 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1078:15: warning: main actor-isolated instance method 'removeAttribute(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1076 |
1077 | /// Remove attributes.
1078 | open func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange) {
| |- warning: main actor-isolated instance method 'removeAttribute(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'removeAttribute(_:range:)' to make this instance method not isolated to the actor
1079 | removeAttribute(attribute, range: range, updateLayout: true)
1080 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:59:10: note: mark the protocol requirement 'removeAttribute(_:range:)' 'async' to allow actor-isolated conformances
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
| `- note: mark the protocol requirement 'removeAttribute(_:range:)' 'async' to allow actor-isolated conformances
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1527:15: warning: main actor-isolated instance method 'shouldChangeText(in:replacementString:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1525 | /// this method should be called with information on the change.
1526 | /// Coalesce consecutive typing events
1527 | open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
| |- warning: main actor-isolated instance method 'shouldChangeText(in:replacementString:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'shouldChangeText(in:replacementString:)' to make this instance method not isolated to the actor
1528 | let result = delegateProxy.textView(self, shouldChangeTextIn: affectedTextRange, replacementString: replacementString)
1529 | if !result {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:61:10: note: mark the protocol requirement 'shouldChangeText(in:replacementString:)' 'async' to allow actor-isolated conformances
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
| `- note: mark the protocol requirement 'shouldChangeText(in:replacementString:)' 'async' to allow actor-isolated conformances
62 | func replaceCharacters(in range: NSTextRange, with string: String)
63 | func insertText(_ string: Any, replacementRange: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1452:15: warning: main actor-isolated instance method 'replaceCharacters(in:with:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1450 | }
1451 |
1452 | open func replaceCharacters(in range: NSTextRange, with string: String) {
| |- warning: main actor-isolated instance method 'replaceCharacters(in:with:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'replaceCharacters(in:with:)' to make this instance method not isolated to the actor
1453 | replaceCharacters(in: range, with: string, useTypingAttributes: true, allowsTypingCoalescing: false)
1454 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:62:10: note: mark the protocol requirement 'replaceCharacters(in:with:)' 'async' to allow actor-isolated conformances
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
62 | func replaceCharacters(in range: NSTextRange, with string: String)
| `- note: mark the protocol requirement 'replaceCharacters(in:with:)' 'async' to allow actor-isolated conformances
63 | func insertText(_ string: Any, replacementRange: NSRange)
64 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:197:21: warning: main actor-isolated instance method 'insertText(_:replacementRange:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
195 | }
196 |
197 | @objc open func insertText(_ string: Any, replacementRange: NSRange) {
| |- warning: main actor-isolated instance method 'insertText(_:replacementRange:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'insertText(_:replacementRange:)' to make this instance method not isolated to the actor
198 | unmarkText()
199 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:63:10: note: mark the protocol requirement 'insertText(_:replacementRange:)' 'async' to allow actor-isolated conformances
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
62 | func replaceCharacters(in range: NSTextRange, with string: String)
63 | func insertText(_ string: Any, replacementRange: NSRange)
| `- note: mark the protocol requirement 'insertText(_:replacementRange:)' 'async' to allow actor-isolated conformances
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:730:13: warning: main actor-isolated property '_yankingManager' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
402 | @objc dynamic open var allowsUndo: Bool
403 | internal var _undoManager: UndoManager?
404 | internal var _yankingManager = YankingManager()
| `- note: property declared here
405 |
406 | internal var markedText: STMarkedText? = nil
:
728 | guard let self = self else { return }
729 |
730 | _yankingManager.selectionChanged()
| `- warning: main actor-isolated property '_yankingManager' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
731 |
732 | let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:732:64: warning: main actor-isolated static property 'didChangeSelectionNotification' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
35 |
36 | /// Sent when the selection range of characters changes.
37 | public static let didChangeSelectionNotification = STTextLayoutManager.didChangeSelectionNotification
| `- note: static property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
:
730 | _yankingManager.selectionChanged()
731 |
732 | let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
| `- warning: main actor-isolated static property 'didChangeSelectionNotification' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
733 |
734 | NotificationCenter.default.post(textViewNotification)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:735:18: warning: main actor-isolated property 'delegateProxy' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
438 |
439 | /// Proxy for delegate calls
440 | internal let delegateProxy = STTextViewDelegateProxy(source: nil)
| `- note: property declared here
441 |
442 | /// The manager that lays out text for the text view's text container.
:
733 |
734 | NotificationCenter.default.post(textViewNotification)
735 | self.delegateProxy.textViewDidChangeSelection(textViewNotification)
| `- warning: main actor-isolated property 'delegateProxy' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
736 |
737 | NSAccessibility.post(element: self, notification: .selectedTextChanged)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:740:21: warning: main actor-isolated property 'shouldDimissCompletionOnSelectionChange' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
520 | ///
521 | /// Automatically call ``cancelComplete(_:)`` when `true`.
522 | open var shouldDimissCompletionOnSelectionChange: Bool = true
| `- note: property declared here
523 |
524 | internal var _completionTask: Task<Void, any Error>?
:
738 |
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
| `- warning: main actor-isolated property 'shouldDimissCompletionOnSelectionChange' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:741:26: warning: main actor-isolated property 'currentEvent' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:741:20: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:28: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:22: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:68: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:62: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743:27: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743:21: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:744:29: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
745 | {
746 | self.cancelComplete(textViewNotification.object)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:744:23: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
745 | {
746 | self.cancelComplete(textViewNotification.object)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:746:26: warning: call to main actor-isolated instance method 'cancelComplete' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
746 | self.cancelComplete(textViewNotification.object)
| `- warning: call to main actor-isolated instance method 'cancelComplete' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
747 | }
748 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:31:21: note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
29 | /// see ``complete(_:)``
30 | @preconcurrency @MainActor
31 | @objc open func cancelComplete(_ sender: Any?) {
| `- note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
32 | _completionTask?.cancel()
33 | completionWindowController?.close()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:756:19: warning: main actor-isolated property 'needsUpdateConstraints' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
754 | _usageBoundsForTextContainerObserver = textLayoutManager.observe(\.usageBoundsForTextContainer, options: [.initial, .new]) { [weak self] _, _ in
755 | // FB13291926: Notification no longer works. Fixed again in macOS 15.6
756 | self?.needsUpdateConstraints = true
| `- warning: main actor-isolated property 'needsUpdateConstraints' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
757 | }
758 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutConstraint.h:267:16: note: mutation of this property is only permitted within the actor
265 | - (void)updateConstraintsForSubtreeIfNeeded API_AVAILABLE(macos(10.7));
266 | - (void)updateConstraints API_AVAILABLE(macos(10.7)) NS_REQUIRES_SUPER;
267 | @property BOOL needsUpdateConstraints API_AVAILABLE(macos(10.7));
| `- note: mutation of this property is only permitted within the actor
268 | @end
269 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1154:25: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
441 |
442 | /// The manager that lays out text for the text view's text container.
443 | @objc dynamic open var textLayoutManager: NSTextLayoutManager {
| `- note: property declared here
444 | willSet {
445 | textContentManager.primaryTextLayoutManager = nil
:
1151 | for textLineFragment in layoutFragment.textLineFragments {
1152 |
1153 | func isLineSelected() -> Bool {
| `- note: add '@MainActor' to make local function 'isLineSelected()' part of global actor 'MainActor'
1154 | textLayoutManager.textSelections.flatMap(\.textRanges).reduce(true) { partialResult, selectionTextRange in
| `- warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1155 | var result = true
1156 | if textLineFragment.isExtraLineFragment {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1515:21: warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1513 | // Regular undo action
1514 | textView.replaceCharacters(
1515 | in: undoRange,
| `- warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1516 | with: previousStringInRange,
1517 | allowsTypingCoalescing: false
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h:28:12: note: class 'NSTextRange' does not conform to the 'Sendable' protocol
26 | // NSTextRange represents a contiguous range between two locations inside document contents. It consists of the starting location and terminating location. They are the two basic properties, location and endLocation, respectively. The terminating location, endLocation, is directly following the last location in the range. So, a location is contained in a range if (range.location <= location) && (location < range.endLocation).
27 | API_AVAILABLE(macos(12.0), ios(15.0), tvos(15.0), watchos(8.0), visionos(1.0))
28 | @interface NSTextRange : NSObject
| `- note: class 'NSTextRange' does not conform to the 'Sendable' protocol
29 | #pragma mark Initialization
30 | // Returns an empty range when endLocation=nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1516:23: warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1514 | textView.replaceCharacters(
1515 | in: undoRange,
1516 | with: previousStringInRange,
| `- warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1517 | allowsTypingCoalescing: false
1518 | )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h:29:12: note: class 'NSAttributedString' does not conform to the 'Sendable' protocol
27 |
28 | API_AVAILABLE(macos(10.0), ios(3.2), watchos(2.0), tvos(9.0))
29 | @interface NSAttributedString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
| `- note: class 'NSAttributedString' does not conform to the 'Sendable' protocol
30 |
31 | // Override these two APIs when subclassing NSAttributedString
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1519:43: warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1517 | allowsTypingCoalescing: false
1518 | )
1519 | textView.setSelectedTextRange(textRange, updateLayout: true)
| `- warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1520 | }
1521 | undoManager.endUndoGrouping()
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h:28:12: note: class 'NSTextRange' does not conform to the 'Sendable' protocol
26 | // NSTextRange represents a contiguous range between two locations inside document contents. It consists of the starting location and terminating location. They are the two basic properties, location and endLocation, respectively. The terminating location, endLocation, is directly following the last location in the range. So, a location is contained in a range if (range.location <= location) && (location < range.endLocation).
27 | API_AVAILABLE(macos(12.0), ios(15.0), tvos(15.0), watchos(8.0), visionos(1.0))
28 | @interface NSTextRange : NSObject
| `- note: class 'NSTextRange' does not conform to the 'Sendable' protocol
29 | #pragma mark Initialization
30 | // Returns an empty range when endLocation=nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1514:22: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1477 | }
1478 |
1479 | internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
| |- note: calls to instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
1480 | let previousStringInRange = (textContentManager as? NSTextContentStorage)!.attributedString!.attributedSubstring(from: NSRange(textRange, in: textContentManager))
1481 |
:
1512 | undoManager.registerUndo(withTarget: self) { textView in
1513 | // Regular undo action
1514 | textView.replaceCharacters(
| `- warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1515 | in: undoRange,
1516 | with: previousStringInRange,
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1519:22: warning: call to main actor-isolated instance method 'setSelectedTextRange(_:updateLayout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1517 | allowsTypingCoalescing: false
1518 | )
1519 | textView.setSelectedTextRange(textRange, updateLayout: true)
| `- warning: call to main actor-isolated instance method 'setSelectedTextRange(_:updateLayout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1520 | }
1521 | undoManager.endUndoGrouping()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Select.swift:9:19: note: calls to instance method 'setSelectedTextRange(_:updateLayout:)' from outside of its actor context are implicitly asynchronous
7 | extension STTextView {
8 |
9 | internal func setSelectedTextRange(_ textRange: NSTextRange, updateLayout: Bool) {
| |- note: calls to instance method 'setSelectedTextRange(_:updateLayout:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
10 | guard isSelectable, textRange.endLocation <= textLayoutManager.documentRange.endLocation else {
11 | return
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1617:22: warning: call to main actor-isolated instance method 'updateInsertionPointStateAndRestartTimer()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1610 | struct InsertionPoint: NSViewInvalidating {
1611 |
1612 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1613 | guard let textView = view as? STTextView else {
1614 | return
1615 | }
1616 |
1617 | textView.updateInsertionPointStateAndRestartTimer()
| `- warning: call to main actor-isolated instance method 'updateInsertionPointStateAndRestartTimer()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1618 | }
1619 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+InsertionPoint.swift:11:17: note: calls to instance method 'updateInsertionPointStateAndRestartTimer()' from outside of its actor context are implicitly asynchronous
9 |
10 | /// Updates the insertion point’s location and optionally restarts the blinking cursor timer.
11 | public func updateInsertionPointStateAndRestartTimer() {
| |- note: calls to instance method 'updateInsertionPointStateAndRestartTimer()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
12 | // Hide insertion point layers
13 | if shouldDrawInsertionPoint {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1624:26: warning: call to main actor-isolated instance method 'invalidateCursorRects(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1621 | struct CursorRects: NSViewInvalidating {
1622 |
1623 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1624 | view.window?.invalidateCursorRects(for: view)
| `- warning: call to main actor-isolated instance method 'invalidateCursorRects(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1625 | }
1626 | }
AppKit.NSWindow.invalidateCursorRects:2:22: note: calls to instance method 'invalidateCursorRects(for:)' from outside of its actor context are implicitly asynchronous
1 | class NSWindow {
2 | @MainActor open func invalidateCursorRects(for view: NSView)}
| |- note: calls to instance method 'invalidateCursorRects(for:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1624:18: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1621 | struct CursorRects: NSViewInvalidating {
1622 |
1623 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1624 | view.window?.invalidateCursorRects(for: view)
| `- warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1625 | }
1626 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:86:61: note: property declared here
84 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
85 |
86 | @property (nullable, readonly, unsafe_unretained) NSWindow *window;
| `- note: property declared here
87 | @property (nullable, readonly, unsafe_unretained) NSView *superview;
88 | @property (copy) NSArray<__kindof NSView *> *subviews;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1635:22: warning: call to main actor-isolated instance method 'layoutViewport()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1393 | }
1394 |
1395 | internal func layoutViewport() {
| |- note: calls to instance method 'layoutViewport()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
1396 | // not matter what, the layoutViewport() is slow
1397 | textLayoutManager.textViewportLayoutController.layoutViewport()
:
1628 | struct LayoutViewport: NSViewInvalidating {
1629 |
1630 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1631 | guard let textView = view as? STTextView else {
1632 | return
1633 | }
1634 |
1635 | textView.layoutViewport()
| `- warning: call to main actor-isolated instance method 'layoutViewport()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1636 | }
1637 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegate.swift:145:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
142 | }
143 |
144 | func textViewCompletionViewController(_ textView: STTextView) -> any STCompletionViewControllerProtocol {
| `- note: add '@MainActor' to make instance method 'textViewCompletionViewController' part of global actor 'MainActor'
145 | STCompletionViewController()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
146 | }
147 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:32:37: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
30 | func textView(_ textView: STTextView, shouldChangeTextIn affectedCharRange: NSTextRange, replacementString: String?) -> Bool {
31 | var result = source?.textView(textView, shouldChangeTextIn: affectedCharRange, replacementString: replacementString) ?? true
32 | result = result && textView.plugins.events.reduce(result) { partialResult, events in
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
33 | partialResult && events.shouldChangeTextHandler?(affectedCharRange, replacementString) ?? true
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:41:32: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
36 | }
37 |
38 | func textView(_ textView: STTextView, willChangeTextIn affectedCharRange: NSTextRange, replacementString: String) {
| `- note: add '@MainActor' to make instance method 'textView(_:willChangeTextIn:replacementString:)' part of global actor 'MainActor'
39 | source?.textView(textView, willChangeTextIn: affectedCharRange, replacementString: replacementString)
40 |
41 | for events in textView.plugins.events {
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 | events.willChangeTextHandler?(affectedCharRange)
43 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:49:32: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 | }
45 |
46 | func textView(_ textView: STTextView, didChangeTextIn affectedCharRange: NSTextRange, replacementString: String) {
| `- note: add '@MainActor' to make instance method 'textView(_:didChangeTextIn:replacementString:)' part of global actor 'MainActor'
47 | source?.textView(textView, didChangeTextIn: affectedCharRange, replacementString: replacementString)
48 |
49 | for events in textView.plugins.events {
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
50 | events.didChangeTextHandler?(affectedCharRange, replacementString)
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:56:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 |
55 | func textView(_ textView: STTextView, menu: NSMenu, for event: NSEvent, at location: NSTextLocation) -> NSMenu? {
| `- note: add '@MainActor' to make instance method 'textView(_:menu:for:at:)' part of global actor 'MainActor'
56 | guard let textContentManager = textView.textLayoutManager.textContentManager else {
| `- warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
57 | return nil
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:443:28: note: property declared here
441 |
442 | /// The manager that lays out text for the text view's text container.
443 | @objc dynamic open var textLayoutManager: NSTextLayoutManager {
| `- note: property declared here
444 | willSet {
445 | textContentManager.primaryTextLayoutManager = nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:63:36: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 |
55 | func textView(_ textView: STTextView, menu: NSMenu, for event: NSEvent, at location: NSTextLocation) -> NSMenu? {
| `- note: add '@MainActor' to make instance method 'textView(_:menu:for:at:)' part of global actor 'MainActor'
56 | guard let textContentManager = textView.textLayoutManager.textContentManager else {
57 | return nil
:
61 |
62 | // Append plugins menus
63 | let pluginMenus = textView.plugins.events.compactMap { events in
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
64 | events.onContextMenuHandler?(location, textContentManager)
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:97:63: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 |
96 | func textViewCompletionViewController(_ textView: STTextView) -> any STCompletionViewControllerProtocol {
97 | source?.textViewCompletionViewController(textView) ?? STCompletionViewController()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
98 | }
99 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:710:16: warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
708 |
709 | deinit {
710 | guard !plugins.isEmpty else { return }
| `- warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
711 | Task { @MainActor [plugins] in
712 | plugins.forEach { plugin in
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/Plugin/Plugin.swift:4:17: note: consider making struct 'Plugin' conform to the 'Sendable' protocol
2 | // https://github.com/krzyzanowskim/STTextView/blob/main/LICENSE.md
3 |
4 | internal struct Plugin {
| `- note: consider making struct 'Plugin' conform to the 'Sendable' protocol
5 | let instance: any STPlugin
6 | var events: STPluginEvents?
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:711:28: warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
709 | deinit {
710 | guard !plugins.isEmpty else { return }
711 | Task { @MainActor [plugins] in
| `- warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
712 | plugins.forEach { plugin in
713 | plugin.instance.tearDown()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/Plugin/Plugin.swift:4:17: note: consider making struct 'Plugin' conform to the 'Sendable' protocol
2 | // https://github.com/krzyzanowskim/STTextView/blob/main/LICENSE.md
3 |
4 | internal struct Plugin {
| `- note: consider making struct 'Plugin' conform to the 'Sendable' protocol
5 | let instance: any STPlugin
6 | var events: STPluginEvents?
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:746:26: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
746 | self.cancelComplete(textViewNotification.object)
| |- warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending main actor-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'cancelComplete' risks causing races in between main actor-isolated and main actor-isolated uses
747 | }
748 | }
[120/120] Compiling STTextViewAppKit YankingManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Insert.swift:60:24: warning: main actor-isolated instance method 'insertText' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
58 | }
59 |
60 | open override func insertText(_ insertString: Any) {
| |- warning: main actor-isolated instance method 'insertText' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'insertText' to make this instance method not isolated to the actor
61 | insertText(insertString, replacementRange: .notFound)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:29:38: note: add '@preconcurrency' to the 'NSTextInput' conformance to defer isolation checking to run time
27 |
28 | /// A TextKit2 text view without NSTextView baggage
29 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
| `- note: add '@preconcurrency' to the 'NSTextInput' conformance to defer isolation checking to run time
30 | /// Posted before an object performs any operation that changes characters or formatting attributes.
31 | public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
AppKit.NSResponder.doCommand:3:24: warning: main actor-isolated instance method 'doCommand(by:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
1 | class NSResponder {
2 | @available(macOS 10.0, *)
3 | @MainActor open func doCommand(by selector: Selector)}
| |- warning: main actor-isolated instance method 'doCommand(by:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'doCommand(by:)' to make this instance method not isolated to the actor
4 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:115:23: warning: main actor-isolated instance method 'unmarkText()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
113 | /// The text view should accept the marked text as if it had been inserted normally.
114 | /// If there is no marked text, the invocation of this method has no effect.
115 | @objc public func unmarkText() {
| |- warning: main actor-isolated instance method 'unmarkText()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'unmarkText()' to make this instance method not isolated to the actor
116 | if hasMarkedText() {
117 | // Delete temporary marked text. It's been replaced with final text in insertText
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:140:23: warning: main actor-isolated instance method 'hasMarkedText()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
138 |
139 | /// Returns whether or not the receiver has marked text.
140 | @objc public func hasMarkedText() -> Bool {
| |- warning: main actor-isolated instance method 'hasMarkedText()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'hasMarkedText()' to make this instance method not isolated to the actor
141 | markedText != nil
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:131:23: warning: main actor-isolated instance method 'markedRange()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
129 | /// The returned range measures from the start of the receiver’s text storage.
130 | /// The return value’s location is NSNotFound and its length is 0 if and only if hasMarkedText() returns false.
131 | @objc public func markedRange() -> NSRange {
| |- warning: main actor-isolated instance method 'markedRange()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'markedRange()' to make this instance method not isolated to the actor
132 | if !hasMarkedText() {
133 | return .notFound
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:9:23: warning: main actor-isolated instance method 'selectedRange()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
7 | extension STTextView: NSTextInputClient {
8 |
9 | @objc public func selectedRange() -> NSRange {
| |- warning: main actor-isolated instance method 'selectedRange()' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'selectedRange()' to make this instance method not isolated to the actor
10 | if let selectionTextRange = textLayoutManager.textSelections.last?.textRanges.last {
11 | return NSRange(selectionTextRange, in: textContentManager)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:188:23: warning: main actor-isolated instance method 'characterIndex(for:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
186 | }
187 |
188 | @objc public func characterIndex(for point: CGPoint) -> Int {
| |- warning: main actor-isolated instance method 'characterIndex(for:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextInput'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'characterIndex(for:)' to make this instance method not isolated to the actor
189 | let eventPoint = contentView.convert(window!.convertPoint(fromScreen: point), from: nil)
190 | guard let location = textLayoutManager.location(interactingAt: eventPoint, inContainerAt: textLayoutManager.documentRange.location) else {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:397:14: warning: main actor-isolated property 'contentType' cannot be used to satisfy nonisolated requirement from protocol 'NSTextContent'; this is an error in the Swift 6 language mode
27 |
28 | /// A TextKit2 text view without NSTextView baggage
29 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
| `- note: add '@preconcurrency' to the 'NSTextContent' conformance to defer isolation checking to run time
30 | /// Posted before an object performs any operation that changes characters or formatting attributes.
31 | public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
:
395 |
396 | /// The semantic meaning for a text input area.
397 | open var contentType: NSTextContentType?
| `- warning: main actor-isolated property 'contentType' cannot be used to satisfy nonisolated requirement from protocol 'NSTextContent'; this is an error in the Swift 6 language mode
398 |
399 | /// A Boolean value that indicates whether the receiver allows undo.
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextContent.h:62:46: note: requirement 'contentType' declared here
60 |
61 | @protocol NSTextContent
62 | @property (nullable, copy) NSTextContentType contentType API_AVAILABLE(macos(11.0));
| `- note: requirement 'contentType' declared here
63 | @end
64 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:37:23: warning: main actor-isolated static property 'didChangeSelectionNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
27 |
28 | /// A TextKit2 text view without NSTextView baggage
29 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
| `- note: add '@preconcurrency' to the 'STTextViewProtocol' conformance to defer isolation checking to run time
30 | /// Posted before an object performs any operation that changes characters or formatting attributes.
31 | public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
:
35 |
36 | /// Sent when the selection range of characters changes.
37 | public static let didChangeSelectionNotification = STTextLayoutManager.didChangeSelectionNotification
| `- warning: main actor-isolated static property 'didChangeSelectionNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
38 |
39 | /// Installed plugins. events value is available after plugin is setup
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:18:16: note: requirement 'didChangeSelectionNotification' declared here
16 | associatedtype Delegate
17 |
18 | static var didChangeSelectionNotification: NSNotification.Name { get }
| `- note: requirement 'didChangeSelectionNotification' declared here
19 | static var textWillChangeNotification: NSNotification.Name { get }
20 | static var textDidChangeNotification: NSNotification.Name { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:31:23: warning: main actor-isolated static property 'textWillChangeNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
29 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
30 | /// Posted before an object performs any operation that changes characters or formatting attributes.
31 | public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
| `- warning: main actor-isolated static property 'textWillChangeNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
32 |
33 | /// Sent when the text in the receiving control changes.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:19:16: note: requirement 'textWillChangeNotification' declared here
17 |
18 | static var didChangeSelectionNotification: NSNotification.Name { get }
19 | static var textWillChangeNotification: NSNotification.Name { get }
| `- note: requirement 'textWillChangeNotification' declared here
20 | static var textDidChangeNotification: NSNotification.Name { get }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:34:23: warning: main actor-isolated static property 'textDidChangeNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
32 |
33 | /// Sent when the text in the receiving control changes.
34 | public static let textDidChangeNotification = NSText.didChangeNotification
| `- warning: main actor-isolated static property 'textDidChangeNotification' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
35 |
36 | /// Sent when the selection range of characters changes.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:20:16: note: requirement 'textDidChangeNotification' declared here
18 | static var didChangeSelectionNotification: NSNotification.Name { get }
19 | static var textWillChangeNotification: NSNotification.Name { get }
20 | static var textDidChangeNotification: NSNotification.Name { get }
| `- note: requirement 'textDidChangeNotification' declared here
21 |
22 | var textLayoutManager: NSTextLayoutManager { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:443:28: warning: main actor-isolated property 'textLayoutManager' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
441 |
442 | /// The manager that lays out text for the text view's text container.
443 | @objc dynamic open var textLayoutManager: NSTextLayoutManager {
| `- warning: main actor-isolated property 'textLayoutManager' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
444 | willSet {
445 | textContentManager.primaryTextLayoutManager = nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:22:9: note: requirement 'textLayoutManager' declared here
20 | static var textDidChangeNotification: NSNotification.Name { get }
21 |
22 | var textLayoutManager: NSTextLayoutManager { get }
| `- note: requirement 'textLayoutManager' declared here
23 | var textContentManager: NSTextContentManager { get }
24 | var textContainer: NSTextContainer { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:462:28: warning: main actor-isolated property 'textContentManager' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
460 |
461 | /// The text view's text storage object.
462 | @objc dynamic open var textContentManager: NSTextContentManager {
| `- warning: main actor-isolated property 'textContentManager' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
463 | willSet {
464 | textContentManager.primaryTextLayoutManager = nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:23:9: note: requirement 'textContentManager' declared here
21 |
22 | var textLayoutManager: NSTextLayoutManager { get }
23 | var textContentManager: NSTextContentManager { get }
| `- note: requirement 'textContentManager' declared here
24 | var textContainer: NSTextContainer { get set }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:474:16: warning: main actor-isolated property 'textContainer' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
472 |
473 | /// The text view's text container
474 | public var textContainer: NSTextContainer {
| `- warning: main actor-isolated property 'textContainer' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
475 | get {
476 | textLayoutManager.textContainer!
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:24:9: note: requirement 'textContainer' declared here
22 | var textLayoutManager: NSTextLayoutManager { get }
23 | var textContentManager: NSTextContentManager { get }
24 | var textContainer: NSTextContainer { get set }
| `- note: requirement 'textContainer' declared here
25 |
26 | var widthTracksTextView: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:298:22: warning: main actor-isolated property 'widthTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
296 | ///
297 | /// - SeeAlso: [Tracking the Size of a Text View](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextStorageLayer/Tasks/TrackingSize.html#//apple_ref/doc/uid/20000927-CJBBIAAF)
298 | @objc public var widthTracksTextView: Bool {
| `- warning: main actor-isolated property 'widthTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
299 | set {
300 | if textContainer.widthTracksTextView != newValue {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:26:9: note: requirement 'widthTracksTextView' declared here
24 | var textContainer: NSTextContainer { get set }
25 |
26 | var widthTracksTextView: Bool { get set }
| `- note: requirement 'widthTracksTextView' declared here
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:313:22: warning: main actor-isolated property 'isHorizontallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
311 |
312 | /// A Boolean that controls whether the receiver changes its width to fit the width of its text.
313 | @objc public var isHorizontallyResizable: Bool {
| `- warning: main actor-isolated property 'isHorizontallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
314 | set {
315 | widthTracksTextView = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:27:9: note: requirement 'isHorizontallyResizable' declared here
25 |
26 | var widthTracksTextView: Bool { get set }
27 | var isHorizontallyResizable: Bool { get set }
| `- note: requirement 'isHorizontallyResizable' declared here
28 | var heightTracksTextView: Bool { get set }
29 | var isVerticallyResizable: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:330:22: warning: main actor-isolated property 'heightTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
328 | ///
329 | /// - SeeAlso: [Tracking the Size of a Text View](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/TextStorageLayer/Tasks/TrackingSize.html#//apple_ref/doc/uid/20000927-CJBBIAAF)
330 | @objc public var heightTracksTextView: Bool {
| `- warning: main actor-isolated property 'heightTracksTextView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
331 | set {
332 | if textContainer.heightTracksTextView != newValue {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:28:9: note: requirement 'heightTracksTextView' declared here
26 | var widthTracksTextView: Bool { get set }
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
| `- note: requirement 'heightTracksTextView' declared here
29 | var isVerticallyResizable: Bool { get set }
30 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:345:22: warning: main actor-isolated property 'isVerticallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
343 |
344 | /// A Boolean that controls whether the receiver changes its height to fit the height of its text.
345 | @objc public var isVerticallyResizable: Bool {
| `- warning: main actor-isolated property 'isVerticallyResizable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
346 | set {
347 | heightTracksTextView = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:29:9: note: requirement 'isVerticallyResizable' declared here
27 | var isHorizontallyResizable: Bool { get set }
28 | var heightTracksTextView: Bool { get set }
29 | var isVerticallyResizable: Bool { get set }
| `- note: requirement 'isVerticallyResizable' declared here
30 |
31 | var highlightSelectedLine: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:357:28: warning: main actor-isolated property 'highlightSelectedLine' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
355 | /// A Boolean that controls whether the text view highlights the currently selected line.
356 | @MainActor @Invalidating(.layoutViewport)
357 | @objc dynamic open var highlightSelectedLine: Bool = false
| `- warning: main actor-isolated property 'highlightSelectedLine' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
358 |
359 | /// Enable to show line numbers in the gutter.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:31:9: note: requirement 'highlightSelectedLine' declared here
29 | var isVerticallyResizable: Bool { get set }
30 |
31 | var highlightSelectedLine: Bool { get set }
| `- note: requirement 'highlightSelectedLine' declared here
32 | var selectedLineHighlightColor: Color { get set}
33 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:374:28: warning: main actor-isolated property 'selectedLineHighlightColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
372 | /// Note: Needs ``highlightSelectedLine`` to be set to `true`
373 | @Invalidating(.display)
374 | @objc dynamic open var selectedLineHighlightColor: NSColor = NSColor.selectedTextBackgroundColor.withAlphaComponent(0.25)
| `- warning: main actor-isolated property 'selectedLineHighlightColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
375 |
376 | /// The text view's background color
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:32:9: note: requirement 'selectedLineHighlightColor' declared here
30 |
31 | var highlightSelectedLine: Bool { get set }
32 | var selectedLineHighlightColor: Color { get set}
| `- note: requirement 'selectedLineHighlightColor' declared here
33 |
34 | var showsLineNumbers: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:361:14: warning: main actor-isolated property 'showsLineNumbers' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
359 | /// Enable to show line numbers in the gutter.
360 | @MainActor @Invalidating(.layout)
361 | open var showsLineNumbers: Bool = false {
| `- warning: main actor-isolated property 'showsLineNumbers' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
362 | didSet {
363 | isGutterVisible = showsLineNumbers
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:34:9: note: requirement 'showsLineNumbers' declared here
32 | var selectedLineHighlightColor: Color { get set}
33 |
34 | var showsLineNumbers: Bool { get set }
| `- note: requirement 'showsLineNumbers' declared here
35 | var showsInvisibleCharacters: Bool { get set }
36 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:560:16: warning: main actor-isolated property 'showsInvisibleCharacters' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
558 | /// A Boolean value that indicates whether to substitute visible glyphs for whitespace and other typically invisible characters.
559 | @Invalidating(.layoutViewport, .display)
560 | public var showsInvisibleCharacters: Bool = false {
| `- warning: main actor-isolated property 'showsInvisibleCharacters' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
561 | willSet {
562 | textLayoutManager.invalidateLayout(for: textLayoutManager.textViewportLayoutController.viewportRange ?? textLayoutManager.documentRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:35:9: note: requirement 'showsInvisibleCharacters' declared here
33 |
34 | var showsLineNumbers: Bool { get set }
35 | var showsInvisibleCharacters: Bool { get set }
| `- note: requirement 'showsInvisibleCharacters' declared here
36 |
37 | var font: Font { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:95:22: warning: main actor-isolated property 'font' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
93 | /// If you want to apply the font to only a portion of the text, you must create a new attributed string with the desired style information and assign it
94 | @MainActor
95 | @objc public var font: NSFont {
| `- warning: main actor-isolated property 'font' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
96 | get {
97 | _defaultTypingAttributes[.font] as! NSFont
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:37:9: note: requirement 'font' declared here
35 | var showsInvisibleCharacters: Bool { get set }
36 |
37 | var font: Font { get set }
| `- note: requirement 'font' declared here
38 | var textColor: Color { get set }
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:118:22: warning: main actor-isolated property 'textColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
116 | /// Default text color.
117 | @MainActor
118 | @objc public var textColor: NSColor {
| `- warning: main actor-isolated property 'textColor' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
119 | get {
120 | _defaultTypingAttributes[.foregroundColor] as! NSColor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:38:9: note: requirement 'textColor' declared here
36 |
37 | var font: Font { get set }
38 | var textColor: Color { get set }
| `- note: requirement 'textColor' declared here
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
40 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:139:22: warning: main actor-isolated property 'defaultParagraphStyle' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
137 | /// Default paragraph style.
138 | @MainActor
139 | @objc public var defaultParagraphStyle: NSParagraphStyle {
| `- warning: main actor-isolated property 'defaultParagraphStyle' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
140 | set {
141 | _defaultTypingAttributes[.paragraphStyle] = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:39:9: note: requirement 'defaultParagraphStyle' declared here
37 | var font: Font { get set }
38 | var textColor: Color { get set }
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
| `- note: requirement 'defaultParagraphStyle' declared here
40 |
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:159:36: warning: main actor-isolated property 'typingAttributes' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
157 | /// This dictionary contains the attribute keys (and corresponding values) to apply to newly typed text.
158 | /// When the text view’s selection changes, the contents of the dictionary are reset automatically.
159 | @objc public internal(set) var typingAttributes: [NSAttributedString.Key: Any] {
| `- warning: main actor-isolated property 'typingAttributes' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
160 | get {
161 | _typingAttributes.merging(_defaultTypingAttributes) { (current, _) in current }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:41:9: note: requirement 'typingAttributes' declared here
39 | var defaultParagraphStyle: NSParagraphStyle { get set }
40 |
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
| `- note: requirement 'typingAttributes' declared here
42 |
43 | var text: String? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:250:20: warning: main actor-isolated property 'text' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
248 | /// For performance reasons, this value is the current backing store of the text object.
249 | /// If you want to maintain a snapshot of this as you manipulate the text storage, you should make a copy of the appropriate substring.
250 | @objc open var text: String? {
| `- warning: main actor-isolated property 'text' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
251 | set {
252 | let prevLocation = textLayoutManager.insertionPointLocations.first
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:43:9: note: requirement 'text' declared here
41 | var typingAttributes: [NSAttributedString.Key: Any] { get }
42 |
43 | var text: String? { get set }
| `- note: requirement 'text' declared here
44 | var attributedText: NSAttributedString? { get set }
45 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:272:20: warning: main actor-isolated property 'attributedText' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
270 | ///
271 | /// Assigning a new value to this property also replaces the value of the `text` property with the same string data, albeit without any formatting information. In addition, the `font`, `textColor`, and `textAlignment` properties are updated to reflect the typing attributes of the text view.
272 | @objc open var attributedText: NSAttributedString? {
| `- warning: main actor-isolated property 'attributedText' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
273 | set {
274 | let prevLocation = textLayoutManager.insertionPointLocations.first
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:44:9: note: requirement 'attributedText' declared here
42 |
43 | var text: String? { get set }
44 | var attributedText: NSAttributedString? { get set }
| `- note: requirement 'attributedText' declared here
45 |
46 | var isEditable: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:44:28: warning: main actor-isolated property 'isEditable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
43 | @Invalidating(.insertionPoint, .cursorRects)
44 | @objc dynamic open var isEditable: Bool = true {
| `- warning: main actor-isolated property 'isEditable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
45 | didSet {
46 | if isEditable == true {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:46:9: note: requirement 'isEditable' declared here
44 | var attributedText: NSAttributedString? { get set }
45 |
46 | var isEditable: Bool { get set }
| `- note: requirement 'isEditable' declared here
47 | var isSelectable: Bool { get set }
48 | var allowsUndo: Bool { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:54:28: warning: main actor-isolated property 'isSelectable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
52 | /// A Boolean value that controls whether the text views allows the user to select text.
53 | @Invalidating(.insertionPoint, .cursorRects)
54 | @objc dynamic open var isSelectable: Bool = true {
| `- warning: main actor-isolated property 'isSelectable' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
55 | didSet {
56 | if isSelectable == false {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:47:9: note: requirement 'isSelectable' declared here
45 |
46 | var isEditable: Bool { get set }
47 | var isSelectable: Bool { get set }
| `- note: requirement 'isSelectable' declared here
48 | var allowsUndo: Bool { get set }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:402:28: warning: main actor-isolated property 'allowsUndo' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
400 | ///
401 | /// `true` if the receiver allows undo, otherwise `false`. Default `true`.
402 | @objc dynamic open var allowsUndo: Bool
| `- warning: main actor-isolated property 'allowsUndo' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
403 | internal var _undoManager: UndoManager?
404 | internal var _yankingManager = YankingManager()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:48:9: note: requirement 'allowsUndo' declared here
46 | var isEditable: Bool { get set }
47 | var isSelectable: Bool { get set }
48 | var allowsUndo: Bool { get set }
| `- note: requirement 'allowsUndo' declared here
49 |
50 | var textDelegate: Delegate? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:429:21: warning: main actor-isolated property 'textDelegate' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
427 |
428 | /// The delegate for all text views sharing the same layout manager.
429 | public weak var textDelegate: (any STTextViewDelegate)? {
| `- warning: main actor-isolated property 'textDelegate' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
430 | set {
431 | delegateProxy.source = newValue
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:50:9: note: requirement 'textDelegate' declared here
48 | var allowsUndo: Bool { get set }
49 |
50 | var textDelegate: Delegate? { get set }
| `- note: requirement 'textDelegate' declared here
51 |
52 | var gutterView: GutterView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:368:16: warning: main actor-isolated property 'gutterView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
366 |
367 | /// Gutter view
368 | public var gutterView: STGutterView?
| `- warning: main actor-isolated property 'gutterView' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
369 |
370 | /// The highlight color of the selected line.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:52:9: note: requirement 'gutterView' declared here
50 | var textDelegate: Delegate? { get set }
51 |
52 | var gutterView: GutterView? { get }
| `- note: requirement 'gutterView' declared here
53 | func toggleRuler(_ sender: Any?)
54 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Gutter.swift:11:23: warning: main actor-isolated instance method 'toggleRuler' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
9 |
10 | /// This action method shows or hides the ruler, if the receiver is enclosed in a scroll view.
11 | @objc public func toggleRuler(_ sender: Any?) {
| |- warning: main actor-isolated instance method 'toggleRuler' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'toggleRuler' to make this instance method not isolated to the actor
12 | isGutterVisible.toggle()
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:53:10: note: mark the protocol requirement 'toggleRuler' 'async' to allow actor-isolated conformances
51 |
52 | var gutterView: GutterView? { get }
53 | func toggleRuler(_ sender: Any?)
| `- note: mark the protocol requirement 'toggleRuler' 'async' to allow actor-isolated conformances
54 |
55 | var textSelection: NSRange { get set }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:962:16: warning: main actor-isolated property 'textSelection' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
960 | ///
961 | /// If the length of the selection range is 0, indicating that the selection is actually an insertion point
962 | public var textSelection: NSRange {
| `- warning: main actor-isolated property 'textSelection' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
963 | set {
964 | setSelectedRange(newValue)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:55:9: note: requirement 'textSelection' declared here
53 | func toggleRuler(_ sender: Any?)
54 |
55 | var textSelection: NSRange { get set }
| `- note: requirement 'textSelection' declared here
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1007:15: warning: main actor-isolated instance method 'addAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1005 |
1006 | /// Add attribute.
1007 | open func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange) {
| |- warning: main actor-isolated instance method 'addAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'addAttributes(_:range:)' to make this instance method not isolated to the actor
1008 | addAttributes(attrs, range: range, updateLayout: true)
1009 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:57:10: note: mark the protocol requirement 'addAttributes(_:range:)' 'async' to allow actor-isolated conformances
55 | var textSelection: NSRange { get set }
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
| `- note: mark the protocol requirement 'addAttributes(_:range:)' 'async' to allow actor-isolated conformances
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1042:15: warning: main actor-isolated instance method 'setAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1040 |
1041 | /// Set attributes.
1042 | open func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange) {
| |- warning: main actor-isolated instance method 'setAttributes(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'setAttributes(_:range:)' to make this instance method not isolated to the actor
1043 | setAttributes(attrs, range: range, updateLayout: true)
1044 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:58:10: note: mark the protocol requirement 'setAttributes(_:range:)' 'async' to allow actor-isolated conformances
56 |
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
| `- note: mark the protocol requirement 'setAttributes(_:range:)' 'async' to allow actor-isolated conformances
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
60 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1078:15: warning: main actor-isolated instance method 'removeAttribute(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1076 |
1077 | /// Remove attributes.
1078 | open func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange) {
| |- warning: main actor-isolated instance method 'removeAttribute(_:range:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'removeAttribute(_:range:)' to make this instance method not isolated to the actor
1079 | removeAttribute(attribute, range: range, updateLayout: true)
1080 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:59:10: note: mark the protocol requirement 'removeAttribute(_:range:)' 'async' to allow actor-isolated conformances
57 | func addAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
58 | func setAttributes(_ attrs: [NSAttributedString.Key: Any], range: NSRange)
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
| `- note: mark the protocol requirement 'removeAttribute(_:range:)' 'async' to allow actor-isolated conformances
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1527:15: warning: main actor-isolated instance method 'shouldChangeText(in:replacementString:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1525 | /// this method should be called with information on the change.
1526 | /// Coalesce consecutive typing events
1527 | open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
| |- warning: main actor-isolated instance method 'shouldChangeText(in:replacementString:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'shouldChangeText(in:replacementString:)' to make this instance method not isolated to the actor
1528 | let result = delegateProxy.textView(self, shouldChangeTextIn: affectedTextRange, replacementString: replacementString)
1529 | if !result {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:61:10: note: mark the protocol requirement 'shouldChangeText(in:replacementString:)' 'async' to allow actor-isolated conformances
59 | func removeAttribute(_ attribute: NSAttributedString.Key, range: NSRange)
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
| `- note: mark the protocol requirement 'shouldChangeText(in:replacementString:)' 'async' to allow actor-isolated conformances
62 | func replaceCharacters(in range: NSTextRange, with string: String)
63 | func insertText(_ string: Any, replacementRange: NSRange)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1452:15: warning: main actor-isolated instance method 'replaceCharacters(in:with:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
1450 | }
1451 |
1452 | open func replaceCharacters(in range: NSTextRange, with string: String) {
| |- warning: main actor-isolated instance method 'replaceCharacters(in:with:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'replaceCharacters(in:with:)' to make this instance method not isolated to the actor
1453 | replaceCharacters(in: range, with: string, useTypingAttributes: true, allowsTypingCoalescing: false)
1454 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:62:10: note: mark the protocol requirement 'replaceCharacters(in:with:)' 'async' to allow actor-isolated conformances
60 |
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
62 | func replaceCharacters(in range: NSTextRange, with string: String)
| `- note: mark the protocol requirement 'replaceCharacters(in:with:)' 'async' to allow actor-isolated conformances
63 | func insertText(_ string: Any, replacementRange: NSRange)
64 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextInputClient.swift:197:21: warning: main actor-isolated instance method 'insertText(_:replacementRange:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
195 | }
196 |
197 | @objc open func insertText(_ string: Any, replacementRange: NSRange) {
| |- warning: main actor-isolated instance method 'insertText(_:replacementRange:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextViewProtocol'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'insertText(_:replacementRange:)' to make this instance method not isolated to the actor
198 | unmarkText()
199 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/STTextViewProtocol.swift:63:10: note: mark the protocol requirement 'insertText(_:replacementRange:)' 'async' to allow actor-isolated conformances
61 | func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool
62 | func replaceCharacters(in range: NSTextRange, with string: String)
63 | func insertText(_ string: Any, replacementRange: NSRange)
| `- note: mark the protocol requirement 'insertText(_:replacementRange:)' 'async' to allow actor-isolated conformances
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:730:13: warning: main actor-isolated property '_yankingManager' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
402 | @objc dynamic open var allowsUndo: Bool
403 | internal var _undoManager: UndoManager?
404 | internal var _yankingManager = YankingManager()
| `- note: property declared here
405 |
406 | internal var markedText: STMarkedText? = nil
:
728 | guard let self = self else { return }
729 |
730 | _yankingManager.selectionChanged()
| `- warning: main actor-isolated property '_yankingManager' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
731 |
732 | let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:732:64: warning: main actor-isolated static property 'didChangeSelectionNotification' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
35 |
36 | /// Sent when the selection range of characters changes.
37 | public static let didChangeSelectionNotification = STTextLayoutManager.didChangeSelectionNotification
| `- note: static property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
:
730 | _yankingManager.selectionChanged()
731 |
732 | let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
| `- warning: main actor-isolated static property 'didChangeSelectionNotification' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
733 |
734 | NotificationCenter.default.post(textViewNotification)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:735:18: warning: main actor-isolated property 'delegateProxy' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
438 |
439 | /// Proxy for delegate calls
440 | internal let delegateProxy = STTextViewDelegateProxy(source: nil)
| `- note: property declared here
441 |
442 | /// The manager that lays out text for the text view's text container.
:
733 |
734 | NotificationCenter.default.post(textViewNotification)
735 | self.delegateProxy.textViewDidChangeSelection(textViewNotification)
| `- warning: main actor-isolated property 'delegateProxy' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
736 |
737 | NSAccessibility.post(element: self, notification: .selectedTextChanged)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:740:21: warning: main actor-isolated property 'shouldDimissCompletionOnSelectionChange' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
520 | ///
521 | /// Automatically call ``cancelComplete(_:)`` when `true`.
522 | open var shouldDimissCompletionOnSelectionChange: Bool = true
| `- note: property declared here
523 |
524 | internal var _completionTask: Task<Void, any Error>?
:
738 |
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
| `- warning: main actor-isolated property 'shouldDimissCompletionOnSelectionChange' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:741:26: warning: main actor-isolated property 'currentEvent' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:741:20: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
739 | // Cancel completinon on selection change
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:28: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:22: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:68: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:742:62: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
740 | if self.shouldDimissCompletionOnSelectionChange {
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743:27: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743:21: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
741 | if NSApp.currentEvent == nil ||
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:744:29: warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
| `- warning: main actor-isolated property 'currentEvent' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
745 | {
746 | self.cancelComplete(textViewNotification.object)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:349:49: note: property declared here
347 | - (void)sendEvent:(NSEvent *)event;
348 | - (void)postEvent:(NSEvent *)event atStart:(BOOL)atStart;
349 | @property (nullable, readonly, strong) NSEvent *currentEvent;
| `- note: property declared here
350 | - (nullable NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(nullable NSDate *)expiration inMode:(NSRunLoopMode)mode dequeue:(BOOL)deqFlag;
351 | - (void)discardEventsMatchingMask:(NSEventMask)mask beforeEvent:(nullable NSEvent *)lastEvent;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:744:23: warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
742 | (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
743 | NSApp.currentEvent?.characters == nil ||
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
| `- warning: main actor-isolated var 'NSApp' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
745 | {
746 | self.cancelComplete(textViewNotification.object)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:191:58: note: var declared here
189 | @interface NSApplication : NSResponder <NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElement, NSAccessibility>
190 |
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
| `- note: var declared here
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:746:26: warning: call to main actor-isolated instance method 'cancelComplete' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
746 | self.cancelComplete(textViewNotification.object)
| `- warning: call to main actor-isolated instance method 'cancelComplete' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
747 | }
748 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:31:21: note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
29 | /// see ``complete(_:)``
30 | @preconcurrency @MainActor
31 | @objc open func cancelComplete(_ sender: Any?) {
| `- note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
32 | _completionTask?.cancel()
33 | completionWindowController?.close()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:756:19: warning: main actor-isolated property 'needsUpdateConstraints' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
754 | _usageBoundsForTextContainerObserver = textLayoutManager.observe(\.usageBoundsForTextContainer, options: [.initial, .new]) { [weak self] _, _ in
755 | // FB13291926: Notification no longer works. Fixed again in macOS 15.6
756 | self?.needsUpdateConstraints = true
| `- warning: main actor-isolated property 'needsUpdateConstraints' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
757 | }
758 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutConstraint.h:267:16: note: mutation of this property is only permitted within the actor
265 | - (void)updateConstraintsForSubtreeIfNeeded API_AVAILABLE(macos(10.7));
266 | - (void)updateConstraints API_AVAILABLE(macos(10.7)) NS_REQUIRES_SUPER;
267 | @property BOOL needsUpdateConstraints API_AVAILABLE(macos(10.7));
| `- note: mutation of this property is only permitted within the actor
268 | @end
269 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1154:25: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
441 |
442 | /// The manager that lays out text for the text view's text container.
443 | @objc dynamic open var textLayoutManager: NSTextLayoutManager {
| `- note: property declared here
444 | willSet {
445 | textContentManager.primaryTextLayoutManager = nil
:
1151 | for textLineFragment in layoutFragment.textLineFragments {
1152 |
1153 | func isLineSelected() -> Bool {
| `- note: add '@MainActor' to make local function 'isLineSelected()' part of global actor 'MainActor'
1154 | textLayoutManager.textSelections.flatMap(\.textRanges).reduce(true) { partialResult, selectionTextRange in
| `- warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1155 | var result = true
1156 | if textLineFragment.isExtraLineFragment {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1515:21: warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1513 | // Regular undo action
1514 | textView.replaceCharacters(
1515 | in: undoRange,
| `- warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1516 | with: previousStringInRange,
1517 | allowsTypingCoalescing: false
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h:28:12: note: class 'NSTextRange' does not conform to the 'Sendable' protocol
26 | // NSTextRange represents a contiguous range between two locations inside document contents. It consists of the starting location and terminating location. They are the two basic properties, location and endLocation, respectively. The terminating location, endLocation, is directly following the last location in the range. So, a location is contained in a range if (range.location <= location) && (location < range.endLocation).
27 | API_AVAILABLE(macos(12.0), ios(15.0), tvos(15.0), watchos(8.0), visionos(1.0))
28 | @interface NSTextRange : NSObject
| `- note: class 'NSTextRange' does not conform to the 'Sendable' protocol
29 | #pragma mark Initialization
30 | // Returns an empty range when endLocation=nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1516:23: warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1514 | textView.replaceCharacters(
1515 | in: undoRange,
1516 | with: previousStringInRange,
| `- warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1517 | allowsTypingCoalescing: false
1518 | )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h:29:12: note: class 'NSAttributedString' does not conform to the 'Sendable' protocol
27 |
28 | API_AVAILABLE(macos(10.0), ios(3.2), watchos(2.0), tvos(9.0))
29 | @interface NSAttributedString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
| `- note: class 'NSAttributedString' does not conform to the 'Sendable' protocol
30 |
31 | // Override these two APIs when subclassing NSAttributedString
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1519:43: warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1517 | allowsTypingCoalescing: false
1518 | )
1519 | textView.setSelectedTextRange(textRange, updateLayout: true)
| `- warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1520 | }
1521 | undoManager.endUndoGrouping()
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextRange.h:28:12: note: class 'NSTextRange' does not conform to the 'Sendable' protocol
26 | // NSTextRange represents a contiguous range between two locations inside document contents. It consists of the starting location and terminating location. They are the two basic properties, location and endLocation, respectively. The terminating location, endLocation, is directly following the last location in the range. So, a location is contained in a range if (range.location <= location) && (location < range.endLocation).
27 | API_AVAILABLE(macos(12.0), ios(15.0), tvos(15.0), watchos(8.0), visionos(1.0))
28 | @interface NSTextRange : NSObject
| `- note: class 'NSTextRange' does not conform to the 'Sendable' protocol
29 | #pragma mark Initialization
30 | // Returns an empty range when endLocation=nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1514:22: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1477 | }
1478 |
1479 | internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
| |- note: calls to instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
1480 | let previousStringInRange = (textContentManager as? NSTextContentStorage)!.attributedString!.attributedSubstring(from: NSRange(textRange, in: textContentManager))
1481 |
:
1512 | undoManager.registerUndo(withTarget: self) { textView in
1513 | // Regular undo action
1514 | textView.replaceCharacters(
| `- warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1515 | in: undoRange,
1516 | with: previousStringInRange,
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1519:22: warning: call to main actor-isolated instance method 'setSelectedTextRange(_:updateLayout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1517 | allowsTypingCoalescing: false
1518 | )
1519 | textView.setSelectedTextRange(textRange, updateLayout: true)
| `- warning: call to main actor-isolated instance method 'setSelectedTextRange(_:updateLayout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1520 | }
1521 | undoManager.endUndoGrouping()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Select.swift:9:19: note: calls to instance method 'setSelectedTextRange(_:updateLayout:)' from outside of its actor context are implicitly asynchronous
7 | extension STTextView {
8 |
9 | internal func setSelectedTextRange(_ textRange: NSTextRange, updateLayout: Bool) {
| |- note: calls to instance method 'setSelectedTextRange(_:updateLayout:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
10 | guard isSelectable, textRange.endLocation <= textLayoutManager.documentRange.endLocation else {
11 | return
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1617:22: warning: call to main actor-isolated instance method 'updateInsertionPointStateAndRestartTimer()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1610 | struct InsertionPoint: NSViewInvalidating {
1611 |
1612 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1613 | guard let textView = view as? STTextView else {
1614 | return
1615 | }
1616 |
1617 | textView.updateInsertionPointStateAndRestartTimer()
| `- warning: call to main actor-isolated instance method 'updateInsertionPointStateAndRestartTimer()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1618 | }
1619 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+InsertionPoint.swift:11:17: note: calls to instance method 'updateInsertionPointStateAndRestartTimer()' from outside of its actor context are implicitly asynchronous
9 |
10 | /// Updates the insertion point’s location and optionally restarts the blinking cursor timer.
11 | public func updateInsertionPointStateAndRestartTimer() {
| |- note: calls to instance method 'updateInsertionPointStateAndRestartTimer()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
12 | // Hide insertion point layers
13 | if shouldDrawInsertionPoint {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1624:26: warning: call to main actor-isolated instance method 'invalidateCursorRects(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1621 | struct CursorRects: NSViewInvalidating {
1622 |
1623 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1624 | view.window?.invalidateCursorRects(for: view)
| `- warning: call to main actor-isolated instance method 'invalidateCursorRects(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1625 | }
1626 | }
AppKit.NSWindow.invalidateCursorRects:2:22: note: calls to instance method 'invalidateCursorRects(for:)' from outside of its actor context are implicitly asynchronous
1 | class NSWindow {
2 | @MainActor open func invalidateCursorRects(for view: NSView)}
| |- note: calls to instance method 'invalidateCursorRects(for:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1624:18: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1621 | struct CursorRects: NSViewInvalidating {
1622 |
1623 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1624 | view.window?.invalidateCursorRects(for: view)
| `- warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
1625 | }
1626 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:86:61: note: property declared here
84 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
85 |
86 | @property (nullable, readonly, unsafe_unretained) NSWindow *window;
| `- note: property declared here
87 | @property (nullable, readonly, unsafe_unretained) NSView *superview;
88 | @property (copy) NSArray<__kindof NSView *> *subviews;
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1635:22: warning: call to main actor-isolated instance method 'layoutViewport()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1393 | }
1394 |
1395 | internal func layoutViewport() {
| |- note: calls to instance method 'layoutViewport()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSView'
1396 | // not matter what, the layoutViewport() is slow
1397 | textLayoutManager.textViewportLayoutController.layoutViewport()
:
1628 | struct LayoutViewport: NSViewInvalidating {
1629 |
1630 | func invalidate(view: NSView) {
| `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1631 | guard let textView = view as? STTextView else {
1632 | return
1633 | }
1634 |
1635 | textView.layoutViewport()
| `- warning: call to main actor-isolated instance method 'layoutViewport()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
1636 | }
1637 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegate.swift:145:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
142 | }
143 |
144 | func textViewCompletionViewController(_ textView: STTextView) -> any STCompletionViewControllerProtocol {
| `- note: add '@MainActor' to make instance method 'textViewCompletionViewController' part of global actor 'MainActor'
145 | STCompletionViewController()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
146 | }
147 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:32:37: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
30 | func textView(_ textView: STTextView, shouldChangeTextIn affectedCharRange: NSTextRange, replacementString: String?) -> Bool {
31 | var result = source?.textView(textView, shouldChangeTextIn: affectedCharRange, replacementString: replacementString) ?? true
32 | result = result && textView.plugins.events.reduce(result) { partialResult, events in
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
33 | partialResult && events.shouldChangeTextHandler?(affectedCharRange, replacementString) ?? true
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:41:32: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
36 | }
37 |
38 | func textView(_ textView: STTextView, willChangeTextIn affectedCharRange: NSTextRange, replacementString: String) {
| `- note: add '@MainActor' to make instance method 'textView(_:willChangeTextIn:replacementString:)' part of global actor 'MainActor'
39 | source?.textView(textView, willChangeTextIn: affectedCharRange, replacementString: replacementString)
40 |
41 | for events in textView.plugins.events {
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 | events.willChangeTextHandler?(affectedCharRange)
43 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:49:32: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 | }
45 |
46 | func textView(_ textView: STTextView, didChangeTextIn affectedCharRange: NSTextRange, replacementString: String) {
| `- note: add '@MainActor' to make instance method 'textView(_:didChangeTextIn:replacementString:)' part of global actor 'MainActor'
47 | source?.textView(textView, didChangeTextIn: affectedCharRange, replacementString: replacementString)
48 |
49 | for events in textView.plugins.events {
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
50 | events.didChangeTextHandler?(affectedCharRange, replacementString)
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:56:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 |
55 | func textView(_ textView: STTextView, menu: NSMenu, for event: NSEvent, at location: NSTextLocation) -> NSMenu? {
| `- note: add '@MainActor' to make instance method 'textView(_:menu:for:at:)' part of global actor 'MainActor'
56 | guard let textContentManager = textView.textLayoutManager.textContentManager else {
| `- warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
57 | return nil
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:443:28: note: property declared here
441 |
442 | /// The manager that lays out text for the text view's text container.
443 | @objc dynamic open var textLayoutManager: NSTextLayoutManager {
| `- note: property declared here
444 | willSet {
445 | textContentManager.primaryTextLayoutManager = nil
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:63:36: warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
53 | }
54 |
55 | func textView(_ textView: STTextView, menu: NSMenu, for event: NSEvent, at location: NSTextLocation) -> NSMenu? {
| `- note: add '@MainActor' to make instance method 'textView(_:menu:for:at:)' part of global actor 'MainActor'
56 | guard let textContentManager = textView.textLayoutManager.textContentManager else {
57 | return nil
:
61 |
62 | // Append plugins menus
63 | let pluginMenus = textView.plugins.events.compactMap { events in
| `- warning: main actor-isolated property 'plugins' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
64 | events.onContextMenuHandler?(location, textContentManager)
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:40:18: note: property declared here
38 |
39 | /// Installed plugins. events value is available after plugin is setup
40 | internal var plugins: [Plugin] = []
| `- note: property declared here
41 |
42 | /// A Boolean value that controls whether the text view allows the user to edit text.
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextViewDelegateProxy.swift:97:63: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
95 |
96 | func textViewCompletionViewController(_ textView: STTextView) -> any STCompletionViewControllerProtocol {
97 | source?.textViewCompletionViewController(textView) ?? STCompletionViewController()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
98 | }
99 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from inheritance from class 'NSResponder'
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:710:16: warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
708 |
709 | deinit {
710 | guard !plugins.isEmpty else { return }
| `- warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
711 | Task { @MainActor [plugins] in
712 | plugins.forEach { plugin in
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/Plugin/Plugin.swift:4:17: note: consider making struct 'Plugin' conform to the 'Sendable' protocol
2 | // https://github.com/krzyzanowskim/STTextView/blob/main/LICENSE.md
3 |
4 | internal struct Plugin {
| `- note: consider making struct 'Plugin' conform to the 'Sendable' protocol
5 | let instance: any STPlugin
6 | var events: STPluginEvents?
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:711:28: warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
709 | deinit {
710 | guard !plugins.isEmpty else { return }
711 | Task { @MainActor [plugins] in
| `- warning: cannot access property 'plugins' with a non-sendable type '[Plugin]' from nonisolated deinit; this is an error in the Swift 6 language mode
712 | plugins.forEach { plugin in
713 | plugin.instance.tearDown()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/Plugin/Plugin.swift:4:17: note: consider making struct 'Plugin' conform to the 'Sendable' protocol
2 | // https://github.com/krzyzanowskim/STTextView/blob/main/LICENSE.md
3 |
4 | internal struct Plugin {
| `- note: consider making struct 'Plugin' conform to the 'Sendable' protocol
5 | let instance: any STPlugin
6 | var events: STPluginEvents?
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:746:26: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
744 | !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
745 | {
746 | self.cancelComplete(textViewNotification.object)
| |- warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending main actor-isolated value of non-Sendable type 'Any?' to main actor-isolated instance method 'cancelComplete' risks causing races in between main actor-isolated and main actor-isolated uses
747 | }
748 | }
[121/122] Compiling STTextView module.swift
[122/122] Emitting module STTextView
[123/125] Compiling STTextViewSwiftUIAppKit TextViewModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | private struct FontEnvironmentKey: EnvironmentKey {
29 | static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[124/125] Emitting module STTextViewSwiftUIAppKit
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | private struct FontEnvironmentKey: EnvironmentKey {
29 | static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[125/125] Compiling STTextViewSwiftUIAppKit TextView.swift
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:175:62: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
167 | }
168 |
169 | func textViewDidChangeText(_ notification: Notification) {
| `- note: add '@MainActor' to make instance method 'textViewDidChangeText' part of global actor 'MainActor'
170 | guard let textView = notification.object as? STTextView else {
171 | return
:
173 |
174 | if !isUpdating {
175 | let newTextValue = AttributedString(textView.attributedText ?? NSAttributedString())
| `- warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
176 | DispatchQueue.main.async {
177 | self.isDidChangeText = true
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:272:20: note: property declared here
270 | ///
271 | /// Assigning a new value to this property also replaces the value of the `text` property with the same string data, albeit without any formatting information. In addition, the `font`, `textColor`, and `textAlignment` properties are updated to reflect the typing attributes of the text view.
272 | @objc open var attributedText: NSAttributedString? {
| `- note: property declared here
273 | set {
274 | let prevLocation = textLayoutManager.insertionPointLocations.first
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:177:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
175 | let newTextValue = AttributedString(textView.attributedText ?? NSAttributedString())
176 | DispatchQueue.main.async {
177 | self.isDidChangeText = true
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
178 | self.parent.text = newTextValue
179 | }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:189:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
187 |
188 | Task { @MainActor in
189 | self.isDidChangeText = true
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
190 | self.parent.selection = textView.selectedRange()
191 | }
[126/127] Compiling STTextViewSwiftUI module.swift
[127/127] Emitting module STTextViewSwiftUI
Build complete! (17.25s)
Build complete.
{
"dependencies" : [
{
"identity" : "sttextkitplus",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/krzyzanowskim/STTextKitPlus"
},
{
"identity" : "coretextswift",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/krzyzanowskim/CoreTextSwift"
}
],
"manifest_display_name" : "STTextView",
"name" : "STTextView",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
}
],
"products" : [
{
"name" : "STTextView",
"targets" : [
"STTextView",
"STTextViewSwiftUI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "STTextViewUIKitTests",
"module_type" : "SwiftTarget",
"name" : "STTextViewUIKitTests",
"path" : "Tests/STTextViewUIKitTests",
"sources" : [
"TextViewTests.swift"
],
"target_dependencies" : [
"STTextViewUIKit"
],
"type" : "test"
},
{
"c99name" : "STTextViewUIKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewUIKit",
"path" : "Sources/STTextViewUIKit",
"product_dependencies" : [
"STTextKitPlus",
"CoreTextSwift"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"Gutter/STGutterLineNumberCell.swift",
"Gutter/STGutterMarker.swift",
"Gutter/STGutterView.swift",
"Logger.swift",
"Overlays/STContentView.swift",
"Overlays/STLineHighlightView.swift",
"Plugin/Plugin.swift",
"Plugin/STPlugin.swift",
"Plugin/STPluginContext.swift",
"Plugin/STPluginEvents.swift",
"STTextInputTokenizer.swift",
"STTextLayoutFragment.swift",
"STTextLayoutFragmentView.swift",
"STTextLocation.swift",
"STTextLocationRange.swift",
"STTextSelectionRect.swift",
"STTextView+Gutter.swift",
"STTextView+NSTextLayoutManagerDelegate.swift",
"STTextView+NSTextViewportLayoutControllerDelegate.swift",
"STTextView+UIKeyInput.swift",
"STTextView+UIResponderStandardEditActions.swift",
"STTextView+UITextInput.swift",
"STTextView+UITextInputTraits.swift",
"STTextView+UITextInteractionDelegate.swift",
"STTextView+Undo.swift",
"STTextView.swift",
"STTextViewDelegate.swift",
"STTextViewDelegateProxy.swift",
"UITextDirection+Conversion.swift"
],
"target_dependencies" : [
"STTextViewCommon",
"STObjCLandShim"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUIUIKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUIUIKit",
"path" : "Sources/STTextViewSwiftUIUIKit",
"product_memberships" : [
"STTextView"
],
"sources" : [
"TextView.swift",
"TextViewModifier.swift"
],
"target_dependencies" : [
"STTextView"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUIAppKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUIAppKit",
"path" : "Sources/STTextViewSwiftUIAppKit",
"product_memberships" : [
"STTextView"
],
"sources" : [
"TextView.swift",
"TextViewModifier.swift"
],
"target_dependencies" : [
"STTextView"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUI",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUI",
"path" : "Sources/STTextViewSwiftUI",
"product_memberships" : [
"STTextView"
],
"sources" : [
"module.swift"
],
"target_dependencies" : [
"STTextViewSwiftUIAppKit",
"STTextViewSwiftUIUIKit"
],
"type" : "library"
},
{
"c99name" : "STTextViewCommon",
"module_type" : "SwiftTarget",
"name" : "STTextViewCommon",
"path" : "Sources/STTextViewCommon",
"product_dependencies" : [
"STTextKitPlus"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"CoalescingUndoManager.swift",
"Extensions/Geometric+Helpers.swift",
"Extensions/NSAttributedString+Helpers.swift",
"Extensions/NSParagraphStyle+Helpers.swift",
"Extensions/NSRange+Helpers.swift",
"Extensions/NSTextLayoutManager+Selection.swift",
"Extensions/NStextLayoutFragment+isExtraLineFragment.swift",
"STAttributedTextElement.swift",
"STMarkedText.swift",
"STTextContentStorage.swift",
"STTextLayoutManager.swift",
"STTextViewProtocol.swift",
"Utilities/ApproximateEquality.swift",
"Utilities/LineHeight.swift",
"Utilities/PixelAlign.swift",
"Utilities/STRulerInsets.swift"
],
"type" : "library"
},
{
"c99name" : "STTextViewAppKitTests",
"module_type" : "SwiftTarget",
"name" : "STTextViewAppKitTests",
"path" : "Tests/STTextViewAppKitTests",
"sources" : [
"ContentTests.swift",
"Helpers/NSEvent+Create.swift",
"TextSelectionNavigationTests.swift",
"TextViewTests.swift",
"TypingAttributesTests.swift",
"UndoTests.swift"
],
"target_dependencies" : [
"STTextViewAppKit"
],
"type" : "test"
},
{
"c99name" : "STTextViewAppKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewAppKit",
"path" : "Sources/STTextViewAppKit",
"product_dependencies" : [
"STTextKitPlus",
"CoreTextSwift"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"DragSelectedTextGestureRecognizer.swift",
"Extensions/NSEdgeInsets+orientation.swift",
"Extensions/NSResponder+debug.swift",
"Extensions/NSTextContentManager+Helpers.swift",
"Extensions/NSTextLayoutManager+Helpers.swift",
"Extensions/NSTextLayoutManager+InsertionPoint.swift",
"Extensions/NSView+Image.swift",
"Gutter/STGutterContainerView.swift",
"Gutter/STGutterLineNumberCell.swift",
"Gutter/STGutterMarker.swift",
"Gutter/STGutterMarkerContainerView.swift",
"Gutter/STGutterSeparatorView.swift",
"Gutter/STGutterView.swift",
"Logger.swift",
"Overlays/STContentView.swift",
"Overlays/STContentViewportView.swift",
"Overlays/STLineHighlightView.swift",
"Overlays/STSelectionHighlightView.swift",
"Overlays/STSelectionView.swift",
"Plugin/Plugin.swift",
"Plugin/STPlugin.swift",
"Plugin/STPluginContext.swift",
"Plugin/STPluginEvents.swift",
"STCompletion/STCompletionItem.swift",
"STCompletion/STCompletionViewController.swift",
"STCompletion/STCompletionViewControllerDelegate.swift",
"STCompletion/STCompletionViewControllerProtocol.swift",
"STCompletion/Window/STCompletionWindow.swift",
"STCompletion/Window/STCompletionWindowController.swift",
"STInsertionPointIndicatorProtocol.swift",
"STInsertionPointView.swift",
"STTextAttachmentViewInteraction.swift",
"STTextContainer.swift",
"STTextFinderBarContainer.swift",
"STTextFinderClient.swift",
"STTextLayoutFragment.swift",
"STTextLayoutFragmentView.swift",
"STTextRenderView.swift",
"STTextView+Accessibility.swift",
"STTextView+Attachment.swift",
"STTextView+Capitalization.swift",
"STTextView+Complete.swift",
"STTextView+CopyPaste.swift",
"STTextView+Delete.swift",
"STTextView+DragGestureRecognizer.swift",
"STTextView+Find.swift",
"STTextView+FontPanel.swift",
"STTextView+Format.swift",
"STTextView+Gutter.swift",
"STTextView+Insert.swift",
"STTextView+InsertionPoint.swift",
"STTextView+Key.swift",
"STTextView+Mouse.swift",
"STTextView+NSColorChanging.swift",
"STTextView+NSDraggingDestination.swift",
"STTextView+NSDraggingSource.swift",
"STTextView+NSServicesMenuRequestor.swift",
"STTextView+NSTextCheckingClient.swift",
"STTextView+NSTextInputClient.swift",
"STTextView+NSTextLayoutManagerDelegate.swift",
"STTextView+NSTextLayoutOrientationProvider.swift",
"STTextView+NSTextViewportLayoutControllerDelegate.swift",
"STTextView+NSUserInterfaceValidations.swift",
"STTextView+Scrolling.swift",
"STTextView+Select.swift",
"STTextView+Speech.swift",
"STTextView+Undo.swift",
"STTextView+Yank.swift",
"STTextView.swift",
"STTextViewDelegate.swift",
"STTextViewDelegateProxy.swift",
"Utility/NSColor+TextInsertionPoint.swift",
"YankingManager.swift"
],
"target_dependencies" : [
"STTextViewCommon",
"STObjCLandShim"
],
"type" : "library"
},
{
"c99name" : "STTextView",
"module_type" : "SwiftTarget",
"name" : "STTextView",
"path" : "Sources/STTextView",
"product_memberships" : [
"STTextView"
],
"sources" : [
"module.swift"
],
"target_dependencies" : [
"STTextViewAppKit",
"STTextViewUIKit"
],
"type" : "library"
},
{
"c99name" : "STObjCLandShim",
"module_type" : "ClangTarget",
"name" : "STObjCLandShim",
"path" : "Sources/STObjCLandShim",
"product_memberships" : [
"STTextView"
],
"sources" : [
"STObjCLandShim.m"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.