/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/Test2/FindReferences/FindReferencesTests.PropertySymbols.vb
1 588 строк
38 KB
Cyrus Najmabadi
Organize VB imports
27 июн 2025, 21:53
27 июн 2025, 21:53
e9c47fd
Код
Авторство
О чём код?
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports Microsoft.CodeAnalysis.Remote.Testing Namespace Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences <Trait(Traits.Feature, Traits.Features.FindReferences)> Partial Public Class FindReferencesTests <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/538886")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_Property1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; namespace ConsoleApplication22 { class Program { static public int {|Definition:G$$oo|} { get { return 1; } } static void Main(string[] args) { int temp = Program.[|Goo|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/538886")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_Property2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; namespace ConsoleApplication22 { class Program { static public int {|Definition:Goo|} { get { return 1; } } static void Main(string[] args) { int temp = Program.[|Go$$o|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539022")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyCascadeThroughInterface1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I { int {|Definition:$$P|} { get; } } class C : I { public int {|Definition:P|} { get; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539022")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyCascadeThroughInterface2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I { int {|Definition:P|} { get; } } class C : I { public int {|Definition:$$P|} { get; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539047")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyThroughBase1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I1 { int {|Definition:$$Area|} { get; } } class C1 : I1 { public int {|Definition:Area|} { get { return 1; } } } class C2 : C1 { public int Area { get { return base.[|Area|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539047")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyThroughBase2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I1 { int {|Definition:Area|} { get; } } class C1 : I1 { public int {|Definition:$$Area|} { get { return 1; } } } class C2 : C1 { public int Area { get { return base.[|Area|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539047")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyThroughBase3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I1 { int Definition:Area { get; } } class C1 : I1 { public int Definition:Area { get { return 1; } } } class C2 : C1 { public int {|Definition:$$Area|} { get { return base.Area; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539047")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyThroughBase4(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I1 { int {|Definition:Area|} { get; } } class C1 : I1 { public int {|Definition:Area|} { get { return 1; } } } class C2 : C1 { public int Area { get { return base.[|$$Area|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539523")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_ExplicitProperty1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> public interface DD { int {|Definition:$$Prop|} { get; set; } } public class A : DD { int DD.{|Definition:Prop|} { get { return 1; } set { } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539523")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_ExplicitProperty2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> public interface DD { int {|Definition:Prop|} { get; set; } } public class A : DD { int DD.{|Definition:$$Prop|} { get { return 1; } set { } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface1_Api(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T {|Definition:$$Name|} { get; set; } } interface I2 { int Name { get; set; } } interface I3<T> : I2 { new T {|Definition:Name|} { get; set; } } public class M<T> : I1<T>, I3<T> { public T {|Definition:Name|} { get; set; } int I2.Name { get; set; } } ]]> </Document> </Project> </Workspace> Await TestAPI(input, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface1_Feature(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T {|Definition:$$Name|} { get; set; } } interface I2 { int Name { get; set; } } interface I3<T> : I2 { new T Name { get; set; } } public class M<T> : I1<T>, I3<T> { public T {|Definition:Name|} { get; set; } int I2.Name { get; set; } } ]]> </Document> </Project> </Workspace> Await TestStreamingFeature(input, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T Name { get; set; } } interface I2 { int {|Definition:$$Name|} { get; set; } } interface I3<T> : I2 { new T Name { get; set; } } public class M<T> : I1<T>, I3<T> { public T Name { get; set; } int I2.{|Definition:Name|} { get; set; } } ]]> </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface3_Api(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T {|Definition:Name|} { get; set; } } interface I2 { int Name { get; set; } } interface I3<T> : I2 { new T {|Definition:$$Name|} { get; set; } } public class M<T> : I1<T>, I3<T> { public T {|Definition:Name|} { get; set; } int I2.Name { get; set; } } ]]> </Document> </Project> </Workspace> Await TestAPI(input, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface3_FEature(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T Name { get; set; } } interface I2 { int Name { get; set; } } interface I3<T> : I2 { new T {|Definition:$$Name|} { get; set; } } public class M<T> : I1<T>, I3<T> { public T {|Definition:Name|} { get; set; } int I2.Name { get; set; } } ]]> </Document> </Project> </Workspace> Await TestStreamingFeature(input, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface4(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T Name { get; set; } } interface I2 { int {|Definition:Name|} { get; set; } } interface I3<T> : I2 { new T Name { get; set; } } public class M<T> : I1<T>, I3<T> { public T Name { get; set; } int I2.{|Definition:$$Name|} { get; set; } } ]]> </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/539885")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyFromGenericInterface5(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> <![CDATA[ using System; interface I1<T> { T {|Definition:Name|} { get; set; } } interface I2 { int Name { get; set; } } interface I3<T> : I2 { new T {|Definition:Name|} { get; set; } } public class M<T> : I1<T>, I3<T> { public T {|Definition:$$Name|} { get; set; } int I2.Name { get; set; } } ]]> </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/540440")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_PropertyFunctionValue1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> <![CDATA[ Module Program ReadOnly Property {|Definition:$$X|} As Integer ' Rename X to Y Get [|X|] = 1 End Get End Property End Module]]> </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/540440")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_PropertyFunctionValue2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> <![CDATA[ Module Program ReadOnly Property {|Definition:X|} As Integer ' Rename X to Y Get [|$$X|] = 1 End Get End Property End Module]]> </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/543125")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AnonymousTypeProperties1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class C { void M() { var a = new { $$[|{|Definition:P|}|] = 4 }; var b = new { P = "asdf" }; var c = new { [|P|] = 4 }; var d = new { P = "asdf" }; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/543125")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AnonymousTypeProperties2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class C { void M() { var a = new { [|P|] = 4 }; var b = new { P = "asdf" }; var c = new { $$[|{|Definition:P|}|] = 4 }; var d = new { P = "asdf" }; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/543125")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AnonymousTypeProperties3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class C { void M() { var a = new { P = 4 }; var b = new { $$[|{|Definition:P|}|] = "asdf" }; var c = new { P = 4 }; var d = new { [|P|] = "asdf" }; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/543125")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AnonymousTypeProperties4(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class C { void M() { var a = new { P = 4 }; var b = new { [|P|] = "asdf" }; var c = new { P = 4 }; var d = new { $$[|{|Definition:P|}|] = "asdf" }; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/542881")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_AnonymousTypeProperties1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Imports System Imports System.Linq Module Program Sub Main(args As String()) Dim a1 = New With {Key.at = New With {.s = "hello"}} Dim query = From at In (From s In "1" Select s) Select New With {Key {|Definition:a1|}} Dim hello = query.First() Console.WriteLine(hello.$$[|a1|].at.s) End Sub End Module </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/542881")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_AnonymousTypeProperties2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Imports System Imports System.Linq Module Program Sub Main(args As String()) Dim a1 = New With {Key.[|{|Definition:at|}|] = New With {.s = "hello"}} Dim query = From at In (From s In "1" Select s) Select New With {Key a1} Dim hello = query.First() Console.WriteLine(hello.a1.$$[|at|].s) End Sub End Module </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/542881")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_AnonymousTypeProperties3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Imports System Imports System.Linq Module Program Sub Main(args As String()) Dim a1 = New With {Key.at = New With {.[|{|Definition:s|}|] = "hello"}} Dim query = From at In (From s In "1" Select s) Select New With {Key a1} Dim hello = query.First() Console.WriteLine(hello.a1.at.$$[|s|]) End Sub End Module </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/545576")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_CascadeBetweenPropertyAndField1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Class C Property {|Definition:$$X|}() Sub Goo() Console.WriteLine([|_X|]) End Sub End Class </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/545576")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_CascadeBetweenPropertyAndField2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Class C Property {|Definition:X|}() Sub Goo() Console.WriteLine([|$$_X|]) End Sub End Class </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/529765")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_CascadeBetweenParameterizedVBPropertyAndCSharpMethod1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" AssemblyName="VBAssembly" CommonReferences="true"> <Document> Public Class A Public Overridable ReadOnly Property {|Definition:$$X|}(y As Integer) As Integer {|Definition:Get|} Return 0 End Get End Property End Class </Document> </Project> <Project Language="C#" AssemblyName="CSharpAssembly" CommonReferences="true"> <ProjectReference>VBAssembly</ProjectReference> <Document> class B : A { public override int {|Definition:get_X|}(int y) { return base.[|get_X|](y); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/529765")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_CascadeBetweenParameterizedVBPropertyAndCSharpMethod2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" AssemblyName="VBAssembly" CommonReferences="true"> <Document> Public Class A Public Overridable ReadOnly Property {|Definition:X|}(y As Integer) As Integer {|Definition:Get|} Return 0 End Get End Property End Class </Document> </Project> <Project Language="C#" AssemblyName="CSharpAssembly" CommonReferences="true"> <ProjectReference>VBAssembly</ProjectReference> <Document> class B : A { public override int {|Definition:$$get_X|}(int y) { return base.[|get_X|](y); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/529765")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_CascadeBetweenParameterizedVBPropertyAndCSharpMethod3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" AssemblyName="VBAssembly" CommonReferences="true"> <Document> Public Class A Public Overridable ReadOnly Property {|Definition:X|}(y As Integer) As Integer {|Definition:Get|} Return 0 End Get End Property End Class </Document> </Project> <Project Language="C#" AssemblyName="CSharpAssembly" CommonReferences="true"> <ProjectReference>VBAssembly</ProjectReference> <Document> class B : A { public override int {|Definition:get_X|}(int y) { return base.[|$$get_X|](y); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/665876")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_DefaultProperties(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Option Strict On Public Interface IA Default Property Goo(ByVal x As Integer) As Integer End Interface Public Interface IC Inherits IA Default Overloads Property {|Definition:$$Goo|}(ByVal x As Long) As String ' Rename Goo to Bar End Interface Class M Sub F(x As IC) Dim y = x[||](1L) Dim y2 = x(1) End Sub End Class </Document> <Document> Class M2 Sub F(x As IC) Dim y = x[||](1L) Dim y2 = x(1) End Sub End Class </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/665876")> <WpfTheory, CombinatorialData> Public Async Function TestBasic_DefaultProperties2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="Visual Basic" CommonReferences="true"> <Document> Option Strict On Public Interface IA Default Property {|Definition:$$Goo|}(ByVal x As Integer) As Integer End Interface Public Interface IC Inherits IA Default Overloads Property Goo(ByVal x As Long) As String ' Rename Goo to Bar End Interface Class M Sub F(x As IC) Dim y = x(1L) Dim y2 = x[||](1) End Sub End Class </Document> <Document> Class M2 Sub F(x As IC) Dim y = x(1L) Dim y2 = x[||](1) End Sub End Class </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharpProperty_Cref(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface IC { /// <see cref="[|Prop|]"/> int {|Definition:$$Prop|} { get; set; } } </Document> </Project> </Workspace> Await TestStreamingFeature(input, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/538886")> <WpfTheory, CombinatorialData> Public Async Function TestProperty_ValueUsageInfo(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; namespace ConsoleApplication22 { class Program { static public int {|Definition:G$$oo|} { get { return 1; } set { } } static void Main(string[] args) { Console.WriteLine(Program.{|ValueUsageInfo.Read:[|Goo|]|}); Program.{|ValueUsageInfo.Write:[|Goo|]|} = 0; Program.{|ValueUsageInfo.ReadWrite:[|Goo|]|} += 1; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/44288")> <WpfTheory, CombinatorialData> Public Async Function TestPropertyReferenceInGlobalSuppression(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Category", "RuleId", Scope = "member", Target = "~P:N.C.[|P|]")] namespace N { class C { public int {|Definition:$$P|} { get; set; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyUseInSourceGeneratedDocument(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> namespace ConsoleApplication22 { class C { static public int {|Definition:G$$oo|} { get { return 1; } } } } </Document> <DocumentFromSourceGenerator> using System; namespace ConsoleApplication22 { class Program { static void Main(string[] args) { int temp = C.[|Goo|]; } } } </DocumentFromSourceGenerator> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyDefinedInSourceGeneratedDocument1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> namespace ConsoleApplication22 { class Program { static void Main(string[] args) { int temp = C.[|Goo|]; } } } </Document> <DocumentFromSourceGenerator> using System; namespace ConsoleApplication22 { class C { static public int {|Definition:G$$oo|} { get { return 1; } } } } </DocumentFromSourceGenerator> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyDefinedInSourceGeneratedDocument2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> namespace ConsoleApplication22 { class Program { static void Main(string[] args) { int temp = C.[|Goo|]; } } } </Document> <DocumentFromSourceGenerator> using System; namespace ConsoleApplication22 { class C { static public int {|Definition:G$$oo|} { get { return 1; } } void M() { int temp = C.[|Goo|]; } } } </DocumentFromSourceGenerator> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PropertyDefinedInSourceGeneratedDocument3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> namespace ConsoleApplication22 { class Program { static void Main(string[] args) { int temp = C.[|Goo|]; } } } </Document> <DocumentFromSourceGenerator> using System; namespace ConsoleApplication22 { class C { static public int {|Definition:G$$oo|} { get { return 1; } } void M() { int temp = C.[|Goo|]; } } } </DocumentFromSourceGenerator> <DocumentFromSourceGenerator> using System; namespace ConsoleApplication22 { class D { void M() { int temp = C.[|Goo|]; } } } </DocumentFromSourceGenerator> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AbstractStaticPropertyInInterface(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I2 { abstract static int {|Definition:P$$2|} { get; set; } } class C2_1 : I2 { public static int {|Definition:P2|} { get; set; } } class C2_2 : I2 { static int I2.{|Definition:P2|} { get; set; } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AbstractStaticPropertyViaFeature1(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I2 { abstract static int {|Definition:P2|} { get; set; } } class C2_1 : I2 { public static int {|Definition:P$$2|} { get; set; } } class C2_2 : I2 { static int I2.P2 { get; set; } } </Document> </Project> </Workspace> Await TestStreamingFeature(input, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AbstractStaticPropertyViaFeature2(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I2 { abstract static int {|Definition:P2|} { get; set; } } class C2_1 : I2 { public static int P2 { get; set; } } class C2_2 : I2 { static int I2.{|Definition:P$$2|} { get; set; } } </Document> </Project> </Workspace> Await TestStreamingFeature(input, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AbstractStaticPropertyViaAPI1(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I2 { abstract static int {|Definition:P2|} { get; set; } } class C2_1 : I2 { public static int {|Definition:P2|} { get; set; } } class C2_2 : I2 { static int I2.{|Definition:P$$2|} { get; set; } } </Document> </Project> </Workspace> Await TestAPI(input, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestCSharp_AbstractStaticPropertyViaAPI2(host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> interface I2 { abstract static int {|Definition:P2|} { get; set; } } class C2_1 : I2 { public static int {|Definition:P$$2|} { get; set; } } class C2_2 : I2 { static int I2.{|Definition:P2|} { get; set; } } </Document> </Project> </Workspace> Await TestAPI(input, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordProperty1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int {|Definition:$$y|}) { } class P { static void Main() { var f = new Goo(0, [|y|]: 1); Console.WriteLine(f.[|y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordProperty2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int {|Definition:y|}) { } class P { static void Main() { var f = new Goo(0, [|$$y|]: 1); Console.WriteLine(f.[|y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordProperty3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int {|Definition:y|}) { } class P { static void Main() { var f = new Goo(0, [|y|]: 1); Console.WriteLine(f.[|$$y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordPropertyWithExplicitProperty1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int y) { public int {|Definition:$$y|} { get; } = y; } class P { static void Main() { var f = new Goo(0, y: 1); Console.WriteLine(f.[|y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordPropertyWithExplicitProperty2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int y) { public int {|Definition:y|} { get; } = y; } class P { static void Main() { var f = new Goo(0, y: 1); Console.WriteLine(f.[|$$y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordPropertyWithNotPrimaryConstructor1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int y) { public Goo(int {|Definition:$$y|}) { this.y = [|y|]; } } class P { static void Main() { var f = new Goo([|y|]: 1); Console.WriteLine(f.y); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestRecordPropertyWithNotPrimaryConstructor2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; record Goo(int x, int {|Definition:$$y|}) { public Goo(int y) { this.[|y|] = y; } } class P { static void Main() { var f = new Goo(y: 1); Console.WriteLine(f.[|y|]); } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/538886")> <WpfTheory, CombinatorialData> Public Async Function TestCSharp_PartialProperty1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> using System; namespace ConsoleApplication22 { class Program { public static partial int {|Definition:Prop|} { get; } public static partial int {|Definition:P$$rop|} => 1; static void Main(string[] args) { int temp = Program.[|Prop|]; } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function End Class End Namespace