2 instantiations of TypeAnnotations
ILCompiler.Compiler (2)
Compiler\Dataflow\FlowAnnotations.cs (2)
343return new TypeAnnotations(key, DynamicallyAccessedMemberTypes.None, null, null, null); 647return new TypeAnnotations(ecmaType, typeAnnotation, annotatedMethods.ToArray(), annotatedFields.ToArray(), typeGenericParameterAnnotations);
9 references to TypeAnnotations
ILCompiler.Compiler (9)
Compiler\Dataflow\FlowAnnotations.cs (9)
57TypeAnnotations typeAnnotations = GetAnnotations(method.OwningType); 89TypeAnnotations typeAnnotations = GetAnnotations(field.OwningType); 294private TypeAnnotations GetAnnotations(TypeDesc type) 299private sealed class TypeAnnotationsHashtable : LockFreeReaderHashtable<TypeDesc, TypeAnnotations> 328protected override bool CompareKeyToValue(TypeDesc key, TypeAnnotations value) => key == value.Type; 329protected override bool CompareValueToValue(TypeAnnotations value1, TypeAnnotations value2) => value1.Type == value2.Type; 331protected override int GetValueHashCode(TypeAnnotations value) => value.Type.GetHashCode(); 333protected override TypeAnnotations CreateValueFromKey(TypeDesc key)