19 references to Ignored
Microsoft.CodeAnalysis.CSharp (18)
Symbols\NullableAnnotationExtensions.cs (10)
28
Debug.Assert(a != NullableAnnotation.
Ignored
);
29
Debug.Assert(b != NullableAnnotation.
Ignored
);
39
Debug.Assert(a != NullableAnnotation.
Ignored
);
40
Debug.Assert(b != NullableAnnotation.
Ignored
);
50
Debug.Assert(a != NullableAnnotation.
Ignored
);
51
Debug.Assert(b != NullableAnnotation.
Ignored
);
65
Debug.Assert(a != NullableAnnotation.
Ignored
);
66
Debug.Assert(b != NullableAnnotation.
Ignored
);
128
Debug.Assert(annotation != NullableAnnotation.
Ignored
);
140
NullableAnnotation.
Ignored
=> CodeAnalysis.NullableAnnotation.None,
Symbols\Source\IndexedTypeParameterSymbol.cs (1)
113
builder.Add(TypeWithAnnotations.Create(GetTypeParameter(i), NullableAnnotation.
Ignored
));
Symbols\TypeMap.cs (1)
33
return typeParameters.SelectAsArray(static (tp) => TypeWithAnnotations.Create(tp, NullableAnnotation.
Ignored
));
Symbols\TypeWithAnnotations.cs (6)
89
Debug.Assert(nullableAnnotation != NullableAnnotation.
Ignored
|| typeSymbol.IsTypeParameter());
431
Debug.Assert(NullableAnnotation != NullableAnnotation.
Ignored
);
441
Debug.Assert(NullableAnnotation != NullableAnnotation.
Ignored
);
462
else if (Is((TypeParameterSymbol)typeSymbol) && newTypeWithModifiers.NullableAnnotation != NullableAnnotation.
Ignored
)
473
Debug.Assert(newTypeWithModifiers.Type is not IndexedTypeParameterSymbol || newTypeWithModifiers.NullableAnnotation == NullableAnnotation.
Ignored
);
479
else if (newTypeWithModifiers.NullableAnnotation == NullableAnnotation.
Ignored
)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\NullableReferenceTypesTests.cs (1)
123106
private static readonly NullableAnnotation[] s_AllNullableAnnotations = ((NullableAnnotation[])Enum.GetValues(typeof(NullableAnnotation))).Where(n => n != NullableAnnotation.
Ignored
).ToArray();