3 instantiations of LambdaInfo
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
978
=>
new
(ActiveNodeIndices, match, newLambdaBody);
1082
lambda = new
LambdaInfo
([]);
1554
info = new
LambdaInfo
();
12 references to LambdaInfo
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (12)
977
public
LambdaInfo
WithMatch(DeclarationBodyMap match, LambdaBody newLambdaBody)
1022
Dictionary<LambdaBody,
LambdaInfo
>? lazyActiveOrMatchedLambdas = null;
1080
if (!lazyActiveOrMatchedLambdas.TryGetValue(oldEnclosingLambdaBody, out
var
lambda))
1220
var
matchingLambdaInfo = lazyActiveOrMatchedLambdas[oldEnclosingLambdaBody];
1457
ref Dictionary<LambdaBody,
LambdaInfo
>? lazyActiveOrMatchedLambdas)
1542
[Out] Dictionary<LambdaBody,
LambdaInfo
> activeOrMatchedLambdas)
1545
if (activeOrMatchedLambdas.TryGetValue(oldLambdaBody, out
var
info))
1677
Dictionary<LambdaBody,
LambdaInfo
> lambdaInfos)
1689
if (lambdaInfos.TryGetValue(oldParentLambdaBody, out
var
lambdaInfo) && !lambdaInfo.BodyMap.Forward.IsEmpty())
5596
IReadOnlyDictionary<LambdaBody,
LambdaInfo
>? activeOrMatchedLambdas,
5685
.Any(oldContainingLambdaBody => activeOrMatchedLambdas.TryGetValue(oldContainingLambdaBody, out
var
info) && info.HasActiveStatement))
6946
ref Dictionary<LambdaBody,
LambdaInfo
>? lazyActiveOrMatchedLambdas)