3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
1097=> new(ActiveNodeIndices, match, newLambdaBody); 1201lambda = new LambdaInfo([]); 1673info = new LambdaInfo();
13 references to LambdaInfo
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (12)
1096public LambdaInfo WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody) 1141Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null; 1199if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out var lambda)) 1339var matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody]; 1576ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas) 1661[Out] Dictionary<LambdaBody, LambdaInfo> activeOrMatchedLambdas) 1664if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out var info)) 1796Dictionary<LambdaBody, LambdaInfo> lambdaInfos) 1808if (lambdaInfos.TryGetValue(oldParentLambdaBody, out var lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty()) 5715IReadOnlyDictionary<LambdaBody, LambdaInfo>? activeOrMatchedLambdas, 5804.Any(oldContainingLambdaBody => activeOrMatchedLambdas.TryGetValue(oldContainingLambdaBody, out var info) && info.HasActiveStatement)) 7065ref Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas)
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
514Dictionary<LambdaBody, LambdaInfo>? lazyActiveOrMatchedLambdas = null;