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