1 write to GenericParameterAnnotations
illink (1)
Linker.Dataflow\FlowAnnotations.cs (1)
785
=> (Method, ParameterAnnotations, ReturnParameterAnnotation,
GenericParameterAnnotations
) =
15 references to GenericParameterAnnotations
illink (15)
Linker.Dataflow\FlowAnnotations.cs (15)
58
return GetAnnotations(methodDefinition.DeclaringType).TryGetAnnotation(methodDefinition, out var annotation) && annotation.
GenericParameterAnnotations
!= null;
603
if (methodAnnotations.
GenericParameterAnnotations
!= null || baseMethodAnnotations.
GenericParameterAnnotations
!= null)
605
if (methodAnnotations.
GenericParameterAnnotations
== null)
606
ValidateMethodGenericParametersHaveNoAnnotations(baseMethodAnnotations.
GenericParameterAnnotations
!, ov);
607
else if (baseMethodAnnotations.
GenericParameterAnnotations
== null)
608
ValidateMethodGenericParametersHaveNoAnnotations(methodAnnotations.
GenericParameterAnnotations
, ov);
611
if (methodAnnotations.
GenericParameterAnnotations
.Length != baseMethodAnnotations.
GenericParameterAnnotations
.Length)
614
for (int genericParameterIndex = 0; genericParameterIndex < methodAnnotations.
GenericParameterAnnotations
.Length; genericParameterIndex++)
616
if (methodAnnotations.
GenericParameterAnnotations
[genericParameterIndex] != baseMethodAnnotations.
GenericParameterAnnotations
[genericParameterIndex])
792
if (
GenericParameterAnnotations
== null)
795
for (int genericParameterIndex = 0; genericParameterIndex <
GenericParameterAnnotations
.Length; genericParameterIndex++)
799
annotation =
GenericParameterAnnotations
[genericParameterIndex];