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