Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs
index c92f2240ef8..2b9ab2a51e7 100644
--- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs
+++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs
@@ -102,6 +102,18 @@ namespace Mono.Debugger.Soft
}
}
+ public int EndLineNumber {
+ get {
+ return Location.EndLineNumber;
+ }
+ }
+
+ public int EndColumnNumber {
+ get {
+ return Location.EndColumnNumber;
+ }
+ }
+
public bool IsDebuggerInvoke {
get {
return (flags & StackFrameFlags.DEBUGGER_INVOKE) != 0;