1 write to LambdaId
Microsoft.CodeAnalysis (1)
CodeGen\LambdaDebugInfo.cs (1)
44
LambdaId
= lambdaId;
10 references to LambdaId
Microsoft.CodeAnalysis (8)
CodeGen\LambdaDebugInfo.cs (6)
51
&&
LambdaId
.Equals(other.
LambdaId
);
62
Hash.Combine(SyntaxOffset,
LambdaId
.GetHashCode()));
68
ClosureOrdinal == StaticClosureOrdinal ? $"({
LambdaId
.GetDebuggerDisplay()} @{SyntaxOffset}, static)" :
69
ClosureOrdinal == ThisOnlyClosureOrdinal ? $"(#{
LambdaId
.GetDebuggerDisplay()} @{SyntaxOffset}, this)" :
70
$"({
LambdaId
.GetDebuggerDisplay()} @{SyntaxOffset} in {ClosureOrdinal})";
Emit\EditAndContinue\DefinitionMap.cs (1)
376
lambdas[lambdaInfo.SyntaxOffset] = KeyValuePairUtil.Create(lambdaInfo.
LambdaId
, lambdaInfo.ClosureOrdinal);
Emit\EditAndContinueMethodDebugInformation.cs (1)
297
Debug.Assert(info.
LambdaId
.Generation == 0);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (2)
EditAndContinueTestUtilities.cs (2)
28
debugInfo.Lambdas.Select(l => $"Offset={l.SyntaxOffset} Id={l.
LambdaId
.Generation}#{l.
LambdaId
.Ordinal} Closure={l.ClosureOrdinal}");