Support typed errors. Misc formatting

This commit is contained in:
John Estropia
2024-09-10 11:14:39 +09:00
parent c9e091a6a4
commit 5dcf29011a
74 changed files with 3987 additions and 1441 deletions

View File

@@ -44,8 +44,11 @@ public final class UnsafeDataModelSchema: DynamicSchema {
- parameter modelName: the model version, typically the file name of an *.xcdatamodeld file (without the file extension)
- parameter model: the `NSManagedObjectModel`
*/
public required init(modelName: ModelVersion, model: NSManagedObjectModel) {
public required init(
modelName: ModelVersion,
model: NSManagedObjectModel
) {
self.modelVersion = modelName
self.model = model
}