1 write to GenericParameterAnnotations
illink (1)
Linker.Dataflow\FlowAnnotations.cs (1)
819
=> (Method, ParameterAnnotations, ReturnParameterAnnotation,
GenericParameterAnnotations
) =
15 references to GenericParameterAnnotations
illink (15)
Linker.Dataflow\FlowAnnotations.cs (15)
75
return GetAnnotations(methodDefinition.DeclaringType).TryGetAnnotation(methodDefinition, out var annotation) && annotation.
GenericParameterAnnotations
!= null;
637
if (methodAnnotations.
GenericParameterAnnotations
!= null || baseMethodAnnotations.
GenericParameterAnnotations
!= null)
639
if (methodAnnotations.
GenericParameterAnnotations
== null)
640
ValidateMethodGenericParametersHaveNoAnnotations(baseMethodAnnotations.
GenericParameterAnnotations
!, ov);
641
else if (baseMethodAnnotations.
GenericParameterAnnotations
== null)
642
ValidateMethodGenericParametersHaveNoAnnotations(methodAnnotations.
GenericParameterAnnotations
, ov);
645
if (methodAnnotations.
GenericParameterAnnotations
.Length != baseMethodAnnotations.
GenericParameterAnnotations
.Length)
648
for (int genericParameterIndex = 0; genericParameterIndex < methodAnnotations.
GenericParameterAnnotations
.Length; genericParameterIndex++)
650
if (methodAnnotations.
GenericParameterAnnotations
[genericParameterIndex] != baseMethodAnnotations.
GenericParameterAnnotations
[genericParameterIndex])
826
if (
GenericParameterAnnotations
== null)
829
for (int genericParameterIndex = 0; genericParameterIndex <
GenericParameterAnnotations
.Length; genericParameterIndex++)
833
annotation =
GenericParameterAnnotations
[genericParameterIndex];