2 writes to _cache
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
37
_cache
= new ConcurrentDictionary<TKey, TValue>(comparer);
43
_cache
= new ConcurrentDictionary<TKey, TValue>();
2 references to _cache
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
48
return
_cache
.GetOrAdd(key, _creator);
51
public ICollection<TValue> Values =>
_cache
.Values;