File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
CodeGeneration/Sources/SyntaxSupport Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -646,7 +646,7 @@ public enum Keyword: CaseIterable {
646
646
case . target:
647
647
return KeywordSpec ( " target " )
648
648
case . then:
649
- return KeywordSpec ( " then " , isExperimental : true )
649
+ return KeywordSpec ( " then " )
650
650
case . throw:
651
651
return KeywordSpec ( " throw " , isLexerClassified: true )
652
652
case . throws:
Original file line number Diff line number Diff line change @@ -617,7 +617,8 @@ public let STMT_NODES: [Node] = [
617
617
Node (
618
618
kind: . thenStmt,
619
619
base: . stmt,
620
- isExperimental: true ,
620
+ // FIXME: This should be marked experimental.
621
+ isExperimental: false ,
621
622
nameForDiagnostics: " 'then' statement " ,
622
623
documentation: """
623
624
A statement used to indicate the produced value from an if/switch
You can’t perform that action at this time.
0 commit comments