2 writes to _bindingCache
Microsoft.CodeAnalysis.CSharp (2)
BoundTree\UnboundLambda.cs (2)
542_bindingCache = ImmutableDictionary<(NamedTypeSymbol Type, bool IsExpressionLambda), BoundLambda>.Empty.WithComparers(BindingCacheComparer.Instance); 625result = ImmutableInterlocked.GetOrAdd(ref _bindingCache, (delegateType, inExpressionTree), result);
5 references to _bindingCache
Microsoft.CodeAnalysis.CSharp (5)
BoundTree\UnboundLambda.cs (5)
560if ((_bindingCache == null) != includeCache) 566Debug.Assert((state._bindingCache == null) != includeCache); 622if (!_bindingCache!.TryGetValue((delegateType, inExpressionTree), out BoundLambda? result)) 1202GuessBestBoundLambda(_bindingCache!) 1332var convBags = from boundLambda in _bindingCache select boundLambda.Value.Diagnostics;