2 writes to _cache
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
167
_cache
= new ConcurrentDictionary<TKey, TValue>(comparer);
173
_cache
= new ConcurrentDictionary<TKey, TValue>();
2 references to _cache
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
178
return
_cache
.GetOrAdd(key, _creator);
183
return
_cache
.GetOrAdd(key, creator);