5 implementations of TypeArgumentNullableAnnotations
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp (1)
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.VisualBasic (1)
Microsoft.CodeAnalysis.Workspaces (1)
17 references to TypeArgumentNullableAnnotations
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (13)
Symbols\Source\NullablePublicAPITests.cs (11)
948Assert.Equal(result, method.TypeArgumentNullableAnnotations.Single());
1861Assert.Equal(expectedAnnotation, methodSymbol.TypeArgumentNullableAnnotations.Single());
1904Assert.Equal(expectedAnnotation, methodSymbol.TypeArgumentNullableAnnotations.Single());
2968Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3010Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3052Assert.Equal(PublicNullableAnnotation.NotAnnotated, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[0]);
3054Assert.Equal(expectedAnnotation, ((IMethodSymbol)symbolInfo.Symbol).TypeArgumentNullableAnnotations[1]);
3115Assert.Equal(PublicNullableAnnotation.None, ((IMethodSymbol)symbol).TypeArgumentNullableAnnotations[0]);
3159Assert.Equal(annotation1, methodSymbol.TypeArgumentNullableAnnotations[0]);
3161Assert.Equal(annotation2, methodSymbol.TypeArgumentNullableAnnotations[1]);
3204Assert.Equal(annotation, methodSymbol.TypeArgumentNullableAnnotations[0]);
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.VisualBasic (1)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)