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