/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/Test2/FindReferences/FindReferencesTests.LocalFunctions.vb
220 строк
5 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("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestLocalFunction1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { { int x = 1; [|$$Print|](x); void {|Definition:Print|}(int y) { } } { int z = 1; Print(z); void Print(int y) { } } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestLocalFunction2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { { int x = 1; [|Print|](x); void {|Definition:$$Print|}(int y) { } } { int z = 1; Print(z); void Print(int y) { } } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestLocalFunction3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { { int x = 1; Print(x); void Print(int y) { } } { int z = 1; [|$$Print|](z); void {|Definition:Print|}(int y) { } } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestLocalFunction4(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { { int x = 1; Print(x); void Print(int y) { } } { int z = 1; [|Print|](z); void {|Definition:$$Print|}(int y) { } } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestGenericLocalFunction1(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { int x = 1; [|Print|](x); [|Print|]<int>(x); void {|Definition:$$Print|}<T>(T y) { } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestGenericLocalFunction2(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { int x = 1; [|Print|](x); [|$$Print|]<int>(x); void {|Definition:Print|}<T>(T y) { } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WorkItem("https://github.com/dotnet/roslyn/issues/18761")> <WpfTheory, CombinatorialData> Public Async Function TestGenericLocalFunction3(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <Document> class Test { void Main() { int x = 1; [|$$Print|](x); [|Print|]<int>(x); void {|Definition:Print|}<T>(T y) { } } } </Document> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function <WpfTheory, CombinatorialData> Public Async Function TestLocalFunctionUsedInSourceGeneratedDocument(kind As TestKind, host As TestHost) As Task Dim input = <Workspace> <Project Language="C#" CommonReferences="true"> <DocumentFromSourceGenerator> class Test { void Main() { int x = 1; [|$$Print|](x); void {|Definition:Print|}(int y) { } } } </DocumentFromSourceGenerator> </Project> </Workspace> Await TestAPIAndFeature(input, kind, host) End Function End Class End Namespace