1 write to LocalSlots
Microsoft.CodeAnalysis (1)
Emit\EditAndContinueMethodDebugInformation.cs (1)
37
LocalSlots
= localSlots;
9 references to LocalSlots
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DefinitionMap.cs (1)
335
var localSlotDebugInfo = debugInfo.
LocalSlots
.NullToEmpty();
Emit\EditAndContinueMethodDebugInformation.cs (2)
148
foreach (LocalSlotDebugInfo localSlot in
LocalSlots
)
162
foreach (LocalSlotDebugInfo localSlot in
LocalSlots
)
PEWriter\CustomDebugInfoWriter.cs (1)
139
if (!debugInfo.
LocalSlots
.IsDefaultOrEmpty)
PEWriter\MetadataWriter.PortablePdb.cs (1)
810
if (!encInfo.
LocalSlots
.IsDefaultOrEmpty)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\EditAndContinue\CSharpDefinitionMap.cs (1)
148
var localSlots = methodEncInfo.
LocalSlots
;
Microsoft.CodeAnalysis.CSharp.Test.Utilities (2)
EditAndContinueTestUtilities.cs (2)
23
=> debugInfo.
LocalSlots
.IsDefault ? null :
24
debugInfo.
LocalSlots
.Select(s => $"Offset={s.Id.SyntaxOffset} Ordinal={s.Id.Ordinal} Kind={s.SynthesizedKind}");
Microsoft.CodeAnalysis.UnitTests (1)
Emit\CustomDebugInfoTests.cs (1)
211
var deserialized = EditAndContinueMethodDebugInformation.Create(bytes, default(ImmutableArray<byte>)).
LocalSlots
;