@@ -150,8 +150,8 @@ final class testNameLookup: XCTestCase {
150150 """ ,
151151 references: [
152152 " 5️⃣ " : [
153- . fromScope( ClosureExprSyntax . self, expectedNames: [ NameExpectation . selfCaptured ( " 2️⃣ " ) ] ) ,
154- . fromScope( ClassDeclSyntax . self, expectedNames: [ NameExpectation . selfInstance ( " 7️⃣ " ) ] ) ,
153+ . fromScope( ClosureExprSyntax . self, expectedNames: [ NameExpectation . implicit ( . self ( " 2️⃣ " ) ) ] ) ,
154+ . fromScope( ClassDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . self ( " 7️⃣ " ) ) ] ) ,
155155 ] ,
156156 " 6️⃣ " : [
157157 . fromScope( ClosureExprSyntax . self, expectedNames: [ " 3️⃣ " ] ) ,
@@ -412,7 +412,7 @@ final class testNameLookup: XCTestCase {
412412 . fromScope( MemberBlockSyntax . self, expectedNames: [ " 1️⃣ " , " 2️⃣ " , " 3️⃣ " ] ) ,
413413 . fromScope(
414414 ClassDeclSyntax . self,
415- expectedNames: [ NameExpectation . selfInstance ( " 🔟 " ) , NameExpectation . selfType ( " 🔟 " ) ]
415+ expectedNames: [ NameExpectation . implicit ( . self ( " 🔟 " ) ) , NameExpectation . implicit ( . Self ( " 🔟 " ) ) ]
416416 ) ,
417417 . fromFileScope( expectedNames: [ " 🔟 " ] ) ,
418418 ] ,
@@ -423,7 +423,7 @@ final class testNameLookup: XCTestCase {
423423 . fromScope( MemberBlockSyntax . self, expectedNames: [ " 1️⃣ " , " 2️⃣ " , " 3️⃣ " ] ) ,
424424 . fromScope(
425425 ClassDeclSyntax . self,
426- expectedNames: [ NameExpectation . selfInstance ( " 🔟 " ) , NameExpectation . selfType ( " 🔟 " ) ]
426+ expectedNames: [ NameExpectation . implicit ( . self ( " 🔟 " ) ) , NameExpectation . implicit ( . Self ( " 🔟 " ) ) ]
427427 ) ,
428428 . fromFileScope( expectedNames: [ " 🔟 " ] ) ,
429429 ] ,
@@ -651,15 +651,15 @@ final class testNameLookup: XCTestCase {
651651 """ ,
652652 references: [
653653 " 3️⃣ " : [
654- . fromScope( StructDeclSyntax . self, expectedNames: [ NameExpectation . selfType ( " 2️⃣ " ) ] ) ,
655- . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . selfType ( " 1️⃣ " ) ] ) ,
654+ . fromScope( StructDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . Self ( " 2️⃣ " ) ) ] ) ,
655+ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . Self ( " 1️⃣ " ) ) ] ) ,
656656 ] ,
657657 " 4️⃣ " : [
658- . fromScope( StructDeclSyntax . self, expectedNames: [ NameExpectation . selfInstance ( " 2️⃣ " ) ] ) ,
659- . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . selfInstance ( " 1️⃣ " ) ] ) ,
658+ . fromScope( StructDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . self ( " 2️⃣ " ) ) ] ) ,
659+ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . self ( " 1️⃣ " ) ) ] ) ,
660660 ] ,
661- " 5️⃣ " : [ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . selfType ( " 1️⃣ " ) ] ) ] ,
662- " 6️⃣ " : [ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . selfInstance ( " 1️⃣ " ) ] ) ] ,
661+ " 5️⃣ " : [ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . Self ( " 1️⃣ " ) ) ] ) ] ,
662+ " 6️⃣ " : [ . fromScope( ExtensionDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . self ( " 1️⃣ " ) ) ] ) ] ,
663663 ]
664664 )
665665 }
@@ -691,10 +691,10 @@ final class testNameLookup: XCTestCase {
691691 }
692692 """ ,
693693 references: [
694- " 2️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . newValue ( " 1️⃣ " ) ] ) ] ,
694+ " 2️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . newValue( " 1️⃣ " ) ) ] ) ] ,
695695 " 4️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . identifier ( " 3️⃣ " ) ] ) ] ,
696- " 6️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . newValue ( " 5️⃣ " ) ] ) ] ,
697- " 8️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . oldValue ( " 7️⃣ " ) ] ) ] ,
696+ " 6️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . newValue( " 5️⃣ " ) ) ] ) ] ,
697+ " 8️⃣ " : [ . fromScope( AccessorDeclSyntax . self, expectedNames: [ NameExpectation . implicit ( . oldValue( " 7️⃣ " ) ) ] ) ] ,
698698 ]
699699 )
700700 }
0 commit comments