Skip to content

Commit 393a08f

Browse files
committed
Regenerate sources
1 parent df96313 commit 393a08f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Sources/SwiftParser/generated/ExperimentalFeatures.swift

-5
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ extension Parser.ExperimentalFeatures {
4848
/// Whether to enable the parsing of @abi attribute.
4949
public static let abiAttribute = Self (rawValue: 1 << 7)
5050

51-
/// Whether to enable the parsing of 'unsafe' expression.
52-
public static let unsafeExpression = Self (rawValue: 1 << 8)
53-
5451
/// Creates a new value representing the experimental feature with the
5552
/// given name, or returns nil if the name is not recognized.
5653
public init?(name: String) {
@@ -71,8 +68,6 @@ extension Parser.ExperimentalFeatures {
7168
self = .valueGenerics
7269
case "ABIAttribute":
7370
self = .abiAttribute
74-
case "WarnUnsafe":
75-
self = .unsafeExpression
7671
default:
7772
return nil
7873
}

0 commit comments

Comments
 (0)