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