3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
978=> new(ActiveNodeIndices, match, newLambdaBody); 1082lambda = new LambdaInfo([]); 1554info = new LambdaInfo();
12 references to LambdaInfo
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (12)
977public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 1022Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1080if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1220var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1457ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1542[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1545if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1677Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1689if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty()) 5596IReadOnlyDictionary<LambdaBody, LambdaInfo>? activeOrMatchedLambdas, 5685.Any(oldContainingLambdaBody => activeOrMatchedLambdas.TryGetValue(oldContainingLambdaBody, out var info) && info.HasActiveStatement)) 6946ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas)