2 writes to LocalContext
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\SignatureContext.cs (2)
40LocalContext = context; 47LocalContext = localContext;
14 references to LocalContext
ILCompiler.ReadyToRun (14)
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (3)
344if (module != context.LocalContext) 502if ((method.Token.Module != context.LocalContext) && (!enforceOwningType || (enforceDefEncoding && methodToken.TokenType == CorTokenType.mdtMemberRef))) 606if (targetModule == outerContext.LocalContext)
Compiler\DependencyAnalysis\ReadyToRun\SignatureContext.cs (11)
60return LocalContext; 66return LocalContext; 87&& LocalContext == other.LocalContext; 97return (GlobalContext?.GetHashCode() ?? 0) ^ ((LocalContext?.GetHashCode() ?? 0) * 31); 111if (LocalContext == null || other.LocalContext == null) 113return (LocalContext != null ? 1 : other.LocalContext != null ? -1 : 0); 116return LocalContext.CompareTo(other.LocalContext);