4 implementations of IMethodSymbol_TypeArgumentsNullableAnnotation
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp (1)
Microsoft.CodeAnalysis.VisualBasic (1)
Microsoft.CodeAnalysis.Workspaces (1)
16 references to IMethodSymbol_TypeArgumentsNullableAnnotation
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (13)
Symbols\Source\NullablePublicAPITests.cs (11)
950Assert.Equal(result, method.TypeArgumentNullableAnnotations.Single());
1860Assert.Equal(expectedAnnotation, methodSymbol.TypeArgumentNullableAnnotations.Single());
1903Assert.Equal(expectedAnnotation, methodSymbol.TypeArgumentNullableAnnotations.Single());
2967Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3009Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3051Assert.Equal(PublicNullableAnnotation.NotAnnotated, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3053Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[1]);
3114Assert.Equal(PublicNullableAnnotation.None, ((IMethodSymbol)symbol).TypeArgumentNullableAnnotations[0]);
3158Assert.Equal(annotation1, methodSymbol.TypeArgumentNullableAnnotations[0]);
3160Assert.Equal(annotation2, methodSymbol.TypeArgumentNullableAnnotations[1]);
3203Assert.Equal(annotation, methodSymbol.TypeArgumentNullableAnnotations[0]);
Microsoft.CodeAnalysis.VisualBasic (1)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)