2 writes to GlobalContext
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\SignatureContext.cs (2)
39
GlobalContext
= context;
46
GlobalContext
= globalContext;
13 references to GlobalContext
ILCompiler.ReadyToRun (13)
Compiler\DependencyAnalysis\ReadyToRun\SignatureContext.cs (13)
35
public SignatureContext OuterContext => new SignatureContext(
GlobalContext
, Resolver);
53
return new SignatureContext(
GlobalContext
, innerContext, Resolver);
86
return
GlobalContext
== other.
GlobalContext
97
return (
GlobalContext
?.GetHashCode() ?? 0) ^ ((LocalContext?.GetHashCode() ?? 0) * 31);
102
if (
GlobalContext
== null || other.
GlobalContext
== null)
104
return (
GlobalContext
!= null ? 1 : other.
GlobalContext
!= null ? -1 : 0);
107
int result =
GlobalContext
.CompareTo(other.
GlobalContext
);
121
return (
GlobalContext
!= null ?
GlobalContext
.Assembly.GetName().Name : "<Composite>");