Skip to content

Commit 4b057ee

Browse files
authored
Merge pull request #788 from CodaFi/eager-moves
Update Attributes One Last Time
2 parents 204ab37 + 4c5191b commit 4b057ee

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Sources/SwiftParser/gyb_generated/DeclarationAttribute.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ extension Parser {
102102
case _implicitSelfCapture = "_implicitSelfCapture"
103103
case _inheritActorContext = "_inheritActorContext"
104104
case _eagerMove = "_eagerMove"
105-
case _lexical = "_lexical"
105+
case _noEagerMove = "_noEagerMove"
106106
case _assemblyVision = "_assemblyVision"
107107
case _nonSendable = "_nonSendable"
108108
case _noImplicitCopy = "_noImplicitCopy"
@@ -118,5 +118,6 @@ extension Parser {
118118
case typeWrapper = "typeWrapper"
119119
case _spiOnly = "_spiOnly"
120120
case _documentation = "_documentation"
121+
case typeWrapperIgnored = "typeWrapperIgnored"
121122
}
122123
}

Sources/generate-swift-syntax-builder/gyb_syntax_support/AttributeKinds.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def __init__(self, name, swift_name=None):
597597
OnFunc, OnParam, OnVar, OnNominalType,
598598
code=117),
599599

600-
SimpleDeclAttribute('_lexical', 'Lexical',
600+
SimpleDeclAttribute('_noEagerMove', 'NoEagerMove',
601601
UserInaccessible,
602602
ABIStableToAdd, ABIStableToRemove,
603603
APIStableToAdd, APIStableToRemove,
@@ -685,6 +685,11 @@ def __init__(self, name, swift_name=None):
685685
OnAnyDecl, UserInaccessible,
686686
APIBreakingToAdd, APIStableToRemove, ABIStableToAdd, ABIStableToRemove,
687687
code=136),
688+
689+
SimpleDeclAttribute('typeWrapperIgnored', 'TypeWrapperIgnored',
690+
OnVar,
691+
ABIStableToAdd, ABIStableToRemove, APIStableToAdd, APIStableToRemove,
692+
code=137),
688693
]
689694

690695
# Schema for declaration modifiers:

0 commit comments

Comments
 (0)