1 write to Context
ILCompiler.ReadyToRun (1)
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
444Context = context;
11 references to Context
ILCompiler.ReadyToRun (11)
Compiler\DependencyAnalysis\ReadyToRun\GenericLookupSignature.cs (2)
239var contextAsMethod = _methodContext.Context as MethodDesc; 240var otherContextAsMethod = otherNode._methodContext.Context as MethodDesc;
JitInterface\CorInfoImpl.ReadyToRun.cs (9)
438public TypeDesc ContextType { get { return (Context is MethodDesc contextAsMethod ? contextAsMethod.OwningType : (TypeDesc)Context); } } 440public MethodDesc ContextMethod { get { return (MethodDesc)Context; } } 447public bool Equals(GenericContext other) => Context == other.Context; 449public override bool Equals(object obj) => obj is GenericContext other && Context == other.Context; 451public override int GetHashCode() => Context.GetHashCode(); 455if (Context is MethodDesc contextAsMethod)