3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
918=> new(ActiveNodeIndices, match, newLambdaBody); 1019lambda = new LambdaInfo([]); 1489info = new LambdaInfo();
9 references to LambdaInfo
Microsoft.CodeAnalysis.Features (9)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (9)
917public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 963Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1017if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1154var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1392ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1477[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1480if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1612Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1624if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty())