You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
550 B
20 lines
550 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
|
|
namespace ILRuntime.Runtime.Debugger |
|
{ |
|
public class StackFrameInfo |
|
{ |
|
public string MethodName { get; set; } |
|
public string DocumentName { get; set; } |
|
public int StartLine { get; set; } |
|
public int StartColumn { get; set; } |
|
public int EndLine { get; set; } |
|
public int EndColumn { get; set; } |
|
|
|
public int ArgumentCount { get; set; } |
|
public VariableInfo[] LocalVariables { get; set; } |
|
} |
|
}
|
|
|