Skip to content

Commit 7581531

Browse files
committed
[SE-0458] The unsafe expression and for..in effect is no longer experimental
Keep the experimental feature around for just a moment so we don't have to pair commits across the swift-syntax and swift repositories.
1 parent da8362a commit 7581531

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

CodeGeneration/Sources/SyntaxSupport/ExprNodes.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ public let EXPR_NODES: [Node] = [
183183
Node(
184184
kind: .unsafeExpr,
185185
base: .expr,
186-
experimentalFeature: .unsafeExpression,
187186
nameForDiagnostics: "'unsafe' expression",
188187
children: [
189188
Child(

CodeGeneration/Sources/SyntaxSupport/StmtNodes.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ public let STMT_NODES: [Node] = [
287287
Child(
288288
name: "unsafeKeyword",
289289
kind: .token(choices: [.keyword(.unsafe)]),
290-
experimentalFeature: .unsafeExpression,
291290
isOptional: true
292291
),
293292
Child(

0 commit comments

Comments
 (0)