Skip to content

Commit 2d1b8e8

Browse files
committed
Remove raw value from SourcePresence
1 parent 39bbc66 commit 2d1b8e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/SwiftSyntax/SourcePresence.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
///
1515
/// A `missing` node does not mean, necessarily, that the source item is
1616
/// considered "implicit", but rather that it was not found in the source.
17-
public enum SourcePresence: String {
17+
public enum SourcePresence {
1818
/// The syntax was authored by a human and found, or was generated.
19-
case present = "Present"
19+
case present
2020

2121
/// The syntax was expected or optional, but not found in the source.
22-
case missing = "Missing"
22+
case missing
2323
}

0 commit comments

Comments
 (0)