mirror of https://github.com/icsharpcode/ILSpy.git
20 lines
505 B
20 lines
505 B
using System; |
|
using System.Collections.Generic; |
|
using System.Reflection.Metadata; |
|
using System.Text; |
|
|
|
namespace ICSharpCode.Decompiler.DebugInfo |
|
{ |
|
public struct Variable |
|
{ |
|
public string Name { get; set; } |
|
} |
|
|
|
public interface IDebugInfoProvider |
|
{ |
|
string Description { get; } |
|
IList<SequencePoint> GetSequencePoints(MethodDefinitionHandle method); |
|
IList<Variable> GetVariables(MethodDefinitionHandle method); |
|
bool TryGetName(MethodDefinitionHandle method, int index, out string name); |
|
} |
|
}
|
|
|