2 writes to _cache
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
174
_cache
= new ConcurrentDictionary<TKey, TValue>(comparer);
180
_cache
= new ConcurrentDictionary<TKey, TValue>();
2 references to _cache
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
185
return
_cache
.GetOrAdd(key, _creator);
190
return
_cache
.GetOrAdd(key, creator);