Build Information
Successful build of Inspector, reference 3.3.0 (eadf77
), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 18:10:27 UTC.
Swift 6 data race errors: 150
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Inspector-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
@property(nonatomic) UIKeyboardType keyboardType; // default is UIKeyboardTypeDefault
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:260:34: warning: main actor-isolated property 'keyboardType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
textView.keyboardType = keyboardType
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:250:37: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIKeyboardType keyboardType; // default is UIKeyboardTypeDefault
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:267:96: warning: main actor-isolated property 'keyboardAppearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIKeyboardAppearance.allCases.firstIndex(of: textView.keyboardAppearance) }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:251:43: note: property declared here
@property(nonatomic) UIKeyboardAppearance keyboardAppearance; // default is UIKeyboardAppearanceDefault
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:272:34: warning: main actor-isolated property 'keyboardAppearance' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
textView.keyboardAppearance = keyboardAppearance
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:251:43: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIKeyboardAppearance keyboardAppearance; // default is UIKeyboardAppearanceDefault
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:278:91: warning: main actor-isolated property 'returnKeyType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIReturnKeyType.allCases.firstIndex(of: textView.returnKeyType) }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:252:38: note: property declared here
@property(nonatomic) UIReturnKeyType returnKeyType; // default is UIReturnKeyDefault (See note under UIReturnKeyType enum)
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:283:34: warning: main actor-isolated property 'returnKeyType' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
textView.returnKeyType = returnKeyType
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:252:38: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIReturnKeyType returnKeyType; // default is UIReturnKeyDefault (See note under UIReturnKeyType enum)
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:288:42: warning: main actor-isolated property 'enablesReturnKeyAutomatically' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { textView.enablesReturnKeyAutomatically }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:253:27: note: property declared here
@property(nonatomic) BOOL enablesReturnKeyAutomatically; // default is NO (when YES, will automatically disable return key when text widget has zero-length contents, and will automatically enable when text widget has non-zero-length contents)
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:290:34: warning: main actor-isolated property 'enablesReturnKeyAutomatically' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
textView.enablesReturnKeyAutomatically = enablesReturnKeyAutomatically
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:253:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL enablesReturnKeyAutomatically; // default is NO (when YES, will automatically disable return key when text widget has zero-length contents, and will automatically enable when text widget has non-zero-length contents)
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:295:42: warning: main actor-isolated property 'isSecureTextEntry' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { textView.isSecureTextEntry }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:254:52: note: property declared here
@property(nonatomic,getter=isSecureTextEntry) BOOL secureTextEntry; // default is NO
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift:297:34: warning: main actor-isolated property 'isSecureTextEntry' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
textView.isSecureTextEntry = isSecureTextEntry
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h:254:52: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isSecureTextEntry) BOOL secureTextEntry; // default is NO
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:66:90: warning: main actor-isolated property 'contentMode' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIView.ContentMode.allCases.firstIndex(of: view.contentMode) }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:308:56: note: property declared here
@property(nonatomic) UIViewContentMode contentMode; // default is UIViewContentModeScaleToFill
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:71:30: warning: main actor-isolated property 'contentMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.contentMode = contentMode
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:308:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIViewContentMode contentMode; // default is UIViewContentModeScaleToFill
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:77:98: warning: main actor-isolated property 'semanticContentAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UISemanticContentAttribute.allCases.firstIndex(of: view.semanticContentAttribute) }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:169:50: note: property declared here
@property (nonatomic) UISemanticContentAttribute semanticContentAttribute API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:82:30: warning: main actor-isolated property 'semanticContentAttribute' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.semanticContentAttribute = semanticContentAttribute
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:169:50: note: mutation of this property is only permitted within the actor
@property (nonatomic) UISemanticContentAttribute semanticContentAttribute API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:87:39: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { view.tag },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:91:30: warning: main actor-isolated property 'tag' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.tag = newValue
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: mutation of this property is only permitted within the actor
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:96:43: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
placeholder: view.accessibilityIdentifier?.trimmed ?? property.rawValue,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:97:39: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { view.accessibilityIdentifier?.trimmed }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:99:30: warning: main actor-isolated property 'accessibilityIdentifier' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.accessibilityIdentifier = accessibilityIdentifier?.trimmed
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:100:46: warning: call to main actor-isolated instance method 'updateElementName()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
view._highlightView?.updateElementName()
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/HighlightView.swift:343:10: note: calls to instance method 'updateElementName()' from outside of its actor context are implicitly asynchronous
func updateElementName() {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/HighlightView.swift:343:10: note: main actor isolation inferred from inheritance from class 'LayerView'
func updateElementName() {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:100:30: warning: main actor-isolated property '_highlightView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
view._highlightView?.updateElementName()
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift:24:9: note: property declared here
var _highlightView: HighlightView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:109:70: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let element = view._highlightView?.element as? ViewHierarchyElement else {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/LayerView.swift:34:9: note: property declared here
var element: ViewHierarchyElementReference
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:109:54: warning: main actor-isolated property '_highlightView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let element = view._highlightView?.element as? ViewHierarchyElement else {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift:24:9: note: property declared here
var _highlightView: HighlightView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:110:45: warning: main actor-isolated property 'isUserInteractionEnabled' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return view.isUserInteractionEnabled
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: property declared here
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:115:66: warning: main actor-isolated property 'element' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let element = view._highlightView?.element as? ViewHierarchyElement else {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/LayerView.swift:34:9: note: property declared here
var element: ViewHierarchyElementReference
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:115:50: warning: main actor-isolated property '_highlightView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let element = view._highlightView?.element as? ViewHierarchyElement else {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift:24:9: note: property declared here
var _highlightView: HighlightView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:116:34: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.isUserInteractionEnabled = isUserInteractionEnabled
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:124:38: warning: main actor-isolated property 'isMultipleTouchEnabled' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.isMultipleTouchEnabled }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:200:57: note: property declared here
@property(nonatomic,getter=isMultipleTouchEnabled) BOOL multipleTouchEnabled API_UNAVAILABLE(tvos); // default is NO
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:126:30: warning: main actor-isolated property 'isMultipleTouchEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.isMultipleTouchEnabled = isMultipleTouchEnabled
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:200:57: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isMultipleTouchEnabled) BOOL multipleTouchEnabled API_UNAVAILABLE(tvos); // default is NO
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:134:39: warning: main actor-isolated property 'alpha' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { view.alpha },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: property declared here
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:138:30: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.alpha = alpha
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:143:39: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
color: { view.backgroundColor }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:145:30: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.backgroundColor = backgroundColor
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:150:39: warning: main actor-isolated property 'tintColor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
color: { view.tintColor }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:319:56: note: property declared here
@property(null_resettable, nonatomic, strong) UIColor *tintColor API_AVAILABLE(ios(7.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:152:30: warning: main actor-isolated property 'tintColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.tintColor = tintColor
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:319:56: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic, strong) UIColor *tintColor API_AVAILABLE(ios(7.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:160:38: warning: main actor-isolated property 'isOpaque' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.isOpaque }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:305:56: note: property declared here
@property(nonatomic,getter=isOpaque) BOOL opaque; // default is YES. opaque views must fill their entire bounds or the results are undefined. the active CGContext in drawRect: will not have been cleared and may have non-zeroed pixels
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:162:30: warning: main actor-isolated property 'isOpaque' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.isOpaque = isOpaque
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:305:56: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isOpaque) BOOL opaque; // default is YES. opaque views must fill their entire bounds or the results are undefined. the active CGContext in drawRect: will not have been cleared and may have non-zeroed pixels
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:167:38: warning: main actor-isolated property 'isHidden' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.isHidden }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: property declared here
@property(nonatomic,getter=isHidden) BOOL hidden; // default is NO. doesn't check superviews
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:169:30: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.isHidden = isHidden
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isHidden) BOOL hidden; // default is NO. doesn't check superviews
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:174:38: warning: main actor-isolated property 'clearsContextBeforeDrawing' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.clearsContextBeforeDrawing }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:306:56: note: property declared here
@property(nonatomic) BOOL clearsContextBeforeDrawing; // default is YES. ignored for opaque views. for non-opaque views causes the active CGContext in drawRect: to be pre-filled with transparent pixels
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:176:30: warning: main actor-isolated property 'clearsContextBeforeDrawing' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.clearsContextBeforeDrawing = clearsContextBeforeDrawing
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:306:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL clearsContextBeforeDrawing; // default is YES. ignored for opaque views. for non-opaque views causes the active CGContext in drawRect: to be pre-filled with transparent pixels
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:181:38: warning: main actor-isolated property 'clipsToBounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.clipsToBounds }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:302:56: note: property declared here
@property(nonatomic) BOOL clipsToBounds; // When YES, content and subviews are clipped to the bounds of the view. Default is NO.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:183:30: warning: main actor-isolated property 'clipsToBounds' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.clipsToBounds = clipsToBounds
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:302:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL clipsToBounds; // When YES, content and subviews are clipped to the bounds of the view. Default is NO.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:188:38: warning: main actor-isolated property 'autoresizesSubviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { view.autoresizesSubviews }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:211:41: note: property declared here
@property(nonatomic) BOOL autoresizesSubviews; // default is YES. if set, subviews are adjusted according to their autoresizingMask if self.bounds changes
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift:190:30: warning: main actor-isolated property 'autoresizesSubviews' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
view.autoresizesSubviews = autoresizesSubviews
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:211:41: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL autoresizesSubviews; // default is YES. if set, subviews are adjusted according to their autoresizingMask if self.bounds changes
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:31:26: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var isInitialViewController: Bool? = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:84:49: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { viewController.title },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: property declared here
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:85:51: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { viewController.title = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:99:48: warning: main actor-isolated property 'hidesBottomBarWhenPushed' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.hidesBottomBarWhenPushed },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:130:27: note: property declared here
@property(nonatomic) BOOL hidesBottomBarWhenPushed API_UNAVAILABLE(tvos); // If YES, then when this view controller is pushed into a controller hierarchy with a bottom bar (like a tab bar), the bottom bar will slide out. Default is NO.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:100:51: warning: main actor-isolated property 'hidesBottomBarWhenPushed' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { viewController.hidesBottomBarWhenPushed = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:130:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL hidesBottomBarWhenPushed API_UNAVAILABLE(tvos); // If YES, then when this view controller is pushed into a controller hierarchy with a bottom bar (like a tab bar), the bottom bar will slide out. Default is NO.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:105:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.edgesForExtendedLayout.contains(.top) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: property declared here
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:109:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.edgesForExtendedLayout.insert(.top)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:111:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.edgesForExtendedLayout.remove(.top)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:118:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.edgesForExtendedLayout.contains(.bottom) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: property declared here
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:122:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.edgesForExtendedLayout.insert(.bottom)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:124:48: warning: main actor-isolated property 'edgesForExtendedLayout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.edgesForExtendedLayout.remove(.bottom)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:292:40: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:131:48: warning: main actor-isolated property 'extendedLayoutIncludesOpaqueBars' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.extendedLayoutIncludesOpaqueBars },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:293:34: note: property declared here
@property(nonatomic,assign) BOOL extendedLayoutIncludesOpaqueBars API_AVAILABLE(ios(7.0)); // Defaults to NO, but bars are translucent by default on 7_0.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:132:51: warning: main actor-isolated property 'extendedLayoutIncludesOpaqueBars' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { viewController.extendedLayoutIncludesOpaqueBars = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:293:34: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) BOOL extendedLayoutIncludesOpaqueBars API_AVAILABLE(ios(7.0)); // Defaults to NO, but bars are translucent by default on 7_0.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:140:104: warning: main actor-isolated property 'modalTransitionStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIModalTransitionStyle.allCases.firstIndex(of: viewController.modalTransitionStyle) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:267:52: note: property declared here
@property(nonatomic,assign) UIModalTransitionStyle modalTransitionStyle API_AVAILABLE(ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:145:44: warning: main actor-isolated property 'modalTransitionStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.modalTransitionStyle = modalTransitionStyle
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:267:52: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalTransitionStyle modalTransitionStyle API_AVAILABLE(ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:154:106: warning: main actor-isolated property 'modalPresentationStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIModalPresentationStyle.allCases.firstIndex(of: viewController.modalPresentationStyle) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: property declared here
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:159:44: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.modalPresentationStyle = modalPresentationStyle
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:165:48: warning: main actor-isolated property 'definesPresentationContext' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.definesPresentationContext },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:220:34: note: property declared here
@property(nonatomic,assign) BOOL definesPresentationContext API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:166:51: warning: main actor-isolated property 'definesPresentationContext' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { viewController.definesPresentationContext = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:220:34: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) BOOL definesPresentationContext API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:171:48: warning: main actor-isolated property 'providesPresentationContextTransitionStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { viewController.providesPresentationContextTransitionStyle },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:223:34: note: property declared here
@property(nonatomic,assign) BOOL providesPresentationContextTransitionStyle API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:172:51: warning: main actor-isolated property 'providesPresentationContextTransitionStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { viewController.providesPresentationContextTransitionStyle = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:223:34: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) BOOL providesPresentationContextTransitionStyle API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:177:48: warning: main actor-isolated property 'preferredContentSize' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
size: { viewController.preferredContentSize },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:313:30: note: property declared here
@property (nonatomic) CGSize preferredContentSize API_AVAILABLE(ios(7.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift:180:44: warning: main actor-isolated property 'preferredContentSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.preferredContentSize = preferredContentSize
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:313:30: note: mutation of this property is only permitted within the actor
@property (nonatomic) CGSize preferredContentSize API_AVAILABLE(ios(7.0));
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:56:40: warning: main actor-isolated property 'canResizeToFitContent' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { window.canResizeToFitContent },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:32:61: note: property declared here
@property(nonatomic, setter=setCanResizeToFitContent:) BOOL canResizeToFitContent API_AVAILABLE(macCatalyst(13.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:58:36: warning: main actor-isolated property 'canResizeToFitContent' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
window.canResizeToFitContent = canResizeToFitContent
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:32:61: note: mutation of this property is only permitted within the actor
@property(nonatomic, setter=setCanResizeToFitContent:) BOOL canResizeToFitContent API_AVAILABLE(macCatalyst(13.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:67:47: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rect: { window.screen.bounds },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect bounds; // Bounds of entire screen in points
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:67:40: warning: main actor-isolated property 'screen' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rect: { window.screen.bounds },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:34:39: note: property declared here
@property(nonatomic,strong) UIScreen *screen API_AVAILABLE(ios(3.2)) API_UNAVAILABLE(visionos); // default is [UIScreen mainScreen]. changing the screen may be an expensive operation and should not be done in performance-sensitive code
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:73:48: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { window.screen.scale },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:73:41: warning: main actor-isolated property 'screen' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { window.screen.scale },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:34:39: note: property declared here
@property(nonatomic,strong) UIScreen *screen API_AVAILABLE(ios(3.2)) API_UNAVAILABLE(visionos); // default is [UIScreen mainScreen]. changing the screen may be an expensive operation and should not be done in performance-sensitive code
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:74:52: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
range: { 0...window.screen.scale },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:74:45: warning: main actor-isolated property 'screen' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
range: { 0...window.screen.scale },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:34:39: note: property declared here
@property(nonatomic,strong) UIScreen *screen API_AVAILABLE(ios(3.2)) API_UNAVAILABLE(visionos); // default is [UIScreen mainScreen]. changing the screen may be an expensive operation and should not be done in performance-sensitive code
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:81:41: warning: main actor-isolated property 'windowLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { window.windowLevel.rawValue },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:37:36: note: property declared here
@property(nonatomic) UIWindowLevel windowLevel; // default = 0.0
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:89:40: warning: main actor-isolated property 'isKeyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { window.isKeyWindow },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:42:55: note: property declared here
@property(nonatomic,readonly,getter=isKeyWindow) BOOL keyWindow;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift:98:40: warning: main actor-isolated property 'canBecomeKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { window.canBecomeKey },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:45:38: note: property declared here
@property (nonatomic, readonly) BOOL canBecomeKeyWindow API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(watchos);
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HierarchyIdentitySectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift:32:41: warning: main actor-isolated property '_highlightView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let highlightView = view._highlightView {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift:24:9: note: property declared here
var _highlightView: HighlightView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift:55:48: warning: main actor-isolated property 'isHidden' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { !highlightView.isHidden },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: property declared here
@property(nonatomic,getter=isHidden) BOOL hidden; // default is NO. doesn't check superviews
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift:57:43: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
highlightView.isHidden = !isOn
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isHidden) BOOL hidden; // default is NO. doesn't check superviews
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift:64:108: warning: main actor-isolated property 'displayMode' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { ElementNameView.DisplayMode.allCases.firstIndex(of: highlightView.displayMode) },
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/HighlightView.swift:42:9: note: property declared here
var displayMode: ElementNameView.DisplayMode {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift:70:43: warning: main actor-isolated property 'displayMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
highlightView.displayMode = displayMode
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ViewHierarchy/Views/HighlightView.swift:42:9: note: mutation of this property is only permitted within the actor
var displayMode: ElementNameView.DisplayMode {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/PreviewIdentitySectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Configuration/InspectorAppearance.swift:39:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
var highlightLayerBorderWidth: CGFloat = 2 / UIScreen.main.scale
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Configuration/InspectorAppearance.swift:41:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
var wireframeLayerBorderWidth: CGFloat = 1 / UIScreen.main.scale
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/RuntimeAttributesIdentitySectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Identity/RuntimeAttributesIdentitySectionDataSource.swift:136:39: warning: main actor-isolated property 'elementDescription' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { view.elementDescription },
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/UIView/UIView+ViewHierarchyElementRepresentable.swift:191:9: note: property declared here
var elementDescription: String {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:50:42: warning: main actor-isolated property 'contentEdgeInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { button.contentEdgeInsets },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:162:35: note: property declared here
@property(nonatomic) UIEdgeInsets contentEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0,15.0), tvos(2.0,15.0), visionos(1.0, 1.0)) UI_APPEARANCE_SELECTOR API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero. On tvOS 10 or later, default is nonzero except for custom buttons.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:51:43: warning: main actor-isolated property 'contentEdgeInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { button.contentEdgeInsets = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:162:35: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets contentEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0,15.0), tvos(2.0,15.0), visionos(1.0, 1.0)) UI_APPEARANCE_SELECTOR API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero. On tvOS 10 or later, default is nonzero except for custom buttons.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:56:42: warning: main actor-isolated property 'imageEdgeInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { button.imageEdgeInsets },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:164:35: note: property declared here
@property(nonatomic) UIEdgeInsets imageEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0, 15.0), tvos(2.0, 15.0), visionos(1.0, 1.0)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:57:43: warning: main actor-isolated property 'imageEdgeInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { button.imageEdgeInsets = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:164:35: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets imageEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0, 15.0), tvos(2.0, 15.0), visionos(1.0, 1.0)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:62:42: warning: main actor-isolated property 'titleEdgeInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { button.titleEdgeInsets },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:163:35: note: property declared here
@property(nonatomic) UIEdgeInsets titleEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0, 15.0), tvos(2.0, 15.0), visionos(1.0, 1.0)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift:63:43: warning: main actor-isolated property 'titleEdgeInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { button.titleEdgeInsets = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:163:35: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets titleEdgeInsets API_DEPRECATED("This property is ignored when using UIButtonConfiguration", ios(2.0, 15.0), tvos(2.0, 15.0), visionos(1.0, 1.0)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:62:88: warning: call to main actor-isolated instance method 'contentHuggingPriority(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UILayoutPriority.allCases.firstIndex(of: view.contentHuggingPriority(for: .horizontal)) },
^
UIKit.UIView.contentHuggingPriority:3:24: note: calls to instance method 'contentHuggingPriority(for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func contentHuggingPriority(for axis: NSLayoutConstraint.Axis) -> UILayoutPriority}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:66:34: warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
view.setContentHuggingPriority(priority, for: .horizontal)
^
UIKit.UIView.setContentHuggingPriority:3:24: note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setContentHuggingPriority(_ priority: UILayoutPriority, for axis: NSLayoutConstraint.Axis)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:74:88: warning: call to main actor-isolated instance method 'contentHuggingPriority(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UILayoutPriority.allCases.firstIndex(of: view.contentHuggingPriority(for: .vertical)) },
^
UIKit.UIView.contentHuggingPriority:3:24: note: calls to instance method 'contentHuggingPriority(for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func contentHuggingPriority(for axis: NSLayoutConstraint.Axis) -> UILayoutPriority}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:78:34: warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
view.setContentHuggingPriority(priority, for: .vertical)
^
UIKit.UIView.setContentHuggingPriority:3:24: note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setContentHuggingPriority(_ priority: UILayoutPriority, for axis: NSLayoutConstraint.Axis)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:85:88: warning: call to main actor-isolated instance method 'contentCompressionResistancePriority(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UILayoutPriority.allCases.firstIndex(of: view.contentCompressionResistancePriority(for: .horizontal)) },
^
UIKit.UIView.contentCompressionResistancePriority:3:24: note: calls to instance method 'contentCompressionResistancePriority(for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func contentCompressionResistancePriority(for axis: NSLayoutConstraint.Axis) -> UILayoutPriority}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:89:34: warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
view.setContentCompressionResistancePriority(priority, for: .horizontal)
^
UIKit.UIView.setContentCompressionResistancePriority:3:24: note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setContentCompressionResistancePriority(_ priority: UILayoutPriority, for axis: NSLayoutConstraint.Axis)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:96:88: warning: call to main actor-isolated instance method 'contentCompressionResistancePriority(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UILayoutPriority.allCases.firstIndex(of: view.contentCompressionResistancePriority(for: .vertical)) },
^
UIKit.UIView.contentCompressionResistancePriority:3:24: note: calls to instance method 'contentCompressionResistancePriority(for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func contentCompressionResistancePriority(for axis: NSLayoutConstraint.Axis) -> UILayoutPriority}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:100:34: warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
view.setContentCompressionResistancePriority(priority, for: .vertical)
^
UIKit.UIView.setContentCompressionResistancePriority:3:24: note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func setContentCompressionResistancePriority(_ priority: UILayoutPriority, for axis: NSLayoutConstraint.Axis)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift:110:38: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
size: { view.intrinsicContentSize },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift:48:40: warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { label.preferredMaxLayoutWidth },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:102:30: note: property declared here
@property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(6.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift:51:42: warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { label.preferredMaxLayoutWidth = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:102:30: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(6.0));
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:39:66: warning: main actor-isolated property 'safeIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var subtitle: String? { constraint.underlyingConstraint?.safeIdentifier }
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift:24:9: note: property declared here
var safeIdentifier: String? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:49:46: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isOn: { underlyingConstraint.isActive },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:50:49: warning: main actor-isolated property 'isActive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { underlyingConstraint.isActive = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: mutation of this property is only permitted within the actor
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:74:55: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { underlyingConstraint.constant },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:77:57: warning: main actor-isolated property 'constant' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { underlyingConstraint.constant = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: mutation of this property is only permitted within the actor
@property CGFloat constant;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:86:55: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { underlyingConstraint.multiplier },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:94:71: warning: main actor-isolated property 'safeIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
placeholder: constraint.underlyingConstraint?.safeIdentifier ?? property.rawValue,
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift:24:9: note: property declared here
var safeIdentifier: String? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:96:55: warning: main actor-isolated property 'safeIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { underlyingConstraint.safeIdentifier },
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift:24:9: note: property declared here
var safeIdentifier: String? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:97:57: warning: main actor-isolated property 'identifier' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { underlyingConstraint.identifier = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:196:38: note: mutation of this property is only permitted within the actor
@property (nullable, copy) NSString *identifier API_AVAILABLE(macos(10.7), ios(7.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:102:55: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
value: { underlyingConstraint.priority.rawValue },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:105:57: warning: main actor-isolated property 'priority' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { underlyingConstraint.priority = .init($0) }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: mutation of this property is only permitted within the actor
@property UILayoutPriority priority;
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift:121:115: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { NSLayoutConstraint.Relation.allCases.firstIndex(of: underlyingConstraint.relation) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:53:46: warning: main actor-isolated property 'verticalScrollIndicatorInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { scrollView.verticalScrollIndicatorInsets },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:129:59: note: property declared here
@property(nonatomic) UIEdgeInsets verticalScrollIndicatorInsets API_AVAILABLE(ios(11.1), tvos(11.1)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:54:47: warning: main actor-isolated property 'verticalScrollIndicatorInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { scrollView.verticalScrollIndicatorInsets = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:129:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets verticalScrollIndicatorInsets API_AVAILABLE(ios(11.1), tvos(11.1)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:59:46: warning: main actor-isolated property 'horizontalScrollIndicatorInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { scrollView.horizontalScrollIndicatorInsets },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:130:59: note: property declared here
@property(nonatomic) UIEdgeInsets horizontalScrollIndicatorInsets API_AVAILABLE(ios(11.1), tvos(11.1)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:60:47: warning: main actor-isolated property 'horizontalScrollIndicatorInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { scrollView.horizontalScrollIndicatorInsets = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:130:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets horizontalScrollIndicatorInsets API_AVAILABLE(ios(11.1), tvos(11.1)) API_UNAVAILABLE(watchos); // default is UIEdgeInsetsZero.
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:67:121: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
selectedIndex: { UIScrollView.ContentInsetAdjustmentBehavior.allCases.firstIndex(of: scrollView.contentInsetAdjustmentBehavior) },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: note: property declared here
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:71:40: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentInsetAdjustmentBehavior = contentInsetAdjustmentBehavior
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:77:46: warning: main actor-isolated property 'contentInset' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { scrollView.contentInset },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: note: property declared here
@property(nonatomic) UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll area around content
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:78:47: warning: main actor-isolated property 'contentInset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
handler: { scrollView.contentInset = $0 }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll area around content
^
/Users/admin/builder/spi-builder-workspace/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift:86:46: warning: main actor-isolated property 'adjustedContentInset' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
insets: { scrollView.adjustedContentInset },
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:67:45: note: property declared here
@property(nonatomic, readonly) UIEdgeInsets adjustedContentInset API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Inspector-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector-Swift.h (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Inspector-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, BaseCardView.swift, BaseControl.swift, BaseFormControl.swift, BaseView.swift, ScrollingStackView.swift, AccessoryControl.swift, ColorPreviewControl.swift, DirectionalEdgeInsetsControl.swift, EdgeInsetsControl.swift, ImagePreviewControl.swift, NoteControl.swift, OffsetControl.swift, OptionListControl.swift, PointControl.swift, RectControl.swift, SegmentedControl.swift, SizeControl.swift, StepperControl.swift, StepperPairControl.swift, TextFieldControl.swift, TextViewControl.swift, ToggleControl.swift, Animation.swift (in target 'Inspector' from project 'Inspector')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftmodule (in target 'Inspector' from project 'Inspector')
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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftdoc (in target 'Inspector' from project 'Inspector')
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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.abi.json (in target 'Inspector' from project 'Inspector')
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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftsourceinfo (in target 'Inspector' from project 'Inspector')
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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver\ Compilation CoordinatorAPI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoordinatorAPI' from project 'Coordinator')
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 CoordinatorAPI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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-ios12.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 -suppress-warnings -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 -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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI-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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI_const_extract_protocols.json -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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation Coordinator normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Coordinator' from project 'Coordinator')
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 Coordinator -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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-ios12.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 -suppress-warnings -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/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator-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/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator_const_extract_protocols.json -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/Coordinator.build/Debug-iphoneos/Coordinator.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.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/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.o normal (in target 'CoordinatorAPI' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI_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/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.o
ExtractAppIntentsMetadata (in target 'CoordinatorAPI' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
/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 CoordinatorAPI --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 12.0 --bundle-identifier coordinator.CoordinatorAPI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/CoordinatorAPI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/CoordinatorAPI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:10:22.049 appintentsmetadataprocessor[964:5551] Starting appintentsmetadataprocessor export
2025-04-27 11:10:22.091 appintentsmetadataprocessor[964:5551] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.o (in target 'CoordinatorAPI' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoordinatorAPI.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.o normal (in target 'Coordinator' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -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/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator_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/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.o
ExtractAppIntentsMetadata (in target 'Coordinator' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
/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 Coordinator --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 12.0 --bundle-identifier coordinator.Coordinator --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Coordinator.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Coordinator.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:10:22.181 appintentsmetadataprocessor[967:5595] Starting appintentsmetadataprocessor export
2025-04-27 11:10:22.221 appintentsmetadataprocessor[967:5595] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling UIKeyboardType+CaseIterable.swift, UIKeyboardType+CustomStringConvertible.swift, UILayoutPriority+CaseIterable.swift, UILayoutPriority+CustomStringConvertible.swift, UIMenu+ViewHierarchyElementRepresentable.swift, UIMenuElement+Convenience.swift, UIModalPresentationStyle+CaseIterable.swift, UIModalPresentationStyle+CustomStringConvertible.swift, UIModalTransitionStyle+CaseIterable.swift, UIModalTransitionStyle+CustomStringConvertible.swift, UIReturnKeyType+CaseIterable.swift, UIReturnKeyType+CustomStringConvertible.swift, UIScrollView.ContentInsetAdjustmentBehavior+CaseIterable.swift, UIScrollView.ContentInsetAdjustmentBehavior+CustomStringConvertible.swift, UIScrollView.IndicatorStyle+CaseIterable.swift, UIScrollView.IndicatorStyle+CustomStringConvertible.swift, UIScrollView.KeyboardDismissMode+CaseIterable.swift, UIScrollView.KeyboardDismissMode+CustomStringConvertible.swift, UISemanticContentAttribute+CaseIterable.swift, UISemanticContentAttribute+CustomStringConvertible.swift, UIStackView.Alignment+CaseIterable.swift, UIStackView.Alignment+CustomStringConvertible.swift, UIStackView.Distribution+CaseIterable.swift, UIStackView.Distribution+CustomStringConvertible.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling UIStackView+Init.swift, UISwitch.Style+CaseIterable.swift, UISwitch.Style+SegmentedControlDisplayable.swift, UITableView+Convenience.swift, UITextAutocapitalizationType+CaseIterable.swift, UITextAutocapitalizationType+CustomStringConvertible.swift, UITextAutocorrectionType+CaseIterable.swift, UITextAutocorrectionType+CustomStringConvertible.swift, UITextContentType+CaseIterable.swift, UITextContentType+CustomStringConvertible.swift, UITextField.BorderStyle+CaseIterable.swift, UITextField.BorderStyle+SegmentedControlDisplayable.swift, UITextField.ViewMode+CaseIterable.swift, UITextField.ViewMode+CustomStringConvertible.swift, UITextSmartDashesType+CaseIterable.swift, UITextSmartDashesType+CustomStringConvertible.swift, UITextSmartQuotesType+CaseIterable.swift, UITextSmartQuotesType+CustomStringConvertible.swift, UITextSpellCheckingType+CaseIterable.swift, UITextSpellCheckingType+CustomStringConvertible.swift, UITextView+Init.swift, UIView.AutoresizingMask+CaseIterable.swift, UIView.AutoresizingMask+CustomStringConvertible.swift, UIView.ContentMode+CaseIterable.swift (in target 'Inspector' from project 'Inspector')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.o (in target 'Coordinator' from project 'Coordinator')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Coordinator
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Coordinator.o
SwiftDriverJobDiscovery normal arm64 Compiling Logger.swift, MainThreadAsyncOperation.swift, MainThreadOperation.swift, Provider.swift, SnapshotStore.swift, ViewHierarchy.swift, ViewHierarchyColorSchemeDefault.swift, ViewHierarchyElement.swift, ViewHierarchyElementAction.swift, ViewHierarchyElementController.swift, ViewHierarchyInformation.swift, ViewHierarchyInterfaceStyle.swift, ViewHierarchyIssue.swift, ViewHierarchyLayer.swift, ViewHierarchyLayerAction.swift, ViewHierarchyRoot.swift, ViewHierarchySnapshot.swift, AdaptiveModalPresenter.swift, ColorPickerPresenter.swift, ContextMenuPresenter.swift, DocumentPickerPresenter.swift, UIViewControllerTransitionPresenter.swift, Actionable.swift, AsyncOperationProtocol.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling ElementInspectorViewController.swift, ElementInspectorViewModel.swift, ElementInspectorViewCode+Content.swift, ElementInspectorViewCode.swift, InspectorElementKeyCommandSectionView.swift, InspectorElementLayoutConstraintSectionView.swift, InspectorElementSectionFormView.swift, ToogleCollapseButton.swift, DefaultElementAttributesLibrary.swift, DefaultElementIdentityLibrary.swift, DefaultElementSizeLibrary.swift, ActivityIndicatorViewAttributesSectionDataSource.swift, ApplicationAttributesSectionDataSource.swift, ApplicationShortcutItemSectionDataSource.swift, ButtonAttributesSectionDataSource.swift, ControlAttributesSectionDataSource.swift, DatePickerAttributesSectionDataSource.swift, ImageViewAttributesSectionDataSource.swift, KeyCommandsSectionDataSource.swift, LabelAttributesSectionDataSource.swift, LayerAttributesSectionDataSource.swift, MapViewAttributesSectionDataSource.swift, NavigationBarAppearanceAttributesSectionDataSource.swift, NavigationBarAttributesSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling ThumbnailBackgroundStyle.swift, Icon.Glyph.swift, Icon.swift, IconButton.swift, IconKit.swift, SectionHeader.swift, SeparatorView.swift, LengthMeasurementView+ArrowView.swift, LengthMeasurementView.swift, SizeInspectorView.swift, LiveViewHierarchyElementThumbnailView.swift, ViewHierarchyElementDescriptionView.swift, ViewHierarchyElementThumbnailView.swift, ViewHierarchyThumbnailViewController.swift, InspectorAppearance.swift, InspectorColorStyle.swift, InspectorConfiguration+KeyCommandSettings.swift, InspectorConfiguration.swift, ConsoleLogger.swift, ElementInspectorAppearance.swift, ElementInspectorConfiguration.swift, ElementInspectorCoordinator+ElementInspectorFormPanelDelegate.swift, ElementInspectorCoordinator+ElementInspectorNavigationControllerDismissDelegate.swift, ElementInspectorCoordinator+ElementInspectorViewControllerDelegate.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling UIView.ContentMode+CustomStringConvertible.swift, UIView+Convenience.swift, UIView+HightlightView.swift, UIView+Mask.swift, UIView+Snapshot.swift, UIView+Swizzling.swift, UIView+ViewHierarchyElementRepresentable.swift, UIViewController+Children.swift, UIViewController+PopoverPresentationStyle.swift, UIViewController+UIKeyCommand.swift, UIWindow+PresentedViewController.swift, ViewHierarchyLayer+Actionable.swift, ViewHierarchyLayer+AdditiveArithmetic.swift, ViewHierarchyLayer+CustomStringConvertible.swift, ViewHierarchyCoordinatorFactory.swift, Inspector.swift, InspectorViewCoordinator.swift, InspectorCommand.swift, InspectorViewController+UITableViewDataSource.swift, InspectorViewController+UITableViewDelegate.swift, InspectorViewController+UITableViewKeyCommandsDelegate.swift, InspectorViewController.swift, CommandGroupsViewModel.swift, HierarchyInspectorViewModel.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling SnapshotViewModel.swift, HierarchyInspectorActionTableViewCell.swift, HierarchyInspectorReferenceSummaryTableViewCell.swift, HierarchyInspectorSearchView.swift, HierarchyInspectorTableViewCell.swift, HierarchyInspectorTableViewHeaderView.swift, HierarchyInspectorViewCode.swift, Manager+ElementInspectorCoordinatorDelegate.swift, Manager+InspectorViewCoordinatorDelegate.swift, Manager+KeyCommandPresentable.swift, Manager+ViewHierarchyActionableProtocol.swift, Manager+ViewHierarchyLayerManagerProtocol.swift, Manager.swift, BundleInfo.swift, Command.swift, CommandsGroup.swift, ElementCatalogIconProviderDefault.swift, ElementPanelType.swift, ExpirableStore.swift, FontReference.swift, HashableValue.swift, InspectorElementProperty.swift, InspectorElementSection.swift, LayoutConstraintElement.swift (in target 'Inspector' from project 'Inspector')
SwiftDriverJobDiscovery normal arm64 Compiling NavigationControllerAttributesSectionDataSource.swift, NavigationItemAttributesSectionDataSource.swift, ScrollViewAttributesSectionDataSource.swift, SegmentedControlAttributesSectionDataSource.swift, SliderAttributesSectionDataSource.swift, StackViewAttributesSectionDataSource.swift, SwitchAttributesSectionDataSource.swift, TabBarAttributesSectionDataSource.swift, TabBarItemAttributesSectionDataSource.swift, TableViewAttributesSectionDataSource.swift, TextFieldAttributesSectionDataSource.swift, TextViewAttributesSectionDataSource.swift, ViewAttributesSectionDataSource.swift, ViewControllerAttributesSectionDataSource.swift, WindowAttributesSectionDataSource.swift, HierarchyIdentitySectionDataSource.swift, HighlightViewSectionDataSource.swift, PreviewIdentitySectionDataSource.swift, RuntimeAttributesIdentitySectionDataSource.swift, ButtonSizeSectionDataSource.swift, ContentLayoutPrioritySizeSectionDataSource.swift, LabelSizeSectionDataSource.swift, LayoutConstraintSizeSectionDataSource.swift, ScrollViewSizeSectionDataSource.swift (in target 'Inspector' from project 'Inspector')
SwiftDriver\ Compilation Inspector normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Inspector' from project 'Inspector')
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 Inspector -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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/PackageFrameworks -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/PackageFrameworks -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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector-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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector_const_extract_protocols.json -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/Inspector.build/Debug-iphoneos/Inspector.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CALayer+Options.swift, NSAttributedString+Init.swift, NSAttributedString+Options.swift, NSDirectionalEdgeInsets+Convenience.swift, NumberFormatter+Init.swift (in target 'UIKitOptions' from project 'UIKitOptions')
SwiftDriver\ Compilation UIKitOptions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'UIKitOptions' from project 'UIKitOptions')
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 UIKitOptions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -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-ios12.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 -suppress-warnings -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 -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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions-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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions_const_extract_protocols.json -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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.o normal (in target 'UIKitOptions' from project 'UIKitOptions')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKitOptions
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions_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/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.o
ExtractAppIntentsMetadata (in target 'UIKitOptions' from project 'UIKitOptions')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKitOptions
/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 UIKitOptions --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 12.0 --bundle-identifier uikitoptions.UIKitOptions --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/UIKitOptions.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/UIKitOptions.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:10:25.290 appintentsmetadataprocessor[971:5709] Starting appintentsmetadataprocessor export
2025-04-27 11:10:25.325 appintentsmetadataprocessor[971:5709] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.o (in target 'UIKitOptions' from project 'UIKitOptions')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKitOptions
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKitOptions.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.o normal (in target 'UIKeyCommandTableView' from project 'UIKeyCommandTableView')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKeyCommandTableView
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -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/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView_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/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.o
ExtractAppIntentsMetadata (in target 'UIKeyCommandTableView' from project 'UIKeyCommandTableView')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKeyCommandTableView
/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 UIKeyCommandTableView --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 12.0 --bundle-identifier uikeycommandtableview.UIKeyCommandTableView --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/UIKeyCommandTableView.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/UIKeyCommandTableView.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:10:25.369 appintentsmetadataprocessor[974:5724] Starting appintentsmetadataprocessor export
2025-04-27 11:10:25.402 appintentsmetadataprocessor[974:5724] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.o (in target 'UIKeyCommandTableView' from project 'UIKeyCommandTableView')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/UIKeyCommandTableView
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/UIKeyCommandTableView.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.o normal (in target 'Inspector' from project 'Inspector')
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/PackageFrameworks -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/PackageFrameworks -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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector_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/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.o
ExtractAppIntentsMetadata (in target 'Inspector' from project 'Inspector')
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 Inspector --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.Inspector --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Inspector.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Inspector.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 11:10:25.560 appintentsmetadataprocessor[977:5739] Starting appintentsmetadataprocessor export
2025-04-27 11:10:25.601 appintentsmetadataprocessor[977:5739] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.o (in target 'Inspector' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Inspector.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework/InspectorDynamic normal (in target 'InspectorDynamic' from project 'Inspector')
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 -dynamiclib -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/PackageFrameworks -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/PackageFrameworks -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/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/Inspector.build/Debug-iphoneos/InspectorDynamic\ product.build/Objects-normal/arm64/InspectorDynamic.LinkFileList -install_name @rpath/InspectorDynamic.framework/InspectorDynamic -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/InspectorDynamic\ product.build/Objects-normal/arm64/InspectorDynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/InspectorDynamic\ product.build/Objects-normal/arm64/InspectorDynamic_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework/InspectorDynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/Inspector.build/Objects-normal/arm64/Inspector.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyCommandTableView.build/Debug-iphoneos/UIKeyCommandTableView.build/Objects-normal/arm64/UIKeyCommandTableView.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKitOptions.build/Debug-iphoneos/UIKitOptions.build/Objects-normal/arm64/UIKitOptions.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/UIKeyboardAnimatable.build/Debug-iphoneos/UIKeyboardAnimatable.build/Objects-normal/arm64/UIKeyboardAnimatable.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/Coordinator.build/Objects-normal/arm64/Coordinator.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Coordinator.build/Debug-iphoneos/CoordinatorAPI.build/Objects-normal/arm64/CoordinatorAPI.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/InspectorDynamic\ product.build/empty-InspectorDynamic.plist (in target 'InspectorDynamic' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Inspector.build/Debug-iphoneos/InspectorDynamic\ product.build/empty-InspectorDynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework/Info.plist
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/InspectorDynamic.framework/InspectorDynamic.tbd (in target 'InspectorDynamic' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -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/PackageFrameworks -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/PackageFrameworks -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/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 -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 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework/InspectorDynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/InspectorDynamic.framework/InspectorDynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework (in target 'InspectorDynamic' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework (in target 'InspectorDynamic' from project 'Inspector')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/InspectorDynamic.framework
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "uikeycommandtableview",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ipedro/UIKeyCommandTableView.git"
},
{
"identity" : "uikeyboardanimatable",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ipedro/UIKeyboardAnimatable.git"
},
{
"identity" : "uikitoptions",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ipedro/UIKitOptions.git"
},
{
"identity" : "coordinator",
"requirement" : {
"range" : [
{
"lower_bound" : "2.1.2",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ipedro/Coordinator.git"
}
],
"manifest_display_name" : "Inspector",
"name" : "Inspector",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
}
],
"products" : [
{
"name" : "Inspector",
"targets" : [
"Inspector"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "InspectorDynamic",
"targets" : [
"Inspector"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "InspectorTests",
"module_type" : "SwiftTarget",
"name" : "InspectorTests",
"path" : "Tests/InspectorTests",
"sources" : [
"InspectorTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Inspector"
],
"type" : "test"
},
{
"c99name" : "Inspector",
"module_type" : "SwiftTarget",
"name" : "Inspector",
"path" : "Sources/Inspector",
"product_dependencies" : [
"UIKeyCommandTableView",
"UIKeyboardAnimatable",
"UIKitOptions",
"Coordinator"
],
"product_memberships" : [
"Inspector",
"InspectorDynamic"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Resources/ElementLibrary.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/Inspector/Resources/Symbols.xcassets",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CommonUI/Bases/BaseCardView.swift",
"CommonUI/Bases/BaseControl.swift",
"CommonUI/Bases/BaseFormControl.swift",
"CommonUI/Bases/BaseView.swift",
"CommonUI/Bases/ScrollingStackView.swift",
"CommonUI/Controls/AccessoryControl.swift",
"CommonUI/Controls/ColorPreviewControl.swift",
"CommonUI/Controls/DirectionalEdgeInsetsControl.swift",
"CommonUI/Controls/EdgeInsetsControl.swift",
"CommonUI/Controls/ImagePreviewControl.swift",
"CommonUI/Controls/NoteControl.swift",
"CommonUI/Controls/OffsetControl.swift",
"CommonUI/Controls/OptionListControl.swift",
"CommonUI/Controls/PointControl.swift",
"CommonUI/Controls/RectControl.swift",
"CommonUI/Controls/SegmentedControl.swift",
"CommonUI/Controls/SizeControl.swift",
"CommonUI/Controls/StepperControl.swift",
"CommonUI/Controls/StepperPairControl.swift",
"CommonUI/Controls/TextFieldControl.swift",
"CommonUI/Controls/TextViewControl.swift",
"CommonUI/Controls/ToggleControl.swift",
"CommonUI/Enums/Animation.swift",
"CommonUI/Enums/ThumbnailBackgroundStyle.swift",
"CommonUI/Icons/Icon.Glyph.swift",
"CommonUI/Icons/Icon.swift",
"CommonUI/Icons/IconButton.swift",
"CommonUI/Icons/IconKit.swift",
"CommonUI/SectionHeader/SectionHeader.swift",
"CommonUI/SeparatorView/SeparatorView.swift",
"CommonUI/SizeInspectorViews/LengthMeasurementView+ArrowView.swift",
"CommonUI/SizeInspectorViews/LengthMeasurementView.swift",
"CommonUI/SizeInspectorViews/SizeInspectorView.swift",
"CommonUI/ViewHierarchyElement/LiveViewHierarchyElementThumbnailView.swift",
"CommonUI/ViewHierarchyElement/ViewHierarchyElementDescriptionView.swift",
"CommonUI/ViewHierarchyElement/ViewHierarchyElementThumbnailView.swift",
"CommonUI/ViewHierarchyElement/ViewHierarchyThumbnailViewController.swift",
"Configuration/InspectorAppearance.swift",
"Configuration/InspectorColorStyle.swift",
"Configuration/InspectorConfiguration+KeyCommandSettings.swift",
"Configuration/InspectorConfiguration.swift",
"ConsoleLogger/ConsoleLogger.swift",
"ElementInspector/Configuration/ElementInspectorAppearance.swift",
"ElementInspector/Configuration/ElementInspectorConfiguration.swift",
"ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorFormPanelDelegate.swift",
"ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorNavigationControllerDismissDelegate.swift",
"ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorViewControllerDelegate.swift",
"ElementInspector/Coordinators/ElementInspectorCoordinator+OperationQueueManagerProtocol.swift",
"ElementInspector/Coordinators/ElementInspectorCoordinator.swift",
"ElementInspector/Enums/ElementInspectorPanel.swift",
"ElementInspector/Enums/ElementInspectorPanelListState.swift",
"ElementInspector/Enums/ElementInspectorPanelSelectionMode.swift",
"ElementInspector/Enums/InspectorElementItemSeparatorStyle.swift",
"ElementInspector/Enums/InspectorElementSectionState.swift",
"ElementInspector/Protocols/ElementInspectorFormPanelDataSource.swift",
"ElementInspector/Protocols/ElementInspectorPanelViewControllerProtocol.swift",
"ElementInspector/Protocols/InspectorElementSectionView.swift",
"ElementInspector/Submodules/ChildrenPanel/Enums/ElementChildrenPanelAction.swift",
"ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDataSource.swift",
"ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDelegate.swift",
"ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController.swift",
"ElementInspector/Submodules/ChildrenPanel/ViewModels/CellViewModel.swift",
"ElementInspector/Submodules/ChildrenPanel/ViewModels/ElementChildrenPanelViewModel.swift",
"ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelTableViewCodeCell.swift",
"ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelViewCode.swift",
"ElementInspector/Submodules/FormPanel/DataSource/DefaultFormPanelDataSource.swift",
"ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController+InspectorElementSectionViewControllerDelegate.swift",
"ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController.swift",
"ElementInspector/Submodules/FormPanel/InspectorElementSectionViewController.swift",
"ElementInspector/ViewControllers/ElementInspectorNavigationController.swift",
"ElementInspector/ViewControllers/ElementInspectorPanelViewController.swift",
"ElementInspector/ViewControllers/ElementInspectorViewController.swift",
"ElementInspector/ViewModel/ElementInspectorViewModel.swift",
"ElementInspector/Views/ElementInspectorViewCode+Content.swift",
"ElementInspector/Views/ElementInspectorViewCode.swift",
"ElementInspector/Views/InspectorElementKeyCommandSectionView.swift",
"ElementInspector/Views/InspectorElementLayoutConstraintSectionView.swift",
"ElementInspector/Views/InspectorElementSectionFormView.swift",
"ElementInspector/Views/ToogleCollapseButton.swift",
"ElementLibraries/DefaultElementAttributesLibrary.swift",
"ElementLibraries/DefaultElementIdentityLibrary.swift",
"ElementLibraries/DefaultElementSizeLibrary.swift",
"ElementLibraries/Sections/Attributes/ActivityIndicatorViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ApplicationAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ApplicationShortcutItemSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ButtonAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ControlAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/DatePickerAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ImageViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/KeyCommandsSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/LabelAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/LayerAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/MapViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/NavigationBarAppearanceAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/NavigationBarAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/NavigationControllerAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/NavigationItemAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ScrollViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/SegmentedControlAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/SliderAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/StackViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/SwitchAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/TabBarAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/TabBarItemAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/TableViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/TextFieldAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift",
"ElementLibraries/Sections/Identity/HierarchyIdentitySectionDataSource.swift",
"ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift",
"ElementLibraries/Sections/Identity/PreviewIdentitySectionDataSource.swift",
"ElementLibraries/Sections/Identity/RuntimeAttributesIdentitySectionDataSource.swift",
"ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/SegmentedControlSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/TableViewSizeSectionDataSource.swift",
"ElementLibraries/Sections/Size/ViewFrameSizeSectionDataSource.swift",
"Extensions/Array/Array+Inserting.swift",
"Extensions/Array/Array+InspectorElementLibraryProtocol.swift",
"Extensions/Array/Array+UIKeyCommand.swift",
"Extensions/Array/Array+UniqueValues.swift",
"Extensions/BinaryFloatingPoint/BinaryFloatingPoint+String.swift",
"Extensions/CACornerMask/CACornerMask+UIRectCorner.swift",
"Extensions/CGRect/CGRect+Hashable.swift",
"Extensions/CGSize/CGSize+Sizes.swift",
"Extensions/CharacterSet/CharacterSet+AllCharacters.swift",
"Extensions/IndexPath/IndexPath+FirstRow.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Color.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Font.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Hashable.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+SegmentedControl.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Stepper.swift",
"Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+TextView.swift",
"Extensions/Int/Int+CGFloat.swift",
"Extensions/Int/Int+String.swift",
"Extensions/MKMapView/MKMapView+CaseIterable.swift",
"Extensions/MKMapView/MKMapView+CustomStringConvertible.swift",
"Extensions/NSDirectionalEdgeInsets/NSDirectionalEdgeInsets+Update.swift",
"Extensions/NSLayoutConstraint/Attribute/NSLayoutConstraint+Attribute.swift",
"Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+CaseIterable.swift",
"Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+SegmentedControlDisplayable.swift",
"Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift",
"Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CaseIterable.swift",
"Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CustomStringConvertible.swift",
"Extensions/NSObject/NSObject+ClassesForCoder.swift",
"Extensions/NSObject/NSObject+Create.swift",
"Extensions/NSObject/NSObject+PropertyNames.swift",
"Extensions/NSObject/NSObjectProtocoll+Debounce.swift",
"Extensions/NSRegularExpression/NSRegularExpression+Matches.swift",
"Extensions/NSTextAlignment/NSTextAlignment+CaseIterable.swift",
"Extensions/NSTextAlignment/NSTextAlignment+SegmentedControlDisplayable.swift",
"Extensions/NumberFormatter/NumberFormatter+Convenience.swift",
"Extensions/Optional/Optional+Collection.swift",
"Extensions/String/String+Utils.swift",
"Extensions/UIAction/UIAction+Convenience.swift",
"Extensions/UIActivityIndicatorView+Style/ UIActivityIndicatorView+Style+CaseIterable.swift",
"Extensions/UIActivityIndicatorView+Style/UIActivityIndicatorView+Style+CustomStringConvertible.swift",
"Extensions/UIBarStyle/UIBarStyle+CaseIterable.swift",
"Extensions/UIBarStyle/UIBarStyle+CustomStringConvertible.swift",
"Extensions/UIBlurEffect/Style/UIBlurEffect.Style+CaseIterable.swift",
"Extensions/UIBlurEffect/UIBlurEffect+Style.swift",
"Extensions/UIBlurEffect/UIBlurEffect.Style+CustomStringConvertible.swift",
"Extensions/UIButton+ButtonType/UIButton+ButtonType+CaseIterable.swift",
"Extensions/UIButton+ButtonType/UIButton.ButtonType+CustomStringConvertible.swift",
"Extensions/UIColor/UIColor+Hex.swift",
"Extensions/UIColor/UIColor+Init.swift",
"Extensions/UIColor/UIColor+RGBA.swift",
"Extensions/UIContextMenuConfiguration/UIContextMenuConfiguration+ViewHierarchyElement.swift",
"Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+CaseIterable.swift",
"Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+SegmentedControlDisplayable.swift",
"Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CaseIterable.swift",
"Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CustomStringConvertible.swift",
"Extensions/UIControl/State/UIControl.State+CustomStringConvertible.swift",
"Extensions/UIControl/UIControl+Animation.swift",
"Extensions/UIDataDetectorTypes/UIDataDetectorTypes+CustomStringConvertible.swift",
"Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CaseIterable.swift",
"Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CustomStringConvertible.swift",
"Extensions/UIDatePickerStyle/UIDatePickerStyle+CaseIterable.swift",
"Extensions/UIDatePickerStyle/UIDatePickerStyle+CustomStringConvertible.swift",
"Extensions/UIImage/UIImage+AssetName.swift",
"Extensions/UIImage/UIImage+Mask.swift",
"Extensions/UIImage/UIImage+ModuleImage.swift",
"Extensions/UIImage/UIImage+Symbols.swift",
"Extensions/UIKayboardAppearance/UIKeyboardAppearance+CaseIterable.swift",
"Extensions/UIKayboardAppearance/UIKeyboardAppearance+CustomStringConvertible.swift",
"Extensions/UIKeyCommand/UIKeyCommandOptions+Init.swift",
"Extensions/UIKeyboardType/UIKeyboardType+CaseIterable.swift",
"Extensions/UIKeyboardType/UIKeyboardType+CustomStringConvertible.swift",
"Extensions/UILayoutPriority/UILayoutPriority+CaseIterable.swift",
"Extensions/UILayoutPriority/UILayoutPriority+CustomStringConvertible.swift",
"Extensions/UIMenu/UIMenu+ViewHierarchyElementRepresentable.swift",
"Extensions/UIMenuElement/UIMenuElement+Convenience.swift",
"Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CaseIterable.swift",
"Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CustomStringConvertible.swift",
"Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CaseIterable.swift",
"Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CustomStringConvertible.swift",
"Extensions/UIReturnKeyType/UIReturnKeyType+CaseIterable.swift",
"Extensions/UIReturnKeyType/UIReturnKeyType+CustomStringConvertible.swift",
"Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CaseIterable.swift",
"Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CustomStringConvertible.swift",
"Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CaseIterable.swift",
"Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CustomStringConvertible.swift",
"Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CaseIterable.swift",
"Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CustomStringConvertible.swift",
"Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CaseIterable.swift",
"Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CustomStringConvertible.swift",
"Extensions/UIStackView/Alignment/UIStackView.Alignment+CaseIterable.swift",
"Extensions/UIStackView/Alignment/UIStackView.Alignment+CustomStringConvertible.swift",
"Extensions/UIStackView/Distribution/UIStackView.Distribution+CaseIterable.swift",
"Extensions/UIStackView/Distribution/UIStackView.Distribution+CustomStringConvertible.swift",
"Extensions/UIStackView/UIStackView+Init.swift",
"Extensions/UISwitch/UISwitch.Style+CaseIterable.swift",
"Extensions/UISwitch/UISwitch.Style+SegmentedControlDisplayable.swift",
"Extensions/UITableView/UITableView+Convenience.swift",
"Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CaseIterable.swift",
"Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CustomStringConvertible.swift",
"Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CaseIterable.swift",
"Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CustomStringConvertible.swift",
"Extensions/UITextContentType/UITextContentType+CaseIterable.swift",
"Extensions/UITextContentType/UITextContentType+CustomStringConvertible.swift",
"Extensions/UITextField/BorderStyle/UITextField.BorderStyle+CaseIterable.swift",
"Extensions/UITextField/BorderStyle/UITextField.BorderStyle+SegmentedControlDisplayable.swift",
"Extensions/UITextField/ViewMode/UITextField.ViewMode+CaseIterable.swift",
"Extensions/UITextField/ViewMode/UITextField.ViewMode+CustomStringConvertible.swift",
"Extensions/UITextSmartDashesType/UITextSmartDashesType+CaseIterable.swift",
"Extensions/UITextSmartDashesType/UITextSmartDashesType+CustomStringConvertible.swift",
"Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CaseIterable.swift",
"Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CustomStringConvertible.swift",
"Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CaseIterable.swift",
"Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CustomStringConvertible.swift",
"Extensions/UITextView/UITextView+Init.swift",
"Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CaseIterable.swift",
"Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CustomStringConvertible.swift",
"Extensions/UIView/ContentMode/UIView.ContentMode+CaseIterable.swift",
"Extensions/UIView/ContentMode/UIView.ContentMode+CustomStringConvertible.swift",
"Extensions/UIView/UIView+Convenience.swift",
"Extensions/UIView/UIView+HightlightView.swift",
"Extensions/UIView/UIView+Mask.swift",
"Extensions/UIView/UIView+Snapshot.swift",
"Extensions/UIView/UIView+Swizzling.swift",
"Extensions/UIView/UIView+ViewHierarchyElementRepresentable.swift",
"Extensions/UIViewController/UIViewController+Children.swift",
"Extensions/UIViewController/UIViewController+PopoverPresentationStyle.swift",
"Extensions/UIViewController/UIViewController+UIKeyCommand.swift",
"Extensions/UIWindow/UIWindow+PresentedViewController.swift",
"Extensions/ViewHierarchyLayer/ViewHierarchyLayer+Actionable.swift",
"Extensions/ViewHierarchyLayer/ViewHierarchyLayer+AdditiveArithmetic.swift",
"Extensions/ViewHierarchyLayer/ViewHierarchyLayer+CustomStringConvertible.swift",
"Factories/ViewHierarchyCoordinatorFactory.swift",
"Inspector.swift",
"InspectorView/Coordinators/InspectorViewCoordinator.swift",
"InspectorView/Enums/InspectorCommand.swift",
"InspectorView/ViewControllers/InspectorViewController+UITableViewDataSource.swift",
"InspectorView/ViewControllers/InspectorViewController+UITableViewDelegate.swift",
"InspectorView/ViewControllers/InspectorViewController+UITableViewKeyCommandsDelegate.swift",
"InspectorView/ViewControllers/InspectorViewController.swift",
"InspectorView/ViewModels/CommandGroupsViewModel.swift",
"InspectorView/ViewModels/HierarchyInspectorViewModel.swift",
"InspectorView/ViewModels/SnapshotViewModel.swift",
"InspectorView/Views/HierarchyInspectorActionTableViewCell.swift",
"InspectorView/Views/HierarchyInspectorReferenceSummaryTableViewCell.swift",
"InspectorView/Views/HierarchyInspectorSearchView.swift",
"InspectorView/Views/HierarchyInspectorTableViewCell.swift",
"InspectorView/Views/HierarchyInspectorTableViewHeaderView.swift",
"InspectorView/Views/HierarchyInspectorViewCode.swift",
"Manager/Manager+ElementInspectorCoordinatorDelegate.swift",
"Manager/Manager+InspectorViewCoordinatorDelegate.swift",
"Manager/Manager+KeyCommandPresentable.swift",
"Manager/Manager+ViewHierarchyActionableProtocol.swift",
"Manager/Manager+ViewHierarchyLayerManagerProtocol.swift",
"Manager/Manager.swift",
"Models/BundleInfo.swift",
"Models/Command.swift",
"Models/CommandsGroup.swift",
"Models/ElementCatalogIconProviderDefault.swift",
"Models/ElementPanelType.swift",
"Models/ExpirableStore.swift",
"Models/FontReference.swift",
"Models/HashableValue.swift",
"Models/InspectorElementProperty.swift",
"Models/InspectorElementSection.swift",
"Models/LayoutConstraintElement.swift",
"Models/Logger.swift",
"Models/MainThreadAsyncOperation.swift",
"Models/MainThreadOperation.swift",
"Models/Provider.swift",
"Models/SnapshotStore.swift",
"Models/ViewHierarchy.swift",
"Models/ViewHierarchyColorSchemeDefault.swift",
"Models/ViewHierarchyElement.swift",
"Models/ViewHierarchyElementAction.swift",
"Models/ViewHierarchyElementController.swift",
"Models/ViewHierarchyInformation.swift",
"Models/ViewHierarchyInterfaceStyle.swift",
"Models/ViewHierarchyIssue.swift",
"Models/ViewHierarchyLayer.swift",
"Models/ViewHierarchyLayerAction.swift",
"Models/ViewHierarchyRoot.swift",
"Models/ViewHierarchySnapshot.swift",
"Presenters/AdaptiveModalPresenter.swift",
"Presenters/ColorPickerPresenter.swift",
"Presenters/ContextMenuPresenter.swift",
"Presenters/DocumentPickerPresenter.swift",
"Presenters/UIViewControllerTransitionPresenter.swift",
"Protocols/Actionable.swift",
"Protocols/AsyncOperationProtocol.swift",
"Protocols/CaseIterable.swift",
"Protocols/Create.swift",
"Protocols/CustomImageConvertible.swift",
"Protocols/CustomStringConvertible.swift",
"Protocols/DataReloadingProtocol.swift",
"Protocols/DismissablePresentationProtocol.swift",
"Protocols/DraggableViewProtocol.swift",
"Protocols/ElementInspectorAppearanceProviding.swift",
"Protocols/ExpirableProtocol.swift",
"Protocols/InspectorAppearanceProviding.swift",
"Protocols/InspectorCustomizationProviding.swift",
"Protocols/InspectorElementLibraryProtocol.swift",
"Protocols/InspectorElementSectionDataSource.swift",
"Protocols/InternalViewProtocol.swift",
"Protocols/KeyCommandPresentable.swift",
"Protocols/LayerCommandProtocol.swift",
"Protocols/LayerViewProtocol.swift",
"Protocols/MenuContentProtocol.swift",
"Protocols/NonInspectableView.swift",
"Protocols/OperationQueueManagerProtocol.swift",
"Protocols/TextElement.swift",
"Protocols/ViewHierarchyActionableProtocol.swift",
"Protocols/ViewHierarchyControllerProtocol.swift",
"Protocols/ViewHierarchyElementCatalog.swift",
"Protocols/ViewHierarchyElementReference.swift",
"Protocols/ViewHierarchyElementRepresentable.swift",
"Protocols/ViewHierarchyLayerConstructorProtocol.swift",
"Protocols/ViewHierarchyLayerManagerProtocol.swift",
"Protocols/ViewHierarchyRepresentable.swift",
"Strings/Texts.swift",
"SwiftUI/DeviceShakeModifier.swift",
"SwiftUI/InspectorModifier.swift",
"SwiftUI/InspectorUI.swift",
"TransitionCoordinator/ElementInspectorSlidingPanelAnimator.swift",
"ViewHierarchy/Coordinators/ViewHierarchyCoordinator+AsyncOperationProtocol.swift",
"ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerCommandProtocol.swift",
"ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerConstructorProtocol.swift",
"ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerViewDelegate.swift",
"ViewHierarchy/Coordinators/ViewHierarchyCoordinator.swift",
"ViewHierarchy/Views/HighlightView+ElementNameView.swift",
"ViewHierarchy/Views/HighlightView.swift",
"ViewHierarchy/Views/LayerView.swift",
"ViewHierarchy/Views/LayerViewComponent.swift",
"ViewHierarchy/Views/LoaderView.swift",
"ViewHierarchy/Views/WireframeView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
Done.