1 write to GenericParameterAnnotations
ILCompiler.Compiler (1)
Compiler\Dataflow\FlowAnnotations.cs (1)
936
=> (Method, ParameterAnnotations, ReturnParameterAnnotation,
GenericParameterAnnotations
) =
15 references to GenericParameterAnnotations
ILCompiler.Compiler (15)
Compiler\Dataflow\FlowAnnotations.cs (15)
115
return GetAnnotations(method.OwningType).TryGetAnnotation(method, out var annotation) && annotation.
GenericParameterAnnotations
!= null;
760
if (methodAnnotations.
GenericParameterAnnotations
!= null || baseMethodAnnotations.
GenericParameterAnnotations
!= null)
762
if (methodAnnotations.
GenericParameterAnnotations
== null)
763
ValidateMethodGenericParametersHaveNoAnnotations(baseMethodAnnotations.
GenericParameterAnnotations
!, method, baseMethod, origin);
764
else if (baseMethodAnnotations.
GenericParameterAnnotations
== null)
765
ValidateMethodGenericParametersHaveNoAnnotations(methodAnnotations.
GenericParameterAnnotations
, method, baseMethod, origin);
768
if (methodAnnotations.
GenericParameterAnnotations
.Length != baseMethodAnnotations.
GenericParameterAnnotations
.Length)
771
for (int genericParameterIndex = 0; genericParameterIndex < methodAnnotations.
GenericParameterAnnotations
.Length; genericParameterIndex++)
773
if (methodAnnotations.
GenericParameterAnnotations
[genericParameterIndex] != baseMethodAnnotations.
GenericParameterAnnotations
[genericParameterIndex])
943
if (
GenericParameterAnnotations
== null)
946
for (int genericParameterIndex = 0; genericParameterIndex <
GenericParameterAnnotations
.Length; genericParameterIndex++)
950
annotation =
GenericParameterAnnotations
[genericParameterIndex];