3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
925=> new(ActiveNodeIndices, match, newLambdaBody); 1026lambda = new LambdaInfo([]); 1496info = new LambdaInfo();
9 references to LambdaInfo
Microsoft.CodeAnalysis.Features (9)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (9)
924public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 970Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1024if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1161var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1399ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1484[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1487if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1619Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1631if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty())