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