3 instantiations of GenericLookupKey
ILCompiler.ReadyToRun (3)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (3)
695GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument, methodArgument: null, fieldArgument: null, methodContext);
705GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument: null, methodArgument: null, fieldArgument: fieldArgument, methodContext);
715GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument: null, methodArgument, fieldArgument: null, methodContext);
8 references to GenericLookupKey
ILCompiler.ReadyToRun (8)
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (8)
164_genericLookupHelpers = new NodeCache<GenericLookupKey, Import>(key =>
567private struct GenericLookupKey : IEquatable<GenericLookupKey>
592public bool Equals(GenericLookupKey other)
604return obj is GenericLookupKey other && Equals(other);
618private NodeCache<GenericLookupKey, Import> _genericLookupHelpers;
695GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument, methodArgument: null, fieldArgument: null, methodContext);
705GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument: null, methodArgument: null, fieldArgument: fieldArgument, methodContext);
715GenericLookupKey key = new GenericLookupKey(runtimeLookupKind, fixupKind, typeArgument: null, methodArgument, fieldArgument: null, methodContext);