Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/DebugLocalInfo.cs
2018-12-13 21:29:22 +00:00

26 lines
691 B
C#

using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Microsoft.VisualStudio.Debugger.Interop;
namespace Cosmos.VS.DebugEngine.AD7.Impl
{
public class DebugLocalInfo
{
public bool IsLocal { get; set; }
public bool IsReference { get; set; }
public string Type { get; set; }
public string Name { get; set; }
public int Offset { get; set; }
[SuppressMessage("Naming", "CA1720:Identifier contains type name", Scope = "member")]
public uint Pointer { get; set; }
public int Index { get; set; }
public List<IDebugProperty2> Children { get; } = new List<IDebugProperty2>();
}
}