@@ -78,7 +78,6 @@ extension Syntax {
7878 . node( ContinueStmtSyntax . self) ,
7979 . node( ConventionAttributeArgumentsSyntax . self) ,
8080 . node( ConventionWitnessMethodAttributeArgumentsSyntax . self) ,
81- . node( DeclEffectSpecifiersSyntax . self) ,
8281 . node( DeclModifierDetailSyntax . self) ,
8382 . node( DeclModifierSyntax . self) ,
8483 . node( DeclNameArgumentListSyntax . self) ,
@@ -124,6 +123,7 @@ extension Syntax {
124123 . node( ForgetStmtSyntax . self) ,
125124 . node( FunctionCallExprSyntax . self) ,
126125 . node( FunctionDeclSyntax . self) ,
126+ . node( FunctionEffectSpecifiersSyntax . self) ,
127127 . node( FunctionParameterListSyntax . self) ,
128128 . node( FunctionParameterSyntax . self) ,
129129 . node( FunctionSignatureSyntax . self) ,
@@ -411,8 +411,6 @@ extension SyntaxKind {
411411 return ConventionAttributeArgumentsSyntax . self
412412 case . conventionWitnessMethodAttributeArguments:
413413 return ConventionWitnessMethodAttributeArgumentsSyntax . self
414- case . declEffectSpecifiers:
415- return DeclEffectSpecifiersSyntax . self
416414 case . declModifierDetail:
417415 return DeclModifierDetailSyntax . self
418416 case . declModifier:
@@ -503,6 +501,8 @@ extension SyntaxKind {
503501 return FunctionCallExprSyntax . self
504502 case . functionDecl:
505503 return FunctionDeclSyntax . self
504+ case . functionEffectSpecifiers:
505+ return FunctionEffectSpecifiersSyntax . self
506506 case . functionParameterList:
507507 return FunctionParameterListSyntax . self
508508 case . functionParameter:
@@ -942,8 +942,6 @@ extension SyntaxKind {
942942 return " @convention(...) arguments "
943943 case . conventionWitnessMethodAttributeArguments:
944944 return " @convention(...) arguments for witness methods "
945- case . declEffectSpecifiers:
946- return " effect specifiers "
947945 case . declModifierDetail:
948946 return nil
949947 case . declModifier:
@@ -1034,6 +1032,8 @@ extension SyntaxKind {
10341032 return " function call "
10351033 case . functionDecl:
10361034 return " function "
1035+ case . functionEffectSpecifiers:
1036+ return " effect specifiers "
10371037 case . functionParameterList:
10381038 return " parameter list "
10391039 case . functionParameter:
0 commit comments