3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
1102=> new(ActiveNodeIndices, match, newLambdaBody); 1206lambda = new LambdaInfo([]); 1678info = new LambdaInfo();
12 references to LambdaInfo
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (12)
1101public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 1146Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1204if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1344var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1581ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1666[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1669if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1801Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1813if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty()) 5838IReadOnlyDictionary<LambdaBody, LambdaInfo>? activeOrMatchedLambdas, 5927.Any(oldContainingLambdaBody => activeOrMatchedLambdas.TryGetValue(oldContainingLambdaBody, out var info) && info.HasActiveStatement)) 7192ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas)