The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of STTextView, reference main (267c78), with Swift 6.1 for macOS (SPM) on 8 Jun 2025 23:01:35 UTC.

Swift 6 data race errors: 95

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

   |                `- note: requirement 'textDidChangeNotification' declared here
21 |
22 |     var textLayoutManager: NSTextLayoutManager { get }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442: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
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @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
 443 |         willSet {
 444 |             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:461: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
 459 |
 460 |     /// The text view's text storage object.
 461 |     @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
 462 |         willSet {
 463 |             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:473: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
 471 |
 472 |     /// The text view's text container
 473 |     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
 474 |         get {
 475 |             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:296: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
 294 |     ///
 295 |     /// - 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)
 296 |     @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
 297 |         set {
 298 |             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:311: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
 309 |
 310 |     /// A Boolean that controls whether the receiver changes its width to fit the width of its text.
 311 |     @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
 312 |         set {
 313 |             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:328: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
 326 |     ///
 327 |     /// - 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)
 328 |     @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
 329 |         set {
 330 |             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:343: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
 341 |
 342 |     /// A Boolean that controls whether the receiver changes its height to fit the height of its text.
 343 |     @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
 344 |         set {
 345 |             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:355: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
 353 |     /// A Boolean that controls whether the text view highlights the currently selected line.
 354 |     @MainActor @Invalidating(.layout)
 355 |     @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
 356 |
 357 |     /// 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:373: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
 371 |     /// Note: Needs ``highlightSelectedLine`` to be set to `true`
 372 |     @Invalidating(.display)
 373 |     @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
 374 |
 375 |     /// 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:359: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
 357 |     /// Enable to show line numbers in the gutter.
 358 |     @MainActor @Invalidating(.layout)
 359 |     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
 360 |         didSet {
 361 |             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:550: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
 548 |     /// A Boolean value that indicates whether to substitute visible glyphs for whitespace and other typically invisible characters.
 549 |     @Invalidating(.layout, .display)
 550 |     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
 551 |         willSet {
 552 |             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:93: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
  91 |     /// 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
  92 |     @MainActor
  93 |     @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
  94 |         get {
  95 |             _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:116: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
 114 |     /// Default text color.
 115 |     @MainActor
 116 |     @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
 117 |         get {
 118 |             _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:137: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
 135 |     /// Default paragraph style.
 136 |     @MainActor
 137 |     @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
 138 |         set {
 139 |             _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:157: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
 155 |     /// This dictionary contains the attribute keys (and corresponding values) to apply to newly typed text.
 156 |     /// When the text view’s selection changes, the contents of the dictionary are reset automatically.
 157 |     @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
 158 |         get {
 159 |             _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:248: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
 246 |     /// For performance reasons, this value is the current backing store of the text object.
 247 |     /// If you want to maintain a snapshot of this as you manipulate the text storage, you should make a copy of the appropriate substring.
 248 |     @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
 249 |         set {
 250 |             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:270: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
 268 |     ///
 269 |     /// 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.
 270 |     @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
 271 |         set {
 272 |             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:42: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
  40 |     /// A Boolean value that controls whether the text view allows the user to edit text.
  41 |     @Invalidating(.insertionPoint, .cursorRects)
  42 |     @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
  43 |         didSet {
  44 |             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:52: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
  50 |     /// A Boolean value that controls whether the text views allows the user to select text.
  51 |     @Invalidating(.insertionPoint, .cursorRects)
  52 |     @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
  53 |         didSet {
  54 |             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:401: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
 399 |     ///
 400 |     /// `true` if the receiver allows undo, otherwise `false`. Default `true`.
 401 |     @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
 402 |     internal var _undoManager: UndoManager?
 403 |     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:428: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
 426 |
 427 |     /// The delegate for all text views sharing the same layout manager.
 428 |     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
 429 |         set {
 430 |             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:366: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
 364 |
 365 |     /// Gutter view
 366 |     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
 367 |     internal var scrollViewFrameObserver: NSKeyValueObservation?
 368 |
/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:939: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
 937 |     ///
 938 |     /// If the length of the selection range is 0, indicating that the selection is actually an insertion point
 939 |     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
 940 |         set {
 941 |             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:968: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
 966 |
 967 |     /// Add attribute. Need `needsViewportLayout = true` to reflect changes.
 968 |     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
 969 |         addAttributes(attrs, range: range, updateLayout: true)
 970 |     }
/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:996: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
 994 |
 995 |     /// Set attributes.
 996 |     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
 997 |         setAttributes(attrs, range: range, updateLayout: true)
 998 |     }
/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:1023: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
1021 |
1022 |     /// Set attributes. Need `needsViewportLayout = true` to reflect changes.
1023 |     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
1024 |         removeAttribute(attribute, range: range, updateLayout: true)
1025 |     }
/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:1462: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
1460 |     /// this method should be called with information on the change.
1461 |     /// Coalesce consecutive typing events
1462 |     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
1463 |         let result = delegateProxy.textView(self, shouldChangeTextIn: affectedTextRange, replacementString: replacementString)
1464 |         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:1387: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
1385 |     }
1386 |
1387 |     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
1388 |         replaceCharacters(in: range, with: string, useTypingAttributes: true, allowsTypingCoalescing: false)
1389 |     }
/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:717: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
 401 |     @objc dynamic open var allowsUndo: Bool
 402 |     internal var _undoManager: UndoManager?
 403 |     internal var _yankingManager = YankingManager()
     |                  `- note: property declared here
 404 |
 405 |     internal var markedText: STMarkedText? = nil
     :
 715 |             guard let self = self else { return }
 716 |
 717 |             _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
 718 |
 719 |             let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:719: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
  33 |
  34 |     /// Sent when the selection range of characters changes.
  35 |     public static let didChangeSelectionNotification = STTextLayoutManager.didChangeSelectionNotification
     |                       `- note: static property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
     :
 717 |             _yankingManager.selectionChanged()
 718 |
 719 |             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
 720 |
 721 |             NotificationCenter.default.post(textViewNotification)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:722: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
 437 |
 438 |     /// Proxy for delegate calls
 439 |     internal let delegateProxy = STTextViewDelegateProxy(source: nil)
     |                  `- note: property declared here
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
     :
 720 |
 721 |             NotificationCenter.default.post(textViewNotification)
 722 |             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
 723 |
 724 |             NSAccessibility.post(element: self, notification: .selectedTextChanged)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:727: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
 510 |     ///
 511 |     /// Automatically call ``cancelComplete(_:)`` when `true`.
 512 |     open var shouldDimissCompletionOnSelectionChange: Bool = true
     |              `- note: property declared here
 513 |
 514 |     internal var _completionTask: Task<Void, any Error>?
     :
 725 |
 726 |             // Cancel completinon on selection change
 727 |             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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:728: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
 726 |             // Cancel completinon on selection change
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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:728: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
 726 |             // Cancel completinon on selection change
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:730: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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
/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:730: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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
/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:731: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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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
 732 |                 {
 733 |                     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:731: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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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
 732 |                 {
 733 |                     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:733: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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
 733 |                     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
 734 |                 }
 735 |             }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:34:21: note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
 32 |     /// see ``complete(_:)``
 33 |     @preconcurrency @MainActor
 34 |     @objc open func cancelComplete(_ sender: Any?) {
    |                     `- note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
 35 |         _completionTask?.cancel()
 36 |         completionWindowController?.close()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743: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
 741 |         usageBoundsForTextContainerObserver = textLayoutManager.observe(\.usageBoundsForTextContainer, options: [.initial, .new]) { [weak self] _, _ in
 742 |             // FB13291926: this notification no longer works
 743 |             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
 744 |         }
 745 |     }
