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:
authorDavid Karlaš <david.karlas@xamarin.com>2017-06-16 09:18:14 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2017-06-16 09:23:28 +0300
commitdd15ef7b68310605c25e254bb29fa115ae820ac4 (patch)
tree614a21740999a65bbe486771e36afe0ad57c3e14 /mcs/class/Mono.Debugger.Soft
parenta4278938393162c64205fd4acb32780f7952def3 (diff)
Updated SourceLocation with end line and end column
https://github.com/mono/debugger-libs/commit/479a84ce506e7cf25d6aac4353d59b7fc6526a17
Diffstat (limited to 'mcs/class/Mono.Debugger.Soft')
-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;