-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMacroDiagnostic.swift
56 lines (42 loc) · 1.72 KB
/
MacroDiagnostic.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// Created by Helge Heß.
// Copyright © 2023 ZeeZide GmbH.
//
import SwiftDiagnostics
enum MacroDiagnostic: String, DiagnosticMessage, Swift.Error {
case modelMacroCanOnlyBeAppliedOnNSManagedObjects
case multipleAttributeMacrosAppliedOnProperty
case multipleRelationshipMacrosAppliedOnProperty
case attributeAndRelationshipMacrosAppliedOnProperty
case propertyNameIsForbidden
case propertyHasNeitherTypeNorInit
case multipleMembersInAttributesMacroCall
case unexpectedTypeForExtension
var message: String {
switch self {
case .modelMacroCanOnlyBeAppliedOnNSManagedObjects:
"The @Model macro can only be applied on classes that inherit from NSManagedObject."
case .propertyNameIsForbidden:
"This property name cannot be used in NSManagedObject types, " +
"it is a system property."
case .multipleAttributeMacrosAppliedOnProperty:
"Multiple @Attribute macros applied on property."
case .multipleRelationshipMacrosAppliedOnProperty:
"Multiple @Relationship macros applied on property."
case .attributeAndRelationshipMacrosAppliedOnProperty:
"Both @Attribute and @Relationship macros applied on property."
case .propertyHasNeitherTypeNorInit:
"Property has neither type nor initializer?"
case .multipleMembersInAttributesMacroCall:
"Compiler issue, multiple members in attributes macro."
case .unexpectedTypeForExtension:
"Compiler issue, unexpected type passed into extension."
}
}
var diagnosticID: SwiftDiagnostics.MessageID {
.init(domain: "ModelsMacro", id: rawValue)
}
var severity: SwiftDiagnostics.DiagnosticSeverity {
.error
}
}