3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
941=> new(ActiveNodeIndices, match, newLambdaBody); 1046lambda = new LambdaInfo([]); 1519info = new LambdaInfo();
9 references to LambdaInfo
Microsoft.CodeAnalysis.Features (9)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (9)
940public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 986Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1044if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1184var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1422ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1507[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1510if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1642Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1654if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty())