From 4e9958b67e1d00f851e18390535d324580f3c7c2 Mon Sep 17 00:00:00 2001 From: Rintaro Ishizaki Date: Thu, 20 Mar 2025 10:01:30 -0700 Subject: [PATCH] [ASTGen] Update for 'Parser.ExperimentalFeatures.abiAttribute' removal --- lib/ASTGen/Sources/ASTGen/SourceFile.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ASTGen/Sources/ASTGen/SourceFile.swift b/lib/ASTGen/Sources/ASTGen/SourceFile.swift index be8e09d393f91..83b37cdcc2bd6 100644 --- a/lib/ASTGen/Sources/ASTGen/SourceFile.swift +++ b/lib/ASTGen/Sources/ASTGen/SourceFile.swift @@ -76,9 +76,8 @@ extension Parser.ExperimentalFeatures { mapFeature(.TrailingComma, to: .trailingComma) mapFeature(.CoroutineAccessors, to: .coroutineAccessors) mapFeature(.ValueGenerics, to: .valueGenerics) - mapFeature(.ABIAttribute, to: .abiAttribute) - mapFeature(.OldOwnershipOperatorSpellings, to: .oldOwnershipOperatorSpellings) mapFeature(.KeyPathWithMethodMembers, to: .keypathWithMethodMembers) + mapFeature(.OldOwnershipOperatorSpellings, to: .oldOwnershipOperatorSpellings) } }