File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Sources/SwiftParser/generated Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ extension Parser.ExperimentalFeatures {
48
48
/// Whether to enable the parsing of @abi attribute.
49
49
public static let abiAttribute = Self ( rawValue: 1 << 7 )
50
50
51
- /// Whether to enable the parsing of 'unsafe' expression.
52
- public static let unsafeExpression = Self ( rawValue: 1 << 8 )
53
-
54
51
/// Creates a new value representing the experimental feature with the
55
52
/// given name, or returns nil if the name is not recognized.
56
53
public init ? ( name: String ) {
@@ -71,8 +68,6 @@ extension Parser.ExperimentalFeatures {
71
68
self = . valueGenerics
72
69
case " ABIAttribute " :
73
70
self = . abiAttribute
74
- case " WarnUnsafe " :
75
- self = . unsafeExpression
76
71
default :
77
72
return nil
78
73
}
You can’t perform that action at this time.
0 commit comments