Skip to content

Commit 12cbc30

Browse files
committed
[region-isolation] Add an experimental feature flag for transferringArgsAndResults.
Just getting ahead of the main work.
1 parent 184930a commit 12cbc30

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

CodeGeneration/Sources/SyntaxSupport/ExperimentalFeatures.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public enum ExperimentalFeature: String, CaseIterable {
1818
case typedThrows
1919
case doExpressions
2020
case nonescapableTypes
21+
case transferringArgsAndResults
2122

2223
/// The name of the feature, which is used in the doc comment.
2324
public var featureName: String {
@@ -32,6 +33,8 @@ public enum ExperimentalFeature: String, CaseIterable {
3233
return "'do' expressions"
3334
case .nonescapableTypes:
3435
return "NonEscableTypes"
36+
case .transferringArgsAndResults:
37+
return "TransferringArgsAndResults"
3538
}
3639
}
3740

0 commit comments

Comments
 (0)