We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271c38b commit 7415af0Copy full SHA for 7415af0
Sources/Meta/AccessLevel.swift
@@ -6,6 +6,7 @@
6
//
7
8
public enum AccessLevel: Hashable, MetaSwiftConvertible {
9
+ case open
10
case `public`
11
case `internal`
12
case `private`
@@ -24,6 +25,8 @@ extension AccessLevel {
24
25
26
public var swiftString: String {
27
switch self {
28
+ case .open:
29
+ return "open"
30
case .public:
31
return "public"
32
case .internal:
0 commit comments