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