We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df96313 commit 393a08fCopy full SHA for 393a08f
Sources/SwiftParser/generated/ExperimentalFeatures.swift
@@ -48,9 +48,6 @@ extension Parser.ExperimentalFeatures {
48
/// Whether to enable the parsing of @abi attribute.
49
public static let abiAttribute = Self (rawValue: 1 << 7)
50
51
- /// Whether to enable the parsing of 'unsafe' expression.
52
- public static let unsafeExpression = Self (rawValue: 1 << 8)
53
-
54
/// Creates a new value representing the experimental feature with the
55
/// given name, or returns nil if the name is not recognized.
56
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
default:
77
return nil
78
}
0 commit comments