Build Information
Successful build of Proton, reference 0.8.35 (2fa41f
), with Swift 6.1 for iOS using Xcode 16.3 on 28 Apr 2025 14:41:28 UTC.
Swift 6 data race errors: 81
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Proton-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
public func editor(_ editor: EditorView, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:248:36: warning: sending value of non-Sendable type 'GridCell' risks causing data races; this is an error in the Swift 6 language mode
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(contentViewTapped))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:248:36: note: sending task-isolated value of non-Sendable type 'GridCell' to main actor-isolated initializer 'init(target:action:)' risks causing races in between task-isolated and main actor-isolated uses
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(contentViewTapped))
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:251:30: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
self.selectionView = SelectionView { [weak self] in
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:251:30: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
self.selectionView = SelectionView { [weak self] in
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:462:10: warning: main actor-isolated instance method 'cell(_:didChangeBounds:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didChangeBounds bounds: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:462:10: note: add 'nonisolated' to 'cell(_:didChangeBounds:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didChangeBounds bounds: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:441:28: note: add '@preconcurrency' to the 'GridCellDelegate' conformance to defer isolation checking to run time
extension GridContentView: GridCellDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:97:10: note: mark the protocol requirement 'cell(_:didChangeBounds:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didChangeBounds bounds: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:442:10: warning: main actor-isolated instance method 'cell(_:didReceiveFocusAt:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didReceiveFocusAt range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:442:10: note: add 'nonisolated' to 'cell(_:didReceiveFocusAt:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didReceiveFocusAt range: NSRange) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:98:10: note: mark the protocol requirement 'cell(_:didReceiveFocusAt:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didReceiveFocusAt range: NSRange)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:446:10: warning: main actor-isolated instance method 'cell(_:didLoseFocusFrom:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didLoseFocusFrom range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:446:10: note: add 'nonisolated' to 'cell(_:didLoseFocusFrom:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didLoseFocusFrom range: NSRange) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:99:10: note: mark the protocol requirement 'cell(_:didLoseFocusFrom:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didLoseFocusFrom range: NSRange)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:450:10: warning: main actor-isolated instance method 'cell(_:didTapAtLocation:characterRange:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didTapAtLocation location: CGPoint, characterRange: NSRange?) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:450:10: note: add 'nonisolated' to 'cell(_:didTapAtLocation:characterRange:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didTapAtLocation location: CGPoint, characterRange: NSRange?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:100:10: note: mark the protocol requirement 'cell(_:didTapAtLocation:characterRange:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didTapAtLocation location: CGPoint, characterRange: NSRange?)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:454:10: warning: main actor-isolated instance method 'cell(_:didChangeSelectionAt:attributes:contentType:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:454:10: note: add 'nonisolated' to 'cell(_:didChangeSelectionAt:attributes:contentType:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:101:10: note: mark the protocol requirement 'cell(_:didChangeSelectionAt:attributes:contentType:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:475:10: warning: main actor-isolated instance method 'cell(_:didReceiveKey:at:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didReceiveKey key: EditorKey, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:475:10: note: add 'nonisolated' to 'cell(_:didReceiveKey:at:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didReceiveKey key: EditorKey, at range: NSRange) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:102:10: note: mark the protocol requirement 'cell(_:didReceiveKey:at:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didReceiveKey key: EditorKey, at range: NSRange)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:482:10: warning: main actor-isolated instance method 'cell(_:didChangeSelected:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didChangeSelected isSelected: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:482:10: note: add 'nonisolated' to 'cell(_:didChangeSelected:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didChangeSelected isSelected: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:103:10: note: mark the protocol requirement 'cell(_:didChangeSelected:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didChangeSelected isSelected: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:458:10: warning: main actor-isolated instance method 'cell(_:didChangeBackgroundColor:oldColor:)' cannot be used to satisfy nonisolated requirement from protocol 'GridCellDelegate'; this is an error in the Swift 6 language mode
func cell(_ cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:458:10: note: add 'nonisolated' to 'cell(_:didChangeBackgroundColor:oldColor:)' to make this instance method not isolated to the actor
func cell(_ cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridCell.swift:104:10: note: mark the protocol requirement 'cell(_:didChangeBackgroundColor:oldColor:)' 'async' to allow actor-isolated conformances
func cell(_ cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:497:17: warning: main actor-isolated instance method 'sizeFor(attachment:containerSize:lineRect:)' cannot be used to satisfy nonisolated requirement from protocol 'DynamicBoundsProviding'; this is an error in the Swift 6 language mode
public func sizeFor(attachment: Attachment, containerSize: CGSize, lineRect: CGRect) -> CGSize {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:497:17: note: add 'nonisolated' to 'sizeFor(attachment:containerSize:lineRect:)' to make this instance method not isolated to the actor
public func sizeFor(attachment: Attachment, containerSize: CGSize, lineRect: CGRect) -> CGSize {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:496:28: note: add '@preconcurrency' to the 'DynamicBoundsProviding' conformance to defer isolation checking to run time
extension GridContentView: DynamicBoundsProviding {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Attachment/Attachment.swift:27:10: note: mark the protocol requirement 'sizeFor(attachment:containerSize:lineRect:)' 'async' to allow actor-isolated conformances
func sizeFor(attachment: Attachment, containerSize: CGSize, lineRect: CGRect) -> CGSize
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:510:9: warning: main actor-isolated property 'viewport' cannot be used to satisfy nonisolated requirement from protocol 'GridDelegate'; this is an error in the Swift 6 language mode
var viewport: CGRect { bounds }
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:509:28: note: add '@preconcurrency' to the 'GridDelegate' conformance to defer isolation checking to run time
extension GridContentView: GridDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/Core/Grid.swift:45:9: note: requirement 'viewport' declared here
var viewport: CGRect { get }
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:512:10: warning: main actor-isolated instance method 'grid(_:shouldChangeColumnWidth:for:)' cannot be used to satisfy nonisolated requirement from protocol 'GridDelegate'; this is an error in the Swift 6 language mode
func grid(_ grid: Grid, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:512:10: note: add 'nonisolated' to 'grid(_:shouldChangeColumnWidth:for:)' to make this instance method not isolated to the actor
func grid(_ grid: Grid, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/Core/Grid.swift:46:10: note: mark the protocol requirement 'grid(_:shouldChangeColumnWidth:for:)' 'async' to allow actor-isolated conformances
func grid(_ grid: Grid, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:599:10: warning: main actor-isolated instance method 'gridContentView(_:didCompleteLayoutWithBounds:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didCompleteLayoutWithBounds bounds: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:599:10: note: add 'nonisolated' to 'gridContentView(_:didCompleteLayoutWithBounds:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didCompleteLayoutWithBounds bounds: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:598:21: note: add '@preconcurrency' to the 'GridContentViewDelegate' conformance to defer isolation checking to run time
extension GridView: GridContentViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:25:10: note: mark the protocol requirement 'gridContentView(_:didCompleteLayoutWithBounds:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didCompleteLayoutWithBounds bounds: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:603:10: warning: main actor-isolated instance method 'gridContentView(_:didLayoutCell:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didLayoutCell cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:603:10: note: add 'nonisolated' to 'gridContentView(_:didLayoutCell:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didLayoutCell cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:26:10: note: mark the protocol requirement 'gridContentView(_:didLayoutCell:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didLayoutCell cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:615:10: warning: main actor-isolated instance method 'gridContentView(_:didReceiveFocusAt:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didReceiveFocusAt range: NSRange, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:615:10: note: add 'nonisolated' to 'gridContentView(_:didReceiveFocusAt:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didReceiveFocusAt range: NSRange, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:28:10: note: mark the protocol requirement 'gridContentView(_:didReceiveFocusAt:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didReceiveFocusAt range: NSRange, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:620:10: warning: main actor-isolated instance method 'gridContentView(_:didLoseFocusFrom:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didLoseFocusFrom range: NSRange, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:620:10: note: add 'nonisolated' to 'gridContentView(_:didLoseFocusFrom:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didLoseFocusFrom range: NSRange, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:29:10: note: mark the protocol requirement 'gridContentView(_:didLoseFocusFrom:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didLoseFocusFrom range: NSRange, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:625:10: warning: main actor-isolated instance method 'gridContentView(_:didTapAtLocation:characterRange:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didTapAtLocation location: CGPoint, characterRange: NSRange?, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:625:10: note: add 'nonisolated' to 'gridContentView(_:didTapAtLocation:characterRange:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didTapAtLocation location: CGPoint, characterRange: NSRange?, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:30:10: note: mark the protocol requirement 'gridContentView(_:didTapAtLocation:characterRange:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didTapAtLocation location: CGPoint, characterRange: NSRange?, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:629:10: warning: main actor-isolated instance method 'gridContentView(_:didChangeSelectionAt:attributes:contentType:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:629:10: note: add 'nonisolated' to 'gridContentView(_:didChangeSelectionAt:attributes:contentType:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:31:10: note: mark the protocol requirement 'gridContentView(_:didChangeSelectionAt:attributes:contentType:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didChangeSelectionAt range: NSRange, attributes: [NSAttributedString.Key : Any], contentType: EditorContent.Name, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:633:10: warning: main actor-isolated instance method 'gridContentView(_:didChangeBounds:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didChangeBounds bounds: CGRect, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:633:10: note: add 'nonisolated' to 'gridContentView(_:didChangeBounds:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didChangeBounds bounds: CGRect, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:32:10: note: mark the protocol requirement 'gridContentView(_:didChangeBounds:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didChangeBounds bounds: CGRect, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:607:10: warning: main actor-isolated instance method 'gridContentView(_:didSelectCells:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didSelectCells cells: [GridCell]) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:607:10: note: add 'nonisolated' to 'gridContentView(_:didSelectCells:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didSelectCells cells: [GridCell]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:34:10: note: mark the protocol requirement 'gridContentView(_:didSelectCells:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didSelectCells cells: [GridCell])
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:611:10: warning: main actor-isolated instance method 'gridContentView(_:didUnselectCells:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didUnselectCells cells: [GridCell]) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:611:10: note: add 'nonisolated' to 'gridContentView(_:didUnselectCells:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didUnselectCells cells: [GridCell]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:35:10: note: mark the protocol requirement 'gridContentView(_:didUnselectCells:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didUnselectCells cells: [GridCell])
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:637:10: warning: main actor-isolated instance method 'gridContentView(_:didReceiveKey:at:in:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didReceiveKey key: EditorKey, at range: NSRange, in cell: GridCell) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:637:10: note: add 'nonisolated' to 'gridContentView(_:didReceiveKey:at:in:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didReceiveKey key: EditorKey, at range: NSRange, in cell: GridCell) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:37:10: note: mark the protocol requirement 'gridContentView(_:didReceiveKey:at:in:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didReceiveKey key: EditorKey, at range: NSRange, in cell: GridCell)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:641:10: warning: main actor-isolated instance method 'gridContentView(_:didAddNewRowAt:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didAddNewRowAt index: Int) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:641:10: note: add 'nonisolated' to 'gridContentView(_:didAddNewRowAt:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didAddNewRowAt index: Int) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:39:10: note: mark the protocol requirement 'gridContentView(_:didAddNewRowAt:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didAddNewRowAt index: Int)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:648:10: warning: main actor-isolated instance method 'gridContentView(_:didAddNewColumnAt:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didAddNewColumnAt index: Int) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:648:10: note: add 'nonisolated' to 'gridContentView(_:didAddNewColumnAt:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didAddNewColumnAt index: Int) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:40:10: note: mark the protocol requirement 'gridContentView(_:didAddNewColumnAt:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didAddNewColumnAt index: Int)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:655:10: warning: main actor-isolated instance method 'gridContentView(_:didDeleteRowAt:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didDeleteRowAt index: Int) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:655:10: note: add 'nonisolated' to 'gridContentView(_:didDeleteRowAt:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didDeleteRowAt index: Int) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:42:10: note: mark the protocol requirement 'gridContentView(_:didDeleteRowAt:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didDeleteRowAt index: Int)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:658:10: warning: main actor-isolated instance method 'gridContentView(_:didDeleteColumnAt:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, didDeleteColumnAt index: Int) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:658:10: note: add 'nonisolated' to 'gridContentView(_:didDeleteColumnAt:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, didDeleteColumnAt index: Int) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:43:10: note: mark the protocol requirement 'gridContentView(_:didDeleteColumnAt:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, didDeleteColumnAt index: Int)
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:661:10: warning: main actor-isolated instance method 'gridContentView(_:shouldChangeColumnWidth:for:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:661:10: note: add 'nonisolated' to 'gridContentView(_:shouldChangeColumnWidth:for:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:45:10: note: mark the protocol requirement 'gridContentView(_:shouldChangeColumnWidth:for:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, shouldChangeColumnWidth proposedWidth: CGFloat, for columnIndex: Int) -> Bool
^
async
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:665:10: warning: main actor-isolated instance method 'gridContentView(_:cell:didChangeBackgroundColor:oldColor:)' cannot be used to satisfy nonisolated requirement from protocol 'GridContentViewDelegate'; this is an error in the Swift 6 language mode
func gridContentView(_ gridContentView: GridContentView, cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridView.swift:665:10: note: add 'nonisolated' to 'gridContentView(_:cell:didChangeBackgroundColor:oldColor:)' to make this instance method not isolated to the actor
func gridContentView(_ gridContentView: GridContentView, cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Grid/View/GridContentView.swift:47:10: note: mark the protocol requirement 'gridContentView(_:cell:didChangeBackgroundColor:oldColor:)' 'async' to allow actor-isolated conformances
func gridContentView(_ gridContentView: GridContentView, cell: GridCell, didChangeBackgroundColor color: UIColor?, oldColor: UIColor?)
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/GradientView.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-7Y0Z4DA9NOFEPC1UX4P98JAOA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-7Y0Z4DA9NOFEPC1UX4P98JAOA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-EJ5UZUF8V6XUX9MSYDDD1RZZE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-EJ5UZUF8V6XUX9MSYDDD1RZZE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4JGDK0J7DKA9F8H9LX8W7JGUS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4JGDK0J7DKA9F8H9LX8W7JGUS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3A8LK2SUSVYKXXBS6DD4BMASV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3A8LK2SUSVYKXXBS6DD4BMASV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9W8Q8EMPPCVDV9QXYOWUW7G02.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9W8Q8EMPPCVDV9QXYOWUW7G02.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-AK5U5ERTFJVUZOHROEATS0NBU.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-AK5U5ERTFJVUZOHROEATS0NBU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-BCUUCYPYIY1AY3I3UD8IZHXEP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-BCUUCYPYIY1AY3I3UD8IZHXEP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-3LPHB480G8LC9GWCPGR9KZ5OS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-3LPHB480G8LC9GWCPGR9KZ5OS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-8XP2G99Y1OQFCG7GDVLC09POH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-8XP2G99Y1OQFCG7GDVLC09POH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6E33MZ7H9B7KA03HRM7DCQQ7S.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6E33MZ7H9B7KA03HRM7DCQQ7S.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-91QNDJ0X1J6QEMUHNDPV2BTOD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-91QNDJ0X1J6QEMUHNDPV2BTOD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-31SCLFUBXSOSVMLNAGJRMJSLS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-31SCLFUBXSOSVMLNAGJRMJSLS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-1EMLU7J3I80GOUC8VIG41UOU9.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-1EMLU7J3I80GOUC8VIG41UOU9.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-6G6ZCJ86FFYHQKJR9A6P02ENA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-6G6ZCJ86FFYHQKJR9A6P02ENA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-5XCTAHS6WFLJ2Z0ZAVDWY8O2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-5XCTAHS6WFLJ2Z0ZAVDWY8O2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CKAU6L1KKZ11DADERH80DI23T.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CKAU6L1KKZ11DADERH80DI23T.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-4OE3PGUPXJL908RD05GIPEM9S.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-4OE3PGUPXJL908RD05GIPEM9S.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-13DZFXAFPNRHFBTWWCIAY38T4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-13DZFXAFPNRHFBTWWCIAY38T4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-AGXGGXBJB6ZPUARC1ZR392IT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-AGXGGXBJB6ZPUARC1ZR392IT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DUH87ZXS9J3479PJH7Z2F3J9Z.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DUH87ZXS9J3479PJH7Z2F3J9Z.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7K520QZX8FG5GDXRF0RUT3RAY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7K520QZX8FG5GDXRF0RUT3RAY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-E97CQ6GUI4TZ860LYLJK09VZM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-E97CQ6GUI4TZ860LYLJK09VZM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-C1TNHXSTUZAOH8GZMWPW9HXRI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-C1TNHXSTUZAOH8GZMWPW9HXRI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EDRERJOHWPEIXR6I6IJNW72SL.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EDRERJOHWPEIXR6I6IJNW72SL.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-DR9B6U34G59AS2CC2FMUPMBW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-DR9B6U34G59AS2CC2FMUPMBW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-5ADERXWABV3SJEKQEEZU1XGDR.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-5ADERXWABV3SJEKQEEZU1XGDR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-27AWEE981SCGFTDUT4B3CYFCO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-27AWEE981SCGFTDUT4B3CYFCO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-BR934CZ2IWUPJVN0AZFG17AVI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-BR934CZ2IWUPJVN0AZFG17AVI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-4YOC8ANCKB79WKE2ESD8FG0HI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-4YOC8ANCKB79WKE2ESD8FG0HI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-5RHB07B5HPKDEMJ5TUV2U622J.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-5RHB07B5HPKDEMJ5TUV2U622J.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-909TAREXESOL43XQVLC87KPOR.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-909TAREXESOL43XQVLC87KPOR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-GW4NT1MDOMV9TBKNHZ83D9CQ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-GW4NT1MDOMV9TBKNHZ83D9CQ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-9G3CCTCGJP9TC8EHA1KS8QJWN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-9G3CCTCGJP9TC8EHA1KS8QJWN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-3FCJE2HPAPRDOQFGQE4H16799.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-3FCJE2HPAPRDOQFGQE4H16799.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-6NUOVREKQWRSOZENWTE77A3OY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-6NUOVREKQWRSOZENWTE77A3OY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4P8H0BK1F80QMZC1CK537VBI8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4P8H0BK1F80QMZC1CK537VBI8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-6QI34V1LYZ03YGYY5UHSISC5F.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-6QI34V1LYZ03YGYY5UHSISC5F.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-6YMT5BZ27Q6OA7I3FRVVVNTYI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-6YMT5BZ27Q6OA7I3FRVVVNTYI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-6ASZCNOON100WR5K61ZRHPJF3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-6ASZCNOON100WR5K61ZRHPJF3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-59RS0FGA8XT5V4DXG7J872PHF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-59RS0FGA8XT5V4DXG7J872PHF.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-4BOC5UEOM4I4NKR1EZBZ6NLG1.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-4BOC5UEOM4I4NKR1EZBZ6NLG1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-1PJ7TJ5NE0BF0D2AEHKTIJ14L.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-1PJ7TJ5NE0BF0D2AEHKTIJ14L.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-ESVMG0ONHWSXYN5TV5233DAVY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-ESVMG0ONHWSXYN5TV5233DAVY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-7YZY6UOSI5BND0LA4C5K0ASP8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-7YZY6UOSI5BND0LA4C5K0ASP8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-1UK6S4P0BPZ7Q5XZTR63889XB.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-1UK6S4P0BPZ7Q5XZTR63889XB.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-A899VHNSCYCQGVE6TRVLSGG6G.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-A899VHNSCYCQGVE6TRVLSGG6G.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-AQG9UZREKAWIOOBWGD2HL3UXD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-AQG9UZREKAWIOOBWGD2HL3UXD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4IHL6TD6LG7R7OBV5QF9UZLWE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4IHL6TD6LG7R7OBV5QF9UZLWE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-9U8JAXJSORSGZ24RLBE2BWOMY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-9U8JAXJSORSGZ24RLBE2BWOMY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CBJUWN6T8L0PSOISS9SRL2CZ6.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CBJUWN6T8L0PSOISS9SRL2CZ6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-D0DYSF6IFP387R1PI6AOXBDMR.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-D0DYSF6IFP387R1PI6AOXBDMR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-4YU618JLBQ7N8A19JJ8PXQZZ7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-4YU618JLBQ7N8A19JJ8PXQZZ7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-BA0Y6QPNDGDMJ8SSNPPU4GHP4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-BA0Y6QPNDGDMJ8SSNPPU4GHP4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-A5NF71B2O8F8IC3X6HQBDPTSD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-A5NF71B2O8F8IC3X6HQBDPTSD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9WIMTGAM8A35Y6MPSQRTJNLRE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9WIMTGAM8A35Y6MPSQRTJNLRE.scan
SwiftCompile normal arm64 Compiling\ FontExtensions.swift,\ UIColor+Image.swift,\ UITextRangeExtensions.swift,\ TextProcessing.swift,\ TextProcessor.swift,\ ListTextProcessor.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Text/FontExtensions.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/UIColor+Image.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/UITextRangeExtensions.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessing.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift (in target 'Proton' from project 'Proton')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Text/FontExtensions.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/UIColor+Image.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/UITextRangeExtensions.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessing.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift:80:16: warning: main actor-isolated property 'delegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.delegate?.editor(editor, didExecuteProcessors: executedProcessors, at: editedRange)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:221:19: note: property declared here
open weak var delegate: EditorViewDelegate?
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift:55:10: note: add '@MainActor' to make instance method 'textStorage(_:willProcessEditing:range:changeInLength:)' part of global actor 'MainActor'
func textStorage(_ textStorage: NSTextStorage, willProcessEditing editedMask: NSTextStorage.EditActions, range editedRange: NSRange, changeInLength delta: Int) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift:81:16: warning: main actor-isolated property 'editorContextDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.editorContextDelegate?.editor(editor, didExecuteProcessors: executedProcessors, at: editedRange)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:145:9: note: property declared here
var editorContextDelegate: EditorViewDelegate? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessor.swift:55:10: note: add '@MainActor' to make instance method 'textStorage(_:willProcessEditing:range:changeInLength:)' part of global actor 'MainActor'
func textStorage(_ textStorage: NSTextStorage, willProcessEditing editedMask: NSTextStorage.EditActions, range editedRange: NSRange, changeInLength delta: Int) {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:43:23: warning: static property 'markerDebugOptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var markerDebugOptions: ListMarkerDebugOption = .default
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:43:23: note: convert 'markerDebugOptions' to a 'let' constant to make 'Sendable' shared state immutable
public static var markerDebugOptions: ListMarkerDebugOption = .default
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:43:23: note: add '@MainActor' to make static property 'markerDebugOptions' part of global actor 'MainActor'
public static var markerDebugOptions: ListMarkerDebugOption = .default
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var markerDebugOptions: ListMarkerDebugOption = .default
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:65:69: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let rangeToCheck = max(0, min(range.endLocation, editorView.contentLength) - 1)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:64:15: note: add '@MainActor' to make instance method 'shouldProcess(_:shouldProcessTextIn:replacementText:)' part of global actor 'MainActor'
open func shouldProcess(_ editorView: EditorView, shouldProcessTextIn range: NSRange, replacementText text: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:66:23: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if editorView.contentLength > 0,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:64:15: note: add '@MainActor' to make instance method 'shouldProcess(_:shouldProcessTextIn:replacementText:)' part of global actor 'MainActor'
open func shouldProcess(_ editorView: EditorView, shouldProcessTextIn range: NSRange, replacementText text: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:67:35: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let value = editorView.attributedText.attribute(.listItem, at: rangeToCheck, effectiveRange: nil),
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:64:15: note: add '@MainActor' to make instance method 'shouldProcess(_:shouldProcessTextIn:replacementText:)' part of global actor 'MainActor'
open func shouldProcess(_ editorView: EditorView, shouldProcessTextIn range: NSRange, replacementText text: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:68:24: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
(editorView.attributedText.attribute(.paragraphStyle, at: rangeToCheck, effectiveRange: nil) as? NSParagraphStyle)?.firstLineHeadIndent ?? 0 > 0 {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:64:15: note: add '@MainActor' to make instance method 'shouldProcess(_:shouldProcessTextIn:replacementText:)' part of global actor 'MainActor'
open func shouldProcess(_ editorView: EditorView, shouldProcessTextIn range: NSRange, replacementText text: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:69:24: warning: main actor-isolated property 'typingAttributes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editorView.typingAttributes[.listItem] = value
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:557:16: note: mutation of this property is only permitted within the actor
public var typingAttributes: [NSAttributedString.Key: Any] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:64:15: note: add '@MainActor' to make instance method 'shouldProcess(_:shouldProcessTextIn:replacementText:)' part of global actor 'MainActor'
open func shouldProcess(_ editorView: EditorView, shouldProcessTextIn range: NSRange, replacementText text: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:85:22: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard editor.selectedRange.endLocation < editor.contentLength else { return }
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:85:57: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard editor.selectedRange.endLocation < editor.contentLength else { return }
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:86:31: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let lastChar = editor.attributedText.substring(from: NSRange(location: editor.selectedRange.location, length: 1))
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:86:87: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let lastChar = editor.attributedText.substring(from: NSRange(location: editor.selectedRange.location, length: 1))
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:88:20: warning: main actor-isolated property 'selectedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = editor.selectedRange.nextPosition
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: mutation of this property is only permitted within the actor
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:88:43: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = editor.selectedRange.nextPosition
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:90:16: warning: main actor-isolated property 'typingAttributes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.typingAttributes[.skipNextListMarker] = nil
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:557:16: note: mutation of this property is only permitted within the actor
public var typingAttributes: [NSAttributedString.Key: Any] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:82:15: note: add '@MainActor' to make instance method 'didProcess(editor:)' part of global actor 'MainActor'
open func didProcess(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:99:47: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let attributeValue = editor.attributedText.attribute(.listItem, at: editedRange.location - 1, effectiveRange: nil)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:105:61: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let location = min(editedRange.location, editor.contentLength - 1)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:107:26: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.contentLength > 0
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:110:32: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let attrs = editor.attributedText.attributes(at: location, effectiveRange: nil)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:120:41: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let attributedText = editor.attributedText
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:127:20: warning: call to main actor-isolated instance method 'deleteBackward()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.deleteBackward()
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1043:17: note: calls to instance method 'deleteBackward()' from outside of its actor context are implicitly asynchronous
public func deleteBackward() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1043:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func deleteBackward() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:93:15: note: add '@MainActor' to make instance method 'handleKeyWithModifiers(editor:key:modifierFlags:range:)' part of global actor 'MainActor'
open func handleKeyWithModifiers(editor: EditorView, key: EditorKey, modifierFlags: UIKeyModifierFlags, range editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:135:22: warning: main actor-isolated property 'isEmpty' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard editor.isEmpty == false,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:399:16: note: property declared here
public var isEmpty: Bool {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:134:10: note: add '@MainActor' to make instance method 'exitList(editor:)' part of global actor 'MainActor'
func exitList(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:136:50: warning: call to main actor-isolated instance method 'contentLinesInRange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let currentContentLineRange = editor.contentLinesInRange(editor.selectedRange).first?.range,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: calls to instance method 'contentLinesInRange' from outside of its actor context are implicitly asynchronous
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:134:10: note: add '@MainActor' to make instance method 'exitList(editor:)' part of global actor 'MainActor'
func exitList(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:136:77: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let currentContentLineRange = editor.contentLinesInRange(editor.selectedRange).first?.range,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:134:10: note: add '@MainActor' to make instance method 'exitList(editor:)' part of global actor 'MainActor'
func exitList(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:137:22: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.attributedText.attribute(
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:134:10: note: add '@MainActor' to make instance method 'exitList(editor:)' part of global actor 'MainActor'
func exitList(editor: EditorView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:147:16: warning: main actor-isolated property 'typingAttributes' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.typingAttributes[.listItem] = nil
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:557:16: note: mutation of this property is only permitted within the actor
public var typingAttributes: [NSAttributedString.Key: Any] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:146:18: note: add '@MainActor' to make instance method 'terminateList(editor:editedRange:)' part of global actor 'MainActor'
private func terminateList(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:155:16: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.replaceCharacters(in: rangeToReplace, with: "")
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1127:17: note: calls to instance method 'replaceCharacters(in:with:)' from outside of its actor context are implicitly asynchronous
public func replaceCharacters(in range: NSRange, with string: String) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1127:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func replaceCharacters(in range: NSRange, with string: String) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:146:18: note: add '@MainActor' to make instance method 'terminateList(editor:editedRange:)' part of global actor 'MainActor'
private func terminateList(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:156:19: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if editor.selectedRange.endLocation >= rangeToReplace.endLocation {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:146:18: note: add '@MainActor' to make instance method 'terminateList(editor:editedRange:)' part of global actor 'MainActor'
private func terminateList(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:157:20: warning: main actor-isolated property 'selectedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = NSRange(location: editor.selectedRange.location - 1, length: 0)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: mutation of this property is only permitted within the actor
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:146:18: note: add '@MainActor' to make instance method 'terminateList(editor:editedRange:)' part of global actor 'MainActor'
private func terminateList(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:157:61: warning: main actor-isolated property 'selectedRange' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = NSRange(location: editor.selectedRange.location - 1, length: 0)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: property declared here
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:146:18: note: add '@MainActor' to make instance method 'terminateList(editor:editedRange:)' part of global actor 'MainActor'
private func terminateList(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:166:16: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.replaceCharacters(in: newLineRange, with: newLine)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1116:17: note: calls to instance method 'replaceCharacters(in:with:)' from outside of its actor context are implicitly asynchronous
public func replaceCharacters(in range: NSRange, with attributedString: NSAttributedString) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1116:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func replaceCharacters(in range: NSRange, with attributedString: NSAttributedString) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:161:18: note: add '@MainActor' to make instance method 'handleShiftReturn(editor:editedRange:attrs:)' part of global actor 'MainActor'
private func handleShiftReturn(editor: EditorView, editedRange: NSRange, attrs: [NSAttributedString.Key: Any]) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:167:16: warning: main actor-isolated property 'selectedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = editedRange.nextPosition
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: mutation of this property is only permitted within the actor
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:161:18: note: add '@MainActor' to make instance method 'handleShiftReturn(editor:editedRange:attrs:)' part of global actor 'MainActor'
private func handleShiftReturn(editor: EditorView, editedRange: NSRange, attrs: [NSAttributedString.Key: Any]) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:171:40: warning: call to main actor-isolated instance method 'contentLinesInRange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
guard let currentLine = editor.contentLinesInRange(editedRange).first,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: calls to instance method 'contentLinesInRange' from outside of its actor context are implicitly asynchronous
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:172:41: warning: call to main actor-isolated instance method 'previousContentLine(from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let previousLine = editor.previousContentLine(from: currentLine.range.location)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:941:17: note: calls to instance method 'previousContentLine(from:)' from outside of its actor context are implicitly asynchronous
public func previousContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:941:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func previousContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:175:34: warning: call to main actor-isolated instance method 'nextContentLine(from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if let nextLine = editor.nextContentLine(from: currentLine.range.location),
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:949:17: note: calls to instance method 'nextContentLine(from:)' from outside of its actor context are implicitly asynchronous
public func nextContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:949:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func nextContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:176:48: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
nextLine.range.endLocation < editor.contentLength - 1 {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:177:41: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let attributedText = editor.attributedText
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:194:37: warning: main actor-isolated property 'typingAttributes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var attributeValue = editor.typingAttributes[.listItem]
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:557:16: note: property declared here
public var typingAttributes: [NSAttributedString.Key: Any] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:170:18: note: add '@MainActor' to make instance method 'exitListsIfRequired(editor:editedRange:)' part of global actor 'MainActor'
private func exitListsIfRequired(editor: EditorView, editedRange: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:208:28: warning: call to main actor-isolated instance method 'contentLinesInRange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let lines = editor.contentLinesInRange(editedRange)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: calls to instance method 'contentLinesInRange' from outside of its actor context are implicitly asynchronous
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:933:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func contentLinesInRange(_ range: NSRange) -> [EditorLine] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:215:51: warning: main actor-isolated property 'textInput' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
prevCharRange.isValidIn(editor.textInput) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:174:16: note: property declared here
public var textInput: UITextInput {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:216:40: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
paraStyle = editor.attributedText.attribute(.paragraphStyle, at: prevCharRange.location, effectiveRange: nil) as? NSParagraphStyle
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:226:103: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let mutableStyle = updatedParagraphStyle(paraStyle: paraStyle, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:226:172: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let mutableStyle = updatedParagraphStyle(paraStyle: paraStyle, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:228:39: warning: call to main actor-isolated instance method 'previousContentLine(from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let previousLine = editor.previousContentLine(from: line.range.location)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:941:17: note: calls to instance method 'previousContentLine(from:)' from outside of its actor context are implicitly asynchronous
public func previousContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:941:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func previousContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:232:116: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard mutableStyle?.firstLineHeadIndent ?? 0 <= (previousStyle?.firstLineHeadIndent ?? 0) + editor.listLineFormatting.indentation else {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:237:71: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
else if (mutableStyle?.firstLineHeadIndent ?? 0) > editor.listLineFormatting.indentation {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:243:20: warning: call to main actor-isolated instance method 'addAttribute(_:value:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: line.range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1333:17: note: calls to instance method 'addAttribute(_:value:at:)' from outside of its actor context are implicitly asynchronous
public func addAttribute(_ name: NSAttributedString.Key, value: Any, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1333:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func addAttribute(_ name: NSAttributedString.Key, value: Any, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:243:80: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: line.range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:247:24: warning: call to main actor-isolated instance method 'removeAttribute(_:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.removeAttribute(.listItem, at: line.range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1341:17: note: calls to instance method 'removeAttribute(_:at:)' from outside of its actor context are implicitly asynchronous
public func removeAttribute(_ name: NSAttributedString.Key, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1341:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func removeAttribute(_ name: NSAttributedString.Key, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:250:28: warning: call to main actor-isolated instance method 'removeAttribute(_:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.removeAttribute(.listItem, at: NSRange(location: previousLine.range.endLocation, length: 1))
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1341:17: note: calls to instance method 'removeAttribute(_:at:)' from outside of its actor context are implicitly asynchronous
public func removeAttribute(_ name: NSAttributedString.Key, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1341:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func removeAttribute(_ name: NSAttributedString.Key, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:207:18: note: add '@MainActor' to make instance method 'updateListItemIfRequired(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
private func updateListItemIfRequired(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:260:53: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
let currentLevel = Int((paraStyle ?? editor.paragraphStyle).firstLineHeadIndent/editor.listLineFormatting.indentation)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:260:96: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let currentLevel = Int((paraStyle ?? editor.paragraphStyle).firstLineHeadIndent/editor.listLineFormatting.indentation)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:259:18: note: add '@MainActor' to make instance method 'notifyIndentationChange(editor:paraStyle:lineRange:indentMode:)' part of global actor 'MainActor'
private func notifyIndentationChange(editor: EditorView, paraStyle: NSParagraphStyle?, lineRange: NSRange, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:262:102: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let newLevel = CGFloat(indentMode == .indent ? currentLevel + 1 : currentLevel - 1) * editor.listLineFormatting.indentation
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:259:18: note: add '@MainActor' to make instance method 'notifyIndentationChange(editor:paraStyle:lineRange:indentMode:)' part of global actor 'MainActor'
private func notifyIndentationChange(editor: EditorView, paraStyle: NSParagraphStyle?, lineRange: NSRange, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:263:16: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.attributedText.enumerateAttribute(.listItem, in: NSRange(location: 0, length: lineRange.endLocation), options: [.reverse, .longestEffectiveRangeNotRequired]) { attrValue, range, stop in
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:259:18: note: add '@MainActor' to make instance method 'notifyIndentationChange(editor:paraStyle:lineRange:indentMode:)' part of global actor 'MainActor'
private func notifyIndentationChange(editor: EditorView, paraStyle: NSParagraphStyle?, lineRange: NSRange, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:264:44: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let paragraphStyle = editor.attributedText.attribute(.paragraphStyle, at: range.location, effectiveRange: nil) as? NSParagraphStyle,
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:270:16: warning: main actor-isolated property 'listFormattingProvider' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.listFormattingProvider?.willChangeListIndentation(editor: editor, range: lineRange, currentLevel: currentLevel, indentMode: indentMode, latestAttributeValueAtProposedLevel: latestAttributeValueAtProposedLevel)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:224:21: note: property declared here
public weak var listFormattingProvider: EditorListFormattingProvider?
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:259:18: note: add '@MainActor' to make instance method 'notifyIndentationChange(editor:paraStyle:lineRange:indentMode:)' part of global actor 'MainActor'
private func notifyIndentationChange(editor: EditorView, paraStyle: NSParagraphStyle?, lineRange: NSRange, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:275:37: warning: call to main actor-isolated instance method 'nextContentLine(from:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
guard let nextLine = editor.nextContentLine(from: editedRange.location),
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:949:17: note: calls to instance method 'nextContentLine(from:)' from outside of its actor context are implicitly asynchronous
public func nextContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:949:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func nextContentLine(from location: Int) -> EditorLine? {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:273:18: note: add '@MainActor' to make instance method 'indentChildLists(editor:editedRange:originalParaStyle:indentMode:)' part of global actor 'MainActor'
private func indentChildLists(editor: EditorView, editedRange: NSRange, originalParaStyle: NSParagraphStyle?, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:277:22: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.attributedText.attribute(.listItem, at: nextLine.range.location, longestEffectiveRange: &subListRange, in: NSRange(location: nextLine.range.location, length: editor.contentLength - nextLine.range.location)) != nil
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:273:18: note: add '@MainActor' to make instance method 'indentChildLists(editor:editedRange:originalParaStyle:indentMode:)' part of global actor 'MainActor'
private func indentChildLists(editor: EditorView, editedRange: NSRange, originalParaStyle: NSParagraphStyle?, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:277:187: warning: main actor-isolated property 'contentLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.attributedText.attribute(.listItem, at: nextLine.range.location, longestEffectiveRange: &subListRange, in: NSRange(location: nextLine.range.location, length: editor.contentLength - nextLine.range.location)) != nil
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:380:16: note: property declared here
public var contentLength: Int {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:273:18: note: add '@MainActor' to make instance method 'indentChildLists(editor:editedRange:originalParaStyle:indentMode:)' part of global actor 'MainActor'
private func indentChildLists(editor: EditorView, editedRange: NSRange, originalParaStyle: NSParagraphStyle?, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:280:16: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
editor.attributedText.enumerateAttribute(.paragraphStyle, in: subListRange, options: []) { value, range, stop in
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:273:18: note: add '@MainActor' to make instance method 'indentChildLists(editor:editedRange:originalParaStyle:indentMode:)' part of global actor 'MainActor'
private func indentChildLists(editor: EditorView, editedRange: NSRange, originalParaStyle: NSParagraphStyle?, indentMode: Indentation) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:282:96: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if style.firstLineHeadIndent >= originalParaStyle.firstLineHeadIndent + editor.listLineFormatting.indentation {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:283:107: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let mutableStyle = updatedParagraphStyle(paraStyle: style, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:283:176: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let mutableStyle = updatedParagraphStyle(paraStyle: style, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:284:28: warning: call to main actor-isolated instance method 'addAttribute(_:value:at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1333:17: note: calls to instance method 'addAttribute(_:value:at:)' from outside of its actor context are implicitly asynchronous
public func addAttribute(_ name: NSAttributedString.Key, value: Any, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1333:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func addAttribute(_ name: NSAttributedString.Key, value: Any, at range: NSRange) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:284:88: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:295:41: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
listAttributeValue = editor.attributedText.attribute(.listItem, at: editedRange.location - 1, effectiveRange: nil)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:511:16: note: property declared here
public var attributedText: NSAttributedString {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:299:28: warning: main actor-isolated property 'typingAttributes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var attrs = editor.typingAttributes
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:557:16: note: property declared here
public var typingAttributes: [NSAttributedString.Key: Any] {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:301:99: warning: main actor-isolated property 'listLineFormatting' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let updatedStyle = updatedParagraphStyle(paraStyle: paraStyle, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1361:9: note: property declared here
var listLineFormatting: LineFormatting {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:301:168: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let updatedStyle = updatedParagraphStyle(paraStyle: paraStyle, listLineFormatting: editor.listLineFormatting, indentMode: indentMode, defaultParaStyle: editor.paragraphStyle)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:458:16: note: property declared here
public var paragraphStyle: NSMutableParagraphStyle = NSMutableParagraphStyle() {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:305:16: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
editor.replaceCharacters(in: editedRange, with: marker)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1116:17: note: calls to instance method 'replaceCharacters(in:with:)' from outside of its actor context are implicitly asynchronous
public func replaceCharacters(in range: NSRange, with attributedString: NSAttributedString) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:1116:17: note: main actor isolation inferred from inheritance from class 'UIView'
public func replaceCharacters(in range: NSRange, with attributedString: NSAttributedString) {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:306:16: warning: main actor-isolated property 'selectedRange' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
editor.selectedRange = editedRange.nextPosition
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Editor/EditorView.swift:545:16: note: mutation of this property is only permitted within the actor
public var selectedRange: NSRange {
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:292:10: note: add '@MainActor' to make instance method 'createListItemInANewLine(editor:editedRange:indentMode:attributeValue:)' part of global actor 'MainActor'
func createListItemInANewLine(editor: EditorView, editedRange: NSRange, indentMode: Indentation, attributeValue: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:243:20: warning: sending value of non-Sendable type 'NSParagraphStyle' risks causing data races; this is an error in the Swift 6 language mode
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: line.range)
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:243:20: note: sending value of non-Sendable type 'NSParagraphStyle' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: line.range)
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:243:20: note: access can happen concurrently
editor.addAttribute(.paragraphStyle, value: mutableStyle ?? editor.paragraphStyle, at: line.range)
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:166:16: warning: sending 'newLine' risks causing data races; this is an error in the Swift 6 language mode
editor.replaceCharacters(in: newLineRange, with: newLine)
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/TextProcessors/TextProcessors/ListTextProcessor.swift:166:16: note: sending task-isolated 'newLine' to main actor-isolated instance method 'replaceCharacters(in:with:)' risks causing data races between main actor-isolated and task-isolated uses
editor.replaceCharacters(in: newLineRange, with: newLine)
^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AI1XT3GRSA9A8ASRJHBRTAWR3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AI1XT3GRSA9A8ASRJHBRTAWR3.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for Proton (in target 'Proton' from project 'Proton')
SwiftDriver\ Compilation\ Requirements Proton normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Proton -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ProtonCore.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-EQKJL5UFUZLUSBAJZ6DOOT4DR.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-EQKJL5UFUZLUSBAJZ6DOOT4DR.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Proton-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-Swift.h (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Proton-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftmodule (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftdoc (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.abi.json (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftsourceinfo (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-DEC0811FC2D884EL12TCWNRSS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-DEC0811FC2D884EL12TCWNRSS.scan
SwiftCompile normal arm64 Compiling\ Logger.swift,\ NSAttributedString+Content.swift,\ NSAttributedString+Range.swift,\ NSRangeExtensions.swift,\ String+NSRange.swift,\ SynchronizedArray.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSAttributedString+Content.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSAttributedString+Range.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/String+NSRange.swift /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/SynchronizedArray.swift (in target 'Proton' from project 'Proton')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift:25:24: warning: static property 'subsystem' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var subsystem = Bundle.main.bundleIdentifier!
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift:25:24: note: convert 'subsystem' to a 'let' constant to make 'Sendable' shared state immutable
private static var subsystem = Bundle.main.bundleIdentifier!
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift:25:24: note: add '@MainActor' to make static property 'subsystem' part of global actor 'MainActor'
private static var subsystem = Bundle.main.bundleIdentifier!
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/Logger.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var subsystem = Bundle.main.bundleIdentifier!
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSAttributedString+Content.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSAttributedString+Range.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:63:42: warning: call to main actor-isolated instance method 'position(from:offset:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
guard let rangeStart = textInput.position(from: textInput.beginningOfDocument, offset: location),
^
UIKit.UITextInput.position:3:19: note: calls to instance method 'position(from:offset:)' from outside of its actor context are implicitly asynchronous
@MainActor func position(from position: UITextPosition, offset: Int) -> UITextPosition?}
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:62:10: note: add '@MainActor' to make instance method 'toTextRange(textInput:)' part of global actor 'MainActor'
func toTextRange(textInput: UITextInput) -> UITextRange? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:63:67: warning: main actor-isolated property 'beginningOfDocument' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let rangeStart = textInput.position(from: textInput.beginningOfDocument, offset: location),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h:141:49: note: property declared here
@property (nonatomic, readonly) UITextPosition *beginningOfDocument;
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:62:10: note: add '@MainActor' to make instance method 'toTextRange(textInput:)' part of global actor 'MainActor'
func toTextRange(textInput: UITextInput) -> UITextRange? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:64:40: warning: call to main actor-isolated instance method 'position(from:offset:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let rangeEnd = textInput.position(from: rangeStart, offset: length)
^
UIKit.UITextInput.position:3:19: note: calls to instance method 'position(from:offset:)' from outside of its actor context are implicitly asynchronous
@MainActor func position(from position: UITextPosition, offset: Int) -> UITextPosition?}
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:62:10: note: add '@MainActor' to make instance method 'toTextRange(textInput:)' part of global actor 'MainActor'
func toTextRange(textInput: UITextInput) -> UITextRange? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:67:26: warning: call to main actor-isolated instance method 'textRange(from:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return textInput.textRange(from: rangeStart, to: rangeEnd)
^
UIKit.UITextInput.textRange:3:19: note: calls to instance method 'textRange(from:to:)' from outside of its actor context are implicitly asynchronous
@MainActor func textRange(from fromPosition: UITextPosition, to toPosition: UITextPosition) -> UITextRange?}
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:62:10: note: add '@MainActor' to make instance method 'toTextRange(textInput:)' part of global actor 'MainActor'
func toTextRange(textInput: UITextInput) -> UITextRange? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:75:39: warning: call to main actor-isolated instance method 'offset(from:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let contentLength = textInput.offset(from: textInput.beginningOfDocument, to: textInput.endOfDocument)
^
UIKit.UITextInput.offset:3:19: note: calls to instance method 'offset(from:to:)' from outside of its actor context are implicitly asynchronous
@MainActor func offset(from: UITextPosition, to toPosition: UITextPosition) -> Int}
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:72:10: note: add '@MainActor' to make instance method 'isValidIn' part of global actor 'MainActor'
func isValidIn(_ textInput: UITextInput) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:75:62: warning: main actor-isolated property 'beginningOfDocument' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentLength = textInput.offset(from: textInput.beginningOfDocument, to: textInput.endOfDocument)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h:141:49: note: property declared here
@property (nonatomic, readonly) UITextPosition *beginningOfDocument;
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:72:10: note: add '@MainActor' to make instance method 'isValidIn' part of global actor 'MainActor'
func isValidIn(_ textInput: UITextInput) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:75:97: warning: main actor-isolated property 'endOfDocument' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentLength = textInput.offset(from: textInput.beginningOfDocument, to: textInput.endOfDocument)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h:142:49: note: property declared here
@property (nonatomic, readonly) UITextPosition *endOfDocument;
^
/Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/NSRangeExtensions.swift:72:10: note: add '@MainActor' to make instance method 'isValidIn' part of global actor 'MainActor'
func isValidIn(_ textInput: UITextInput) -> Bool {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/String+NSRange.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Proton/Sources/Swift/Helpers/SynchronizedArray.swift (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-ASG24RS5DEUGS85VMS0FXVONJ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-ASG24RS5DEUGS85VMS0FXVONJ.scan
SwiftDriverJobDiscovery normal arm64 Compiling Logger.swift, NSAttributedString+Content.swift, NSAttributedString+Range.swift, NSRangeExtensions.swift, String+NSRange.swift, SynchronizedArray.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling BackgroundStyle.swift, NSAttributedString+ContentTypes.swift, NSParagraphStyleExtensions.swift, Types.swift, AsyncTaskScheduler.swift, CommandName.swift, EditorLineNumberProvider.swift (in target 'Proton' from project 'Proton')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-7VIC980W128HBTU6QT9M3VE9Z.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-7VIC980W128HBTU6QT9M3VE9Z.scan
SwiftDriverJobDiscovery normal arm64 Compiling FontExtensions.swift, UIColor+Image.swift, UITextRangeExtensions.swift, TextProcessing.swift, TextProcessor.swift, ListTextProcessor.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling ListOutdentCommand.swift, StrikethroughCommand.swift, UnderlineCommand.swift, EditorCommand.swift, EditorCommandExecutor.swift, AttributesEncoding.swift, EditorContentEncoding.swift (in target 'Proton' from project 'Proton')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-3RWLJGT9IFKWLY0XOB8ANEVMF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-3RWLJGT9IFKWLY0XOB8ANEVMF.scan
SwiftDriverJobDiscovery normal arm64 Compiling EditorViewDelegate.swift, AttributesToggleCommand.swift, BoldCommand.swift, FontTraitToggleCommand.swift, ItalicsCommand.swift, ListCommand.swift, ListIndentCommand.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncTextResolver.swift, Attachment.swift, AttachmentContent.swift, AttachmentSize.swift, Focusable.swift, SelectionView.swift, AutogrowingTextView.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling GestureRegognizerDelegateOverride.swift, LayoutManager.swift, LineNumberFormatting.swift, ListFormattingProvider.swift, ListParser.swift, NullRichTextEditorContext.swift, RichTextEditorContext.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling RichTextRendererContext.swift, RichTextView.swift, RichTextViewContext.swift, RichTextViewDelegate.swift, SequenceGenerator.swift, TextContainer.swift, AttributesDecoding.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling Grid.swift, GridCellStore.swift, GridConfiguration.swift, GridCell.swift, GridContentView.swift, GridView.swift, GradientView.swift (in target 'Proton' from project 'Proton')
SwiftDriverJobDiscovery normal arm64 Compiling EditorContentDecoding.swift, AggregateEditorViewDelegate.swift, EditorContent.swift, EditorContentIdentifying.swift, EditorContentView.swift, EditorView.swift, EditorViewContext.swift (in target 'Proton' from project 'Proton')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-7QQMD9LNOBMKSRM0DMFZZ7B5Q.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-7QQMD9LNOBMKSRM0DMFZZ7B5Q.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-1SYJRD918X473YDYJLR4CXT7D.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-1SYJRD918X473YDYJLR4CXT7D.scan
SwiftDriver\ Compilation Proton normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Proton -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ProtonCore.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4U29S9PMQQMCFICCDJLGSE8L1.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4U29S9PMQQMCFICCDJLGSE8L1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-4J9U4PUIRJVONZF3T5RJLU2AO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-4J9U4PUIRJVONZF3T5RJLU2AO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-94O9DSO60DU4W3NB6QHD2IHTX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-94O9DSO60DU4W3NB6QHD2IHTX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-EW7JS94TG7G14EM0TVBX052RQ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-EW7JS94TG7G14EM0TVBX052RQ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreText-5RRRM5YWLQHFACPR1LWA1TB28.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreText-5RRRM5YWLQHFACPR1LWA1TB28.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ImageIO-3X0VSBTYVOOGB63QAM5H5UM7Y.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ImageIO-3X0VSBTYVOOGB63QAM5H5UM7Y.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-BRRA9AYESE4P3MRA25SLWFV1J.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-BRRA9AYESE4P3MRA25SLWFV1J.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-4QDGQCSTLDWLPPDDOAOFDQKE2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UserNotifications-4QDGQCSTLDWLPPDDOAOFDQKE2.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PREditorContentName.o /Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/PREditorContentName.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'ProtonCore' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PREditorContentName.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PREditorContentName.dia -c /Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/PREditorContentName.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PREditorContentName.o -index-unit-output-path /Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PREditorContentName.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-A6LL54WJDPP3L7YRTZZCT9AS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-A6LL54WJDPP3L7YRTZZCT9AS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-7J4JWZLONLFTJHZ0T7SXX2JG3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/FileProvider-7J4JWZLONLFTJHZ0T7SXX2JG3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-3RRUXELSD87QFRMBEUMMGHCS7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/OpenGLES-3RRUXELSD87QFRMBEUMMGHCS7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-7X39WCA3SCRJ80EJ3YNW5ZOZL.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-7X39WCA3SCRJ80EJ3YNW5ZOZL.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreVideo-4JU2YTTACLJYH2LNDOUNGTM9U.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreVideo-4JU2YTTACLJYH2LNDOUNGTM9U.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreImage-27933U224H2OL1MS4O5TED02Y.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreImage-27933U224H2OL1MS4O5TED02Y.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/QuartzCore-8V9AA7BI09FNBA27NERUAA2OC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/QuartzCore-8V9AA7BI09FNBA27NERUAA2OC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-40N06YQEN2V9KZ5SHAKKPNLPP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/UIKit-40N06YQEN2V9KZ5SHAKKPNLPP.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PRTextStorage.o /Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/PRTextStorage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'ProtonCore' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PRTextStorage.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PRTextStorage.dia -c /Users/admin/builder/spi-builder-workspace/Proton/Sources/ObjC/PRTextStorage.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PRTextStorage.o -index-unit-output-path /Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/PRTextStorage.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ProtonCore.o normal (in target 'ProtonCore' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/ProtonCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/ProtonCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/ProtonCore.build/Objects-normal/arm64/ProtonCore_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ProtonCore.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ProtonCore.o (in target 'ProtonCore' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ProtonCore.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.o normal (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.o
ExtractAppIntentsMetadata (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Proton --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.Proton --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Proton.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Proton.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Proton.build/Debug-iphoneos/Proton.build/Objects-normal/arm64/Proton.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-28 07:41:27.485 appintentsmetadataprocessor[885:4717] Starting appintentsmetadataprocessor export
2025-04-28 07:41:27.526 appintentsmetadataprocessor[885:4717] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.o (in target 'Proton' from project 'Proton')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Proton.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-snapshot-testing",
"requirement" : {
"branch" : [
"master"
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-snapshot-testing.git"
}
],
"manifest_display_name" : "Proton",
"name" : "Proton",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Proton",
"targets" : [
"Proton"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ProtonCore",
"targets" : [
"ProtonCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ProtonTests",
"module_type" : "SwiftTarget",
"name" : "ProtonTests",
"path" : "Proton/Tests",
"product_dependencies" : [
"SnapshotTesting"
],
"sources" : [
"AsyncTextResolver/AsyncTextResolverSnapshotTests.swift",
"Attachments/AttachmentUpdateSnapshotTests.swift",
"Attachments/GridViewAttachment.swift",
"Attachments/Mocks/RichTextAttachmentView.swift",
"Attachments/ViewAttachmentSnapshotTests.swift",
"Base/AutogrowingTextViewSnapshotTests.swift",
"Base/AutogrowingTextViewTests.swift",
"Base/Mocks/MockAutogrowingTextViewDelegate.swift",
"Core/EditorKeyTests.swift",
"Core/ListParserTests.swift",
"Core/ListsSnapshotTests.swift",
"Core/Mocks/MockDefaultTextFormattingProvider.swift",
"Core/Mocks/MockKeyboardPress.swift",
"Core/Mocks/MockListFormattingProvider.swift",
"Core/Mocks/MockRichTextViewDelegate.swift",
"Core/Mocks/MockRichTextViewListDelegate.swift",
"Core/RichTextViewContextTests.swift",
"Core/RichTextViewSnapshotTests.swift",
"Core/RichTextViewTests.swift",
"Core/TextBlockAttributeTests.swift",
"Core/TextStorageTests.swift",
"Editor/EditorContentTransformerTests.swift",
"Editor/EditorContextDelegateTests.swift",
"Editor/EditorListsSnapshotTests.swift",
"Editor/EditorSnapshotTests.swift",
"Editor/EditorViewContextSnapshotTests.swift",
"Editor/EditorViewContextTests.swift",
"Editor/EditorViewDelegateTests.swift",
"Editor/EditorViewMenuTests.swift",
"Editor/EditorViewTests.swift",
"Editor/EditorViewportSnapshotTests.swift",
"Editor/Mocks/MockAsyncAttachmentRenderingDelegate.swift",
"Editor/Mocks/MockAttachment.swift",
"Editor/Mocks/MockAttachmentOffsetProvider.swift",
"Editor/Mocks/MockEditorViewDelegate.swift",
"Editor/Mocks/MockLineNumberProvider.swift",
"EditorCommands/AttributesCommandTests.swift",
"EditorCommands/EditorCommandExecutorTests.swift",
"EditorCommands/EditorCommandSnapshotTests.swift",
"EditorCommands/FontTraitToggleCommandTests.swift",
"EditorCommands/ListCommandTests.swift",
"EditorCommands/Mocks/MockEditorCommand.swift",
"EditorCommands/Mocks/MockEditorCommandExecutorDelegate.swift",
"Encoding/EditorContentEncoderTests.swift",
"ExtensionTests/NSAttributedStringExtensionTests.swift",
"Grid/GridCellTests.swift",
"Grid/GridTests.swift",
"Grid/GridViewAttachmentSnapshotTests.swift",
"Grid/GridViewSnapshotTests.swift",
"Grid/GridViewTests.swift",
"Grid/Mocks/MockGridCellDelegate.swift",
"Grid/Mocks/MockGridViewDelegate.swift",
"Helpers/EditorTestViewController.swift",
"Helpers/GenericViewTestViewController.swift",
"Helpers/RichTextViewTestViewController.swift",
"Helpers/SnapshotTestCase.swift",
"Helpers/SnapshotTestViewController.swift",
"Helpers/TextTransformer.swift",
"Helpers/UIView+Render.swift",
"Helpers/Views/AutogrowingTextField.swift",
"Helpers/Views/InlineEditorView.swift",
"Helpers/Views/PanelView.swift",
"Helpers/XCTestHelpers.swift",
"TextProcessors/Mocks/MockTextProcessor.swift",
"TextProcessors/Processors/TestTextProcessor.swift",
"TextProcessors/TextProcessorTests.swift"
],
"target_dependencies" : [
"Proton"
],
"type" : "test"
},
{
"c99name" : "ProtonCore",
"module_type" : "ClangTarget",
"name" : "ProtonCore",
"path" : "Proton/Sources/ObjC",
"product_memberships" : [
"Proton",
"ProtonCore"
],
"sources" : [
"PREditorContentName.m",
"PRTextStorage.m"
],
"type" : "library"
},
{
"c99name" : "Proton",
"module_type" : "SwiftTarget",
"name" : "Proton",
"path" : "Proton/Sources/Swift",
"product_memberships" : [
"Proton"
],
"sources" : [
"AsyncTextResolver/AsyncTextResolver.swift",
"Attachment/Attachment.swift",
"Attachment/AttachmentContent.swift",
"Attachment/AttachmentSize.swift",
"Attachment/Focusable.swift",
"Attachment/SelectionView.swift",
"Base/AutogrowingTextView.swift",
"Base/BackgroundStyle.swift",
"Base/NSAttributedString+ContentTypes.swift",
"Base/NSParagraphStyleExtensions.swift",
"Base/Types.swift",
"Core/AsyncTaskScheduler.swift",
"Core/CommandName.swift",
"Core/EditorLineNumberProvider.swift",
"Core/GestureRegognizerDelegateOverride.swift",
"Core/LayoutManager.swift",
"Core/LineNumberFormatting.swift",
"Core/ListFormattingProvider.swift",
"Core/ListParser.swift",
"Core/NullRichTextEditorContext.swift",
"Core/RichTextEditorContext.swift",
"Core/RichTextRendererContext.swift",
"Core/RichTextView.swift",
"Core/RichTextViewContext.swift",
"Core/RichTextViewDelegate.swift",
"Core/SequenceGenerator.swift",
"Core/TextContainer.swift",
"Decoding/AttributesDecoding.swift",
"Decoding/EditorContentDecoding.swift",
"Editor/AggregateEditorViewDelegate.swift",
"Editor/EditorContent.swift",
"Editor/EditorContentIdentifying.swift",
"Editor/EditorContentView.swift",
"Editor/EditorView.swift",
"Editor/EditorViewContext.swift",
"Editor/EditorViewDelegate.swift",
"EditorCommand/Commands/AttributesToggleCommand.swift",
"EditorCommand/Commands/BoldCommand.swift",
"EditorCommand/Commands/FontTraitToggleCommand.swift",
"EditorCommand/Commands/ItalicsCommand.swift",
"EditorCommand/Commands/List/ListCommand.swift",
"EditorCommand/Commands/List/ListIndentCommand.swift",
"EditorCommand/Commands/List/ListOutdentCommand.swift",
"EditorCommand/Commands/StrikethroughCommand.swift",
"EditorCommand/Commands/UnderlineCommand.swift",
"EditorCommand/EditorCommand.swift",
"EditorCommand/EditorCommandExecutor.swift",
"Encoding/AttributesEncoding.swift",
"Encoding/EditorContentEncoding.swift",
"Grid/Core/Grid.swift",
"Grid/Core/GridCellStore.swift",
"Grid/Core/GridConfiguration.swift",
"Grid/View/GridCell.swift",
"Grid/View/GridContentView.swift",
"Grid/View/GridView.swift",
"Helpers/GradientView.swift",
"Helpers/Logger.swift",
"Helpers/NSAttributedString+Content.swift",
"Helpers/NSAttributedString+Range.swift",
"Helpers/NSRangeExtensions.swift",
"Helpers/String+NSRange.swift",
"Helpers/SynchronizedArray.swift",
"Helpers/Text/FontExtensions.swift",
"Helpers/UIColor+Image.swift",
"Helpers/UITextRangeExtensions.swift",
"TextProcessors/TextProcessing.swift",
"TextProcessors/TextProcessor.swift",
"TextProcessors/TextProcessors/ListTextProcessor.swift"
],
"target_dependencies" : [
"ProtonCore"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:31:10: warning: 'package(name:url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
29 | ],
30 | dependencies: [
31 | .package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .branch("master"))
| `- warning: 'package(name:url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
32 | ],
33 | targets: [
/Users/admin/builder/spi-builder-workspace/Package.swift:31:110: warning: 'branch' is deprecated
29 | ],
30 | dependencies: [
31 | .package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .branch("master"))
| `- warning: 'branch' is deprecated
32 | ],
33 | targets: [
Done.