16 lines
330 B
C#
16 lines
330 B
C#
namespace Microsoft.CodeAnalysis.Debugging;
|
|||
|
|
|
||
|
|
internal enum CustomDebugInfoKind : byte
|
||
|
|
{
|
||
|
|
UsingGroups,
|
||
|
|
ForwardMethodInfo,
|
||
|
|
ForwardModuleInfo,
|
||
|
|
StateMachineHoistedLocalScopes,
|
||
|
|
StateMachineTypeName,
|
||
|
|
DynamicLocals,
|
||
|
|
EditAndContinueLocalSlotMap,
|
||
|
|
EditAndContinueLambdaMap,
|
||
|
|
TupleElementNames,
|
||
|
|
EditAndContinueStateMachineStateMap
|
||
|
|
}
|