Build Information
Failed to build CareKit, reference main (59e1d7), with Swift 6.2 for macOS (SPM) on 13 Dec 2025 02:31:32 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[717/1299] Compiling ModelsR4 CodeSystemConsentState.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
| `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 | @NSManaged var patient: OCKCDPatient?
36 | @NSManaged var tasks: Set<OCKCDTask>
:
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 | plan.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDContact)
35 | class OCKCDContact: OCKCDVersionedObject {
| `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
36 | @NSManaged var carePlan: OCKCDCarePlan?
37 | @NSManaged var name: OCKCDPersonName
:
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
98 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
99 | name: name.makeValue(),
100 | carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
95 |
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
98 | id: id,
99 | name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 | )
102 |
103 | contact.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
109 | contact.title = title
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
110 | contact.role = role
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 | contact.address = address?.makeValue()
113 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:57:72: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
| `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 | @NSManaged var quantityIdentifier: String
38 | @NSManaged var quantityType: String
:
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
59 | unit: HKUnit(from: unitString)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:56:13: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
54 | var healthKitLinkage: OCKHealthKitLinkage!
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
| `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
| `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 | @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
:
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
67 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 | title: title,
69 | carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 | id: id,
68 | title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | task.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 | task.impactsAdherence = impactsAdherence
77 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
| `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 | @NSManaged var author: String?
36 | @NSManaged var title: String?
:
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOutcome)
35 | class OCKCDOutcome: OCKCDVersionedObject {
| `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
36 | @NSManaged var taskOccurrenceIndex: Int64
37 | @NSManaged var task: OCKCDTask
:
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
69 | taskUUID: task.uuid,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
71 | values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
66 |
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
69 | taskUUID: task.uuid,
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | outcome.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
75 | }
76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:37: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDOutcomeValue)
34 | class OCKCDOutcomeValue: NSManagedObject {
| `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
35 | @NSManaged var kind: String? // blood sugar, body weight, etc.
36 | @NSManaged var units: String?
:
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:67:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
68 | value.kind = kind
69 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:68:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
68 | value.kind = kind
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
69 | }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:38: warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPatient)
35 | class OCKCDPatient: OCKCDVersionedObject {
| `- note: class 'OCKCDPatient' does not conform to the 'Sendable' protocol
36 | @NSManaged var name: OCKCDPersonName
37 | @NSManaged private var sex: String?
:
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:60:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:61:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
62 | patient.birthday = birthday
63 | patient.allergies = allergies
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[718/1299] Compiling ModelsR4 Account.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
| `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 | @NSManaged var patient: OCKCDPatient?
36 | @NSManaged var tasks: Set<OCKCDTask>
:
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 | plan.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDContact)
35 | class OCKCDContact: OCKCDVersionedObject {
| `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
36 | @NSManaged var carePlan: OCKCDCarePlan?
37 | @NSManaged var name: OCKCDPersonName
:
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
98 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
99 | name: name.makeValue(),
100 | carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
95 |
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
98 | id: id,
99 | name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 | )
102 |
103 | contact.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
109 | contact.title = title
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
110 | contact.role = role
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 | contact.address = address?.makeValue()
113 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:57:72: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
| `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 | @NSManaged var quantityIdentifier: String
38 | @NSManaged var quantityType: String
:
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
59 | unit: HKUnit(from: unitString)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:56:13: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
54 | var healthKitLinkage: OCKHealthKitLinkage!
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
| `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
| `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 | @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
:
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
67 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 | title: title,
69 | carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 | id: id,
68 | title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | task.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 | task.impactsAdherence = impactsAdherence
77 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
| `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 | @NSManaged var author: String?
36 | @NSManaged var title: String?
:
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOutcome)
35 | class OCKCDOutcome: OCKCDVersionedObject {
| `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
36 | @NSManaged var taskOccurrenceIndex: Int64
37 | @NSManaged var task: OCKCDTask
:
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
69 | taskUUID: task.uuid,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
71 | values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
66 |
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
69 | taskUUID: task.uuid,
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | outcome.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
75 | }
76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:37: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDOutcomeValue)
34 | class OCKCDOutcomeValue: NSManagedObject {
| `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
35 | @NSManaged var kind: String? // blood sugar, body weight, etc.
36 | @NSManaged var units: String?
:
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:67:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
68 | value.kind = kind
69 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:68:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
68 | value.kind = kind
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
69 | }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:38: warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPatient)
35 | class OCKCDPatient: OCKCDVersionedObject {
| `- note: class 'OCKCDPatient' does not conform to the 'Sendable' protocol
36 | @NSManaged var name: OCKCDPersonName
37 | @NSManaged private var sex: String?
:
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:60:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:61:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
62 | patient.birthday = birthday
63 | patient.allergies = allergies
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[719/1299] Compiling ModelsR4 ActivityDefinition.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
| `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 | @NSManaged var patient: OCKCDPatient?
36 | @NSManaged var tasks: Set<OCKCDTask>
:
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 | plan.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDContact)
35 | class OCKCDContact: OCKCDVersionedObject {
| `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
36 | @NSManaged var carePlan: OCKCDCarePlan?
37 | @NSManaged var name: OCKCDPersonName
:
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
98 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
99 | name: name.makeValue(),
100 | carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
95 |
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
98 | id: id,
99 | name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 | )
102 |
103 | contact.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
109 | contact.title = title
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
110 | contact.role = role
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 | contact.address = address?.makeValue()
113 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:57:72: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
| `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 | @NSManaged var quantityIdentifier: String
38 | @NSManaged var quantityType: String
:
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
59 | unit: HKUnit(from: unitString)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:56:13: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
54 | var healthKitLinkage: OCKHealthKitLinkage!
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
| `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
| `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 | @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
:
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
67 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 | title: title,
69 | carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 | id: id,
68 | title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | task.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 | task.impactsAdherence = impactsAdherence
77 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
| `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 | @NSManaged var author: String?
36 | @NSManaged var title: String?
:
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOutcome)
35 | class OCKCDOutcome: OCKCDVersionedObject {
| `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
36 | @NSManaged var taskOccurrenceIndex: Int64
37 | @NSManaged var task: OCKCDTask
:
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
69 | taskUUID: task.uuid,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
71 | values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
66 |
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
69 | taskUUID: task.uuid,
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | outcome.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
75 | }
76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:37: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDOutcomeValue)
34 | class OCKCDOutcomeValue: NSManagedObject {
| `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
35 | @NSManaged var kind: String? // blood sugar, body weight, etc.
36 | @NSManaged var units: String?
:
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:67:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
68 | value.kind = kind
69 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:68:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
68 | value.kind = kind
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
69 | }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:38: warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPatient)
35 | class OCKCDPatient: OCKCDVersionedObject {
| `- note: class 'OCKCDPatient' does not conform to the 'Sendable' protocol
36 | @NSManaged var name: OCKCDPersonName
37 | @NSManaged private var sex: String?
:
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:60:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:61:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
62 | patient.birthday = birthday
63 | patient.allergies = allergies
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[720/1299] Compiling ModelsR4 Address.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
| `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 | @NSManaged var patient: OCKCDPatient?
36 | @NSManaged var tasks: Set<OCKCDTask>
:
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 | plan.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDContact)
35 | class OCKCDContact: OCKCDVersionedObject {
| `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
36 | @NSManaged var carePlan: OCKCDCarePlan?
37 | @NSManaged var name: OCKCDPersonName
:
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
98 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
99 | name: name.makeValue(),
100 | carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
95 |
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
98 | id: id,
99 | name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 | )
102 |
103 | contact.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
109 | contact.title = title
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
110 | contact.role = role
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 | contact.address = address?.makeValue()
113 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:57:72: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
| `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 | @NSManaged var quantityIdentifier: String
38 | @NSManaged var quantityType: String
:
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
59 | unit: HKUnit(from: unitString)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:56:13: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
54 | var healthKitLinkage: OCKHealthKitLinkage!
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
| `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
| `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 | @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
:
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
67 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 | title: title,
69 | carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 | id: id,
68 | title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | task.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 | task.impactsAdherence = impactsAdherence
77 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
| `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 | @NSManaged var author: String?
36 | @NSManaged var title: String?
:
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOutcome)
35 | class OCKCDOutcome: OCKCDVersionedObject {
| `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
36 | @NSManaged var taskOccurrenceIndex: Int64
37 | @NSManaged var task: OCKCDTask
:
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
69 | taskUUID: task.uuid,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
71 | values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
66 |
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
69 | taskUUID: task.uuid,
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | outcome.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
75 | }
76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:37: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDOutcomeValue)
34 | class OCKCDOutcomeValue: NSManagedObject {
| `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
35 | @NSManaged var kind: String? // blood sugar, body weight, etc.
36 | @NSManaged var units: String?
:
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:67:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
68 | value.kind = kind
69 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:68:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
68 | value.kind = kind
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
69 | }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:38: warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPatient)
35 | class OCKCDPatient: OCKCDVersionedObject {
| `- note: class 'OCKCDPatient' does not conform to the 'Sendable' protocol
36 | @NSManaged var name: OCKCDPersonName
37 | @NSManaged private var sex: String?
:
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:60:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:61:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
62 | patient.birthday = birthday
63 | patient.allergies = allergies
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[721/1299] Compiling ModelsR4 AdverseEvent.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
| `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 | @NSManaged var patient: OCKCDPatient?
36 | @NSManaged var tasks: Set<OCKCDTask>
:
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 | plan.copyVersionedValues(from: self)
60 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 | self.managedObjectContext!.performAndWait {
58 | plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 | plan.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDContact)
35 | class OCKCDContact: OCKCDVersionedObject {
| `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
36 | @NSManaged var carePlan: OCKCDCarePlan?
37 | @NSManaged var name: OCKCDPersonName
:
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
98 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
99 | name: name.makeValue(),
100 | carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
95 |
96 | self.managedObjectContext!.performAndWait {
97 | contact = OCKContact(
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
98 | id: id,
99 | name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 | )
102 |
103 | contact.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 | contact.copyVersionedValues(from: self)
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 | contact.emailAddresses = emailAddresses
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 | contact.messagingNumbers = messagingNumbers
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 | contact.phoneNumbers = phoneNumbers
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 | contact.otherContactInfo = otherContactInfo
108 | contact.organization = organization
109 | contact.title = title
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 | contact.organization = organization
109 | contact.title = title
110 | contact.role = role
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 | contact.title = title
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 | contact.address = address?.makeValue()
113 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 | contact.role = role
111 | contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 | contact.address = address?.makeValue()
| `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:57:72: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
| `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 | @NSManaged var quantityIdentifier: String
38 | @NSManaged var quantityType: String
:
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
59 | unit: HKUnit(from: unitString)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:56:13: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
54 | var healthKitLinkage: OCKHealthKitLinkage!
55 | self.managedObjectContext!.performAndWait {
56 | healthKitLinkage = OCKHealthKitLinkage(
| `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
57 | quantityIdentifier: HKQuantityTypeIdentifier(rawValue: quantityIdentifier),
58 | quantityType: OCKHealthKitLinkage.QuantityType(rawValue: quantityType)!,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
| `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 | @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
:
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
67 | id: id,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 | title: title,
69 | carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | task = OCKHealthKitTask(
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 | id: id,
68 | title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | task.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 | task.impactsAdherence = impactsAdherence
77 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 | task.copyVersionedValues(from: self)
75 | task.instructions = instructions
76 | task.impactsAdherence = impactsAdherence
| `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
| `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 | @NSManaged var author: String?
36 | @NSManaged var title: String?
:
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 | var note: OCKNote!
53 | self.managedObjectContext!.performAndWait {
54 | note = OCKNote(author: author, title: title, content: content)
| `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOutcome)
35 | class OCKCDOutcome: OCKCDVersionedObject {
| `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
36 | @NSManaged var taskOccurrenceIndex: Int64
37 | @NSManaged var task: OCKCDTask
:
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
69 | taskUUID: task.uuid,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
71 | values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
66 |
67 | self.managedObjectContext!.performAndWait {
68 | outcome = OCKOutcome(
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
69 | taskUUID: task.uuid,
70 | taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
72 | )
73 |
74 | outcome.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
75 | }
76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:37: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDOutcomeValue)
34 | class OCKCDOutcomeValue: NSManagedObject {
| `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
35 | @NSManaged var kind: String? // blood sugar, body weight, etc.
36 | @NSManaged var units: String?
:
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:66:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
67 | value.createdDate = createdDate
68 | value.kind = kind
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:67:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
65 | self.managedObjectContext!.performAndWait {
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
68 | value.kind = kind
69 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:68:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
66 | value = OCKOutcomeValue(self.value, units: units)
67 | value.createdDate = createdDate
68 | value.kind = kind
| `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
69 | }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:38: warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPatient)
35 | class OCKCDPatient: OCKCDVersionedObject {
| `- note: class 'OCKCDPatient' does not conform to the 'Sendable' protocol
36 | @NSManaged var name: OCKCDPersonName
37 | @NSManaged private var sex: String?
:
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPatient' in a '@Sendable' closure [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:59:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
57 | var patient: OCKPatient!
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:60:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
58 | self.managedObjectContext!.performAndWait {
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:61:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
59 | patient = OCKPatient(id: id, name: name.makeValue())
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
62 | patient.birthday = birthday
63 | patient.allergies = allergies
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:62:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
60 | patient.copyVersionedValues(from: self)
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
63 | patient.allergies = allergies
64 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPatient.swift:63:13: warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
61 | patient.sex = sex.map { OCKBiologicalSex(rawValue: $0)! }
62 | patient.birthday = birthday
63 | patient.allergies = allergies
| `- warning: mutation of captured var 'patient' in concurrently-executing code [#SendableClosureCaptures]
64 | }
65 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:37: warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDPersonName)
35 | class OCKCDPersonName: NSManagedObject {
| `- note: class 'OCKCDPersonName' does not conform to the 'Sendable' protocol
36 | @NSManaged var namePrefix: String?
37 | @NSManaged var givenName: String?
:
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPersonName' in a '@Sendable' closure [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:62:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
60 | var components = PersonNameComponents()
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:63:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
61 | self.managedObjectContext!.performAndWait {
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:64:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
62 | components.namePrefix = namePrefix
63 | components.givenName = givenName
64 | components.familyName = familyName
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:65:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
63 | components.givenName = givenName
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:66:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
64 | components.familyName = familyName
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
68 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPersonName.swift:67:13: warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
65 | components.nameSuffix = nameSuffix
66 | components.nickname = nickname
67 | components.phoneticRepresentation = phoneticRepresentation?.makeValue()
| `- warning: mutation of captured var 'components' in concurrently-executing code [#SendableClosureCaptures]
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDPostalAddress.swift:61:25: warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDPostalAddress)
34 | class OCKCDPostalAddress: NSManagedObject {
| `- note: class 'OCKCDPostalAddress' does not conform to the 'Sendable' protocol
35 | @NSManaged var street: String
36 | @NSManaged var subLocality: String
:
59 |
60 | let address = OCKPostalAddress(
61 | street: street,
| `- warning: capture of 'self' with non-Sendable type 'OCKCDPostalAddress' in a '@Sendable' closure [#SendableClosureCaptures]
62 | city: city,
63 | state: state,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[733/1299] Compiling ModelsR4 CodeSystemCommonTags.swift
[734/1299] Compiling ModelsR4 CodeSystemCommunicationCategory.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[761/1299] Emitting module CareKitStore
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
45 |
46 | private nonisolated(unsafe) let request: NSFetchRequest<Element>
47 | private nonisolated(unsafe) let context: NSManagedObjectContext
| `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
48 |
49 | var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
| |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[762/1299] Compiling CareKitStore OCKEventQuery.swift
[763/1299] Compiling CareKitStore OCKOutcomeQuery.swift
[764/1299] Compiling CareKitStore OCKPatientQuery.swift
[765/1299] Compiling CareKitStore OCKQueryProtocol.swift
[766/1299] Compiling CareKitStore OCKTaskQuery.swift
[767/1299] Compiling CareKitStore AggregatedCareTaskProgress.swift
[768/1299] Compiling CareKitStore BinaryCareTaskProgress.swift
[769/1299] Compiling CareKitStore CareTaskProgress.swift
[770/1299] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[771/1299] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[772/1299] Compiling CareKitStore CareTaskProgressStrategy.swift
[773/1299] Compiling CareKitStore LinearCareTaskProgress.swift
[774/1299] Compiling CareKitStore resource_bundle_accessor.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[775/1299] Emitting module CareKitUI
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[836/1308] Emitting module ModelsDSTU2
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[896/1380] Compiling CareKitUI OCKInstructionsTaskView.swift
[897/1380] Compiling CareKitUI OCKLogTaskView.swift
[898/1380] Compiling CareKitUI OCKSimpleTaskView.swift
[899/1380] Compiling CareKitUI OCKTaskDisplayable.swift
[900/1380] Compiling CareKitUI OCKHeaderView.swift
[901/1380] Compiling CareKitUI OCKSeparatorView.swift
[902/1380] Compiling CareKitUI OCKStackView.swift
[903/1380] Compiling CareKitUI OCKView.swift
[904/1380] Compiling CareKitUI resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1056/1404] Emitting module ModelsR4
[1081/1428] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1082/1428] Compiling ModelsR4 CodeSystemUse.swift
[1083/1428] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1084/1428] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1085/1428] Compiling ModelsR4 CodeSystemValidationType.swift
[1086/1428] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1087/1428] Compiling ModelsR4 CodeSystemVisionBase.swift
[1088/1428] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1089/1428] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1090/1428] Compiling ModelsR4 CodeableConcept.swift
[1091/1428] Compiling ModelsR4 Coding.swift
[1092/1428] Compiling ModelsR4 Communication.swift
[1093/1428] Compiling ModelsR4 CommunicationRequest.swift
[1094/1428] Compiling ModelsR4 CompartmentDefinition.swift
[1095/1428] Compiling ModelsR4 Composition.swift
[1096/1428] Compiling ModelsR4 ConceptMap.swift
[1097/1428] Compiling ModelsR4 Condition.swift
[1098/1428] Compiling ModelsR4 Consent.swift
[1099/1428] Compiling ModelsR4 ContactDetail.swift
[1100/1428] Compiling ModelsR4 ContactPoint.swift
[1101/1428] Compiling ModelsR4 Contract.swift
[1102/1428] Compiling ModelsR4 Contributor.swift
[1103/1428] Compiling ModelsR4 Count.swift
[1104/1428] Compiling ModelsR4 Coverage.swift
[1105/1452] Compiling ModelsDSTU2 Element.swift
[1106/1452] Compiling ModelsDSTU2 ElementDefinition.swift
[1107/1452] Compiling ModelsDSTU2 EligibilityRequest.swift
[1108/1452] Compiling ModelsDSTU2 EligibilityResponse.swift
[1109/1452] Compiling ModelsDSTU2 Encounter.swift
[1110/1452] Compiling ModelsDSTU2 EnrollmentRequest.swift
[1111/1452] Compiling ModelsDSTU2 EnrollmentResponse.swift
[1112/1452] Compiling ModelsDSTU2 EpisodeOfCare.swift
[1113/1452] Compiling ModelsDSTU2 ExplanationOfBenefit.swift
[1114/1452] Compiling ModelsDSTU2 Extension.swift
[1115/1452] Compiling ModelsDSTU2 FHIRAbstractResource.swift
[1116/1452] Compiling ModelsDSTU2 FHIRBool.swift
[1117/1452] Compiling ModelsDSTU2 FHIRDate+NSDate.swift
[1118/1452] Compiling ModelsDSTU2 FHIRDate.swift
[1119/1452] Compiling ModelsDSTU2 FHIRDecimal.swift
[1120/1452] Compiling ModelsDSTU2 FHIRInteger.swift
[1121/1452] Compiling ModelsDSTU2 FHIRPositiveInteger.swift
[1122/1452] Compiling ModelsDSTU2 FHIRPrimitive.swift
[1123/1452] Compiling ModelsDSTU2 FHIRString.swift
[1124/1452] Compiling ModelsDSTU2 FHIRTime+NSDate.swift
[1125/1452] Compiling ModelsDSTU2 FHIRTime.swift
[1126/1452] Compiling ModelsDSTU2 FHIRURI.swift
[1127/1452] Compiling ModelsDSTU2 FHIRUnsignedInteger.swift
[1128/1452] Compiling ModelsDSTU2 FamilyMemberHistory.swift
[1204/1452] Compiling ModelsR4 Endpoint.swift
[1205/1452] Compiling ModelsR4 EnrollmentRequest.swift
[1206/1452] Compiling ModelsR4 EnrollmentResponse.swift
[1207/1452] Compiling ModelsR4 EpisodeOfCare.swift
[1208/1452] Compiling ModelsR4 EventDefinition.swift
[1209/1452] Compiling ModelsR4 Evidence.swift
[1210/1452] Compiling ModelsR4 EvidenceVariable.swift
[1211/1452] Compiling ModelsR4 ExampleScenario.swift
[1212/1452] Compiling ModelsR4 ExplanationOfBenefit.swift
[1213/1452] Compiling ModelsR4 Expression.swift
[1214/1452] Compiling ModelsR4 Extension.swift
[1215/1452] Compiling ModelsR4 FHIRAbstractResource.swift
[1216/1452] Compiling ModelsR4 FHIRBool.swift
[1217/1452] Compiling ModelsR4 FHIRDate+NSDate.swift
[1218/1452] Compiling ModelsR4 FHIRDate.swift
[1219/1452] Compiling ModelsR4 FHIRDecimal.swift
[1220/1452] Compiling ModelsR4 FHIRInteger.swift
[1221/1452] Compiling ModelsR4 FHIRPositiveInteger.swift
[1222/1452] Compiling ModelsR4 FHIRPrimitive.swift
[1223/1452] Compiling ModelsR4 FHIRString.swift
[1224/1452] Compiling ModelsR4 FHIRTime+NSDate.swift
[1225/1452] Compiling ModelsR4 FHIRTime.swift
[1226/1452] Compiling ModelsR4 FHIRURI.swift
[1227/1452] Compiling ModelsR4 FHIRUnsignedInteger.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld
BUILD FAILURE 6.2 macosSpm