Skip to content

Commit f247b89

Browse files
committed
Remove @frozen from TokenKind
1 parent 9969a19 commit f247b89

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

CodeGeneration/Sources/generate-swiftsyntax/templates/swiftsyntax/TokenKindFile.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ let tokenKindFile = SourceFileSyntax(leadingTrivia: copyrightHeader) {
1919
try! EnumDeclSyntax(
2020
"""
2121
/// Enumerates the kinds of tokens in the Swift language.
22-
@frozen // FIXME: Not actually stable, works around a miscompile
2322
public enum TokenKind: Hashable
2423
"""
2524
) {

Sources/SwiftSyntax/generated/TokenKind.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
/// Enumerates the kinds of tokens in the Swift language.
16-
@frozen // FIXME: Not actually stable, works around a miscompile
1716
public enum TokenKind: Hashable {
1817
case eof
1918
case arrow

0 commit comments

Comments
 (0)