Skip to content

Commit e560373

Browse files
committed
Remove @_typeSequence attribute
This is no longer needed now that we have the ellipsis spelling.
1 parent bd2d1ee commit e560373

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Sources/SwiftParser/Lookahead.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ extension Parser.Lookahead {
250250
"async",
251251
"Sendable",
252252
"unchecked",
253-
"_typeSequence",
254253
"_local",
255254
"block_storage",
256255
"box",

gyb_syntax_support/AttributeKinds.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ def __init__(self, name, swift_name=None):
134134
TypeAttribute('async'),
135135
TypeAttribute('Sendable'),
136136
TypeAttribute('unchecked'),
137-
TypeAttribute('_typeSequence'),
138137
TypeAttribute('_local'),
139138
TypeAttribute('_noMetadata'),
140139

@@ -393,12 +392,7 @@ def __init__(self, name, swift_name=None):
393392
NotSerialized,
394393
ABIStableToAdd, ABIStableToRemove, APIStableToAdd, APIStableToRemove,
395394
code=70),
396-
DeclAttribute('_typeSequence', 'TypeSequence',
397-
OnGenericTypeParam,
398-
UserInaccessible,
399-
NotSerialized,
400-
ABIBreakingToAdd, ABIBreakingToRemove, APIBreakingToAdd, APIBreakingToRemove,
401-
code=71),
395+
# NOTE: 71 is unused
402396
# NOTE: 72 is unused
403397
DeclAttribute('_optimize', 'Optimize',
404398
OnAbstractFunction, OnSubscript, OnVar,

0 commit comments

Comments
 (0)