Files

26 lines
602 B
C#
Raw Permalink Normal View History

2026-08-27 10:56:38 -06:00
using System.Collections.Immutable;
namespace Microsoft.CodeAnalysis.Debugging;
internal readonly struct TupleElementNamesInfo
{
internal readonly ImmutableArray<string> ElementNames;
internal readonly int SlotIndex;
internal readonly string LocalName;
internal readonly int ScopeStart;
internal readonly int ScopeEnd;
internal TupleElementNamesInfo(ImmutableArray<string> elementNames, int slotIndex, string localName, int scopeStart, int scopeEnd)
{
ElementNames = elementNames;
SlotIndex = slotIndex;
LocalName = localName;
ScopeStart = scopeStart;
ScopeEnd = scopeEnd;
}
}