6 references to NullableSyntaxAnnotation
Microsoft.CodeAnalysis.CSharp.Features (2)
MetadataAsSource\CSharpMetadataAsSourceService.cs (2)
126
return (HasAnnotation(node,
NullableSyntaxAnnotation
.Oblivious),
127
HasAnnotation(node,
NullableSyntaxAnnotation
.AnnotatedOrNotAnnotated));
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Lightup\NullableSyntaxAnnotationEx.cs (2)
29
Contract.ThrowIfFalse(ReferenceEquals(Oblivious,
NullableSyntaxAnnotation
.Oblivious));
30
Contract.ThrowIfFalse(ReferenceEquals(AnnotatedOrNotAnnotated,
NullableSyntaxAnnotation
.AnnotatedOrNotAnnotated));
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\NullableSyntaxAnnotation.cs (2)
19
public static readonly SyntaxAnnotation Oblivious = new($"{nameof(
NullableSyntaxAnnotation
)}.{Oblivious}");
23
public static readonly SyntaxAnnotation AnnotatedOrNotAnnotated = new($"{nameof(
NullableSyntaxAnnotation
)}.{AnnotatedOrNotAnnotated}");