/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:1101: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
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @objc dynamic open var textLayoutManager: NSTextLayoutManager {
     |                            `- note: property declared here
 443 |         willSet {
 444 |             textContentManager.primaryTextLayoutManager = nil
     :
1098 |                 for textLineFragment in layoutFragment.textLineFragments {
1099 |
1100 |                     func isLineSelected() -> Bool {
     |                          `- note: add '@MainActor' to make local function 'isLineSelected()' part of global actor 'MainActor'
1101 |                         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
1102 |                             var result = true
1103 |                             if textLineFragment.isExtraLineFragment {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1450:21: warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1448 |             // Regular undo action
1449 |             textView.replaceCharacters(
1450 |                 in: undoRange,
     |                     `- warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1451 |                 with: previousStringInRange,
1452 |                 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:1451:23: warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1449 |             textView.replaceCharacters(
1450 |                 in: undoRange,
1451 |                 with: previousStringInRange,
     |                       `- warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1452 |                 allowsTypingCoalescing: false
1453 |             )
/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:1454:43: warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1452 |                 allowsTypingCoalescing: false
1453 |             )
1454 |             textView.setSelectedTextRange(textRange, updateLayout: true)
     |                                           `- warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1455 |         }
1456 |         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:1449: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
1412 |     }
1413 |
1414 |     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'
1415 |         let previousStringInRange = (textContentManager as? NSTextContentStorage)!.attributedString!.attributedSubstring(from: NSRange(textRange, in: textContentManager))
1416 |
     :
1447 |         undoManager.registerUndo(withTarget: self) { textView in
1448 |             // Regular undo action
1449 |             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
1450 |                 in: undoRange,
1451 |                 with: previousStringInRange,
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1454: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
1452 |                 allowsTypingCoalescing: false
1453 |             )
1454 |             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
1455 |         }
1456 |         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:1546: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
1539 |     struct InsertionPoint: NSViewInvalidating {
1540 |
1541 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1542 |             guard let textView = view as? STTextView else {
1543 |                 return
1544 |             }
1545 |
1546 |             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
1547 |         }
1548 |     }
/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:1553: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
1550 |     struct CursorRects: NSViewInvalidating {
1551 |
1552 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1553 |             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
1554 |         }
1555 |     }
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:1553: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
1550 |     struct CursorRects: NSViewInvalidating {
1551 |
1552 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1553 |             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
1554 |         }
1555 |     }
/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/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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:442:28: note: property declared here
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @objc dynamic open var textLayoutManager: NSTextLayoutManager {
     |                            `- note: property declared here
 443 |         willSet {
 444 |             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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:697: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
 695 |
 696 |     deinit {
 697 |         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
 698 |         Task { @MainActor [plugins] in
 699 |             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:698: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
 696 |     deinit {
 697 |         guard !plugins.isEmpty else { return }
 698 |         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
 699 |             plugins.forEach { plugin in
 700 |                 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:733:26: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
 733 |                     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
 734 |                 }
 735 |             }
[123/123] 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:27:38: note: add '@preconcurrency' to the 'NSTextInput' conformance to defer isolation checking to run time
  25 |
  26 | /// A TextKit2 text view without NSTextView baggage
  27 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
     |                                      `- note: add '@preconcurrency' to the 'NSTextInput' conformance to defer isolation checking to run time
  28 |     /// Posted before an object performs any operation that changes characters or formatting attributes.
  29 |     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:396: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
  25 |
  26 | /// A TextKit2 text view without NSTextView baggage
  27 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
     |                                                   `- note: add '@preconcurrency' to the 'NSTextContent' conformance to defer isolation checking to run time
  28 |     /// Posted before an object performs any operation that changes characters or formatting attributes.
  29 |     public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
     :
 394 |
 395 |     /// The semantic meaning for a text input area.
 396 |     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
 397 |
 398 |     /// 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:35: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
  25 |
  26 | /// A TextKit2 text view without NSTextView baggage
  27 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
     |                                                                  `- note: add '@preconcurrency' to the 'STTextViewProtocol' conformance to defer isolation checking to run time
  28 |     /// Posted before an object performs any operation that changes characters or formatting attributes.
  29 |     public static let textWillChangeNotification = NSNotification.Name("NSTextWillChangeNotification")
     :
  33 |
  34 |     /// Sent when the selection range of characters changes.
  35 |     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
  36 |
  37 |     /// 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:29: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
  27 | @objc open class STTextView: NSView, NSTextInput, NSTextContent, STTextViewProtocol {
  28 |     /// Posted before an object performs any operation that changes characters or formatting attributes.
  29 |     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
  30 |
  31 |     /// 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:32: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
  30 |
  31 |     /// Sent when the text in the receiving control changes.
  32 |     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
  33 |
  34 |     /// 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:442: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
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @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
 443 |         willSet {
 444 |             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:461: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
 459 |
 460 |     /// The text view's text storage object.
 461 |     @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
 462 |         willSet {
 463 |             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:473: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
 471 |
 472 |     /// The text view's text container
 473 |     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
 474 |         get {
 475 |             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:296: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
 294 |     ///
 295 |     /// - 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)
 296 |     @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
 297 |         set {
 298 |             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:311: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
 309 |
 310 |     /// A Boolean that controls whether the receiver changes its width to fit the width of its text.
 311 |     @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
 312 |         set {
 313 |             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:328: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
 326 |     ///
 327 |     /// - 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)
 328 |     @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
 329 |         set {
 330 |             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:343: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
 341 |
 342 |     /// A Boolean that controls whether the receiver changes its height to fit the height of its text.
 343 |     @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
 344 |         set {
 345 |             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:355: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
 353 |     /// A Boolean that controls whether the text view highlights the currently selected line.
 354 |     @MainActor @Invalidating(.layout)
 355 |     @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
 356 |
 357 |     /// 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:373: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
 371 |     /// Note: Needs ``highlightSelectedLine`` to be set to `true`
 372 |     @Invalidating(.display)
 373 |     @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
 374 |
 375 |     /// 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:359: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
 357 |     /// Enable to show line numbers in the gutter.
 358 |     @MainActor @Invalidating(.layout)
 359 |     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
 360 |         didSet {
 361 |             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:550: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
 548 |     /// A Boolean value that indicates whether to substitute visible glyphs for whitespace and other typically invisible characters.
 549 |     @Invalidating(.layout, .display)
 550 |     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
 551 |         willSet {
 552 |             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:93: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
  91 |     /// 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
  92 |     @MainActor
  93 |     @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
  94 |         get {
  95 |             _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:116: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
 114 |     /// Default text color.
 115 |     @MainActor
 116 |     @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
 117 |         get {
 118 |             _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:137: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
 135 |     /// Default paragraph style.
 136 |     @MainActor
 137 |     @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
 138 |         set {
 139 |             _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:157: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
 155 |     /// This dictionary contains the attribute keys (and corresponding values) to apply to newly typed text.
 156 |     /// When the text view’s selection changes, the contents of the dictionary are reset automatically.
 157 |     @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
 158 |         get {
 159 |             _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:248: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
 246 |     /// For performance reasons, this value is the current backing store of the text object.
 247 |     /// If you want to maintain a snapshot of this as you manipulate the text storage, you should make a copy of the appropriate substring.
 248 |     @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
 249 |         set {
 250 |             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:270: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
 268 |     ///
 269 |     /// 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.
 270 |     @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
 271 |         set {
 272 |             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:42: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
  40 |     /// A Boolean value that controls whether the text view allows the user to edit text.
  41 |     @Invalidating(.insertionPoint, .cursorRects)
  42 |     @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
  43 |         didSet {
  44 |             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:52: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
  50 |     /// A Boolean value that controls whether the text views allows the user to select text.
  51 |     @Invalidating(.insertionPoint, .cursorRects)
  52 |     @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
  53 |         didSet {
  54 |             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:401: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
 399 |     ///
 400 |     /// `true` if the receiver allows undo, otherwise `false`. Default `true`.
 401 |     @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
 402 |     internal var _undoManager: UndoManager?
 403 |     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:428: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
 426 |
 427 |     /// The delegate for all text views sharing the same layout manager.
 428 |     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
 429 |         set {
 430 |             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:366: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
 364 |
 365 |     /// Gutter view
 366 |     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
 367 |     internal var scrollViewFrameObserver: NSKeyValueObservation?
 368 |
/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:939: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
 937 |     ///
 938 |     /// If the length of the selection range is 0, indicating that the selection is actually an insertion point
 939 |     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
 940 |         set {
 941 |             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:968: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
 966 |
 967 |     /// Add attribute. Need `needsViewportLayout = true` to reflect changes.
 968 |     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
 969 |         addAttributes(attrs, range: range, updateLayout: true)
 970 |     }
/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:996: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
 994 |
 995 |     /// Set attributes.
 996 |     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
 997 |         setAttributes(attrs, range: range, updateLayout: true)
 998 |     }
/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:1023: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
1021 |
1022 |     /// Set attributes. Need `needsViewportLayout = true` to reflect changes.
1023 |     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
1024 |         removeAttribute(attribute, range: range, updateLayout: true)
1025 |     }
/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:1462: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
1460 |     /// this method should be called with information on the change.
1461 |     /// Coalesce consecutive typing events
1462 |     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
1463 |         let result = delegateProxy.textView(self, shouldChangeTextIn: affectedTextRange, replacementString: replacementString)
1464 |         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:1387: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
1385 |     }
1386 |
1387 |     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
1388 |         replaceCharacters(in: range, with: string, useTypingAttributes: true, allowsTypingCoalescing: false)
1389 |     }
/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:717: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
 401 |     @objc dynamic open var allowsUndo: Bool
 402 |     internal var _undoManager: UndoManager?
 403 |     internal var _yankingManager = YankingManager()
     |                  `- note: property declared here
 404 |
 405 |     internal var markedText: STMarkedText? = nil
     :
 715 |             guard let self = self else { return }
 716 |
 717 |             _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
 718 |
 719 |             let textViewNotification = Notification(name: Self.didChangeSelectionNotification, object: self, userInfo: notification.userInfo)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:719: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
  33 |
  34 |     /// Sent when the selection range of characters changes.
  35 |     public static let didChangeSelectionNotification = STTextLayoutManager.didChangeSelectionNotification
     |                       `- note: static property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
     :
 717 |             _yankingManager.selectionChanged()
 718 |
 719 |             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
 720 |
 721 |             NotificationCenter.default.post(textViewNotification)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:722: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
 437 |
 438 |     /// Proxy for delegate calls
 439 |     internal let delegateProxy = STTextViewDelegateProxy(source: nil)
     |                  `- note: property declared here
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
     :
 720 |
 721 |             NotificationCenter.default.post(textViewNotification)
 722 |             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
 723 |
 724 |             NSAccessibility.post(element: self, notification: .selectedTextChanged)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:727: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
 510 |     ///
 511 |     /// Automatically call ``cancelComplete(_:)`` when `true`.
 512 |     open var shouldDimissCompletionOnSelectionChange: Bool = true
     |              `- note: property declared here
 513 |
 514 |     internal var _completionTask: Task<Void, any Error>?
     :
 725 |
 726 |             // Cancel completinon on selection change
 727 |             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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:728: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
 726 |             // Cancel completinon on selection change
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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:728: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
 726 |             // Cancel completinon on selection change
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:729: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
 727 |             if self.shouldDimissCompletionOnSelectionChange {
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (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
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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:730: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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
/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:730: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
 728 |                 if NSApp.currentEvent == nil ||
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
/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:731: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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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
 732 |                 {
 733 |                     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:731: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
 729 |                     (NSApp.currentEvent?.type != .keyDown && NSApp.currentEvent?.type != .keyUp) ||
 730 |                     NSApp.currentEvent?.characters == nil ||
 731 |                     !(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
 732 |                 {
 733 |                     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:733: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
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
 733 |                     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
 734 |                 }
 735 |             }
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:34:21: note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
 32 |     /// see ``complete(_:)``
 33 |     @preconcurrency @MainActor
 34 |     @objc open func cancelComplete(_ sender: Any?) {
    |                     `- note: calls to instance method 'cancelComplete' from outside of its actor context are implicitly asynchronous
 35 |         _completionTask?.cancel()
 36 |         completionWindowController?.close()
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:743: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
 741 |         usageBoundsForTextContainerObserver = textLayoutManager.observe(\.usageBoundsForTextContainer, options: [.initial, .new]) { [weak self] _, _ in
 742 |             // FB13291926: this notification no longer works
 743 |             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
 744 |         }
 745 |     }
/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:1101: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
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @objc dynamic open var textLayoutManager: NSTextLayoutManager {
     |                            `- note: property declared here
 443 |         willSet {
 444 |             textContentManager.primaryTextLayoutManager = nil
     :
1098 |                 for textLineFragment in layoutFragment.textLineFragments {
1099 |
1100 |                     func isLineSelected() -> Bool {
     |                          `- note: add '@MainActor' to make local function 'isLineSelected()' part of global actor 'MainActor'
1101 |                         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
1102 |                             var result = true
1103 |                             if textLineFragment.isExtraLineFragment {
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1450:21: warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1448 |             // Regular undo action
1449 |             textView.replaceCharacters(
1450 |                 in: undoRange,
     |                     `- warning: capture of 'undoRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1451 |                 with: previousStringInRange,
1452 |                 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:1451:23: warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1449 |             textView.replaceCharacters(
1450 |                 in: undoRange,
1451 |                 with: previousStringInRange,
     |                       `- warning: capture of 'previousStringInRange' with non-sendable type 'NSAttributedString' in a '@Sendable' closure
1452 |                 allowsTypingCoalescing: false
1453 |             )
/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:1454:43: warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1452 |                 allowsTypingCoalescing: false
1453 |             )
1454 |             textView.setSelectedTextRange(textRange, updateLayout: true)
     |                                           `- warning: capture of 'textRange' with non-sendable type 'NSTextRange' in a '@Sendable' closure
1455 |         }
1456 |         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:1449: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
1412 |     }
1413 |
1414 |     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'
1415 |         let previousStringInRange = (textContentManager as? NSTextContentStorage)!.attributedString!.attributedSubstring(from: NSRange(textRange, in: textContentManager))
1416 |
     :
1447 |         undoManager.registerUndo(withTarget: self) { textView in
1448 |             // Regular undo action
1449 |             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
1450 |                 in: undoRange,
1451 |                 with: previousStringInRange,
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1454: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
1452 |                 allowsTypingCoalescing: false
1453 |             )
1454 |             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
1455 |         }
1456 |         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:1546: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
1539 |     struct InsertionPoint: NSViewInvalidating {
1540 |
1541 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1542 |             guard let textView = view as? STTextView else {
1543 |                 return
1544 |             }
1545 |
1546 |             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
1547 |         }
1548 |     }
/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:1553: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
1550 |     struct CursorRects: NSViewInvalidating {
1551 |
1552 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1553 |             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
1554 |         }
1555 |     }
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:1553: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
1550 |     struct CursorRects: NSViewInvalidating {
1551 |
1552 |         func invalidate(view: NSView) {
     |              `- note: add '@MainActor' to make instance method 'invalidate(view:)' part of global actor 'MainActor'
1553 |             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
1554 |         }
1555 |     }
/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/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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:442:28: note: property declared here
 440 |
 441 |     /// The manager that lays out text for the text view's text container.
 442 |     @objc dynamic open var textLayoutManager: NSTextLayoutManager {
     |                            `- note: property declared here
 443 |         willSet {
 444 |             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:38:18: note: property declared here
  36 |
  37 |     /// Installed plugins. events value is available after plugin is setup
  38 |     internal var plugins: [Plugin] = []
     |                  `- note: property declared here
  39 |
  40 |     /// 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:697: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
 695 |
 696 |     deinit {
 697 |         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
 698 |         Task { @MainActor [plugins] in
 699 |             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:698: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
 696 |     deinit {
 697 |         guard !plugins.isEmpty else { return }
 698 |         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
 699 |             plugins.forEach { plugin in
 700 |                 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:733:26: warning: sending value of non-Sendable type 'Any?' risks causing data races; this is an error in the Swift 6 language mode
 731 |                     !(NSApp.currentEvent?.characters?.contains(where: \.isLetter) ?? false)
 732 |                 {
 733 |                     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
 734 |                 }
 735 |             }
[124/125] Emitting module STTextView
[125/125] Compiling STTextView module.swift
[126/128] 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 |
[127/128] 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:270:20: note: property declared here
 268 |     ///
 269 |     /// 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.
 270 |     @objc open var attributedText: NSAttributedString? {
     |                    `- note: property declared here
 271 |         set {
 272 |             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 |             }
[128/128] 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 |
[129/130] Compiling STTextViewSwiftUI module.swift
[130/130] Emitting module STTextViewSwiftUI
Build complete! (16.65s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/STTextViewCommon/Utilities/Throttler/LICENSE
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",
        "Utilities/Throttler/Actor/Throttler.swift",
        "Utilities/Throttler/debounce.swift",
        "Utilities/Throttler/delay.swift",
        "Utilities/Throttler/throttle.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/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.