Skip to content

Commit 09c41d9

Browse files
author
Stephane Magne
committed
Merge branch 'add_open'
2 parents 271c38b + 7415af0 commit 09c41d9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Sources/Meta/AccessLevel.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77

88
public enum AccessLevel: Hashable, MetaSwiftConvertible {
9+
case open
910
case `public`
1011
case `internal`
1112
case `private`
@@ -24,6 +25,8 @@ extension AccessLevel {
2425

2526
public var swiftString: String {
2627
switch self {
28+
case .open:
29+
return "open"
2730
case .public:
2831
return "public"
2932
case .internal:

0 commit comments

Comments
 (0)