Updated SourceLocation with end line and end column
authorDavid Karlaš <david.karlas@xamarin.com>
Fri, 16 Jun 2017 06:18:14 +0000 (08:18 +0200)
committerDavid Karlaš <david.karlas@xamarin.com>
Fri, 16 Jun 2017 06:23:28 +0000 (08:23 +0200)
https://github.com/mono/debugger-libs/commit/479a84ce506e7cf25d6aac4353d59b7fc6526a17

mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs

index c92f2240ef8036b0d2a162a82846dba70c082bfb..2b9ab2a51e79c51f59c12a21402542e9e938e940 100644 (file)
@@ -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;