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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-01-14 22:29:03 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-01-14 22:29:03 +0300
commit8033cbc0f3fc44aa2c1cf9aed88587f2bc03811b (patch)
treec841f78b0c401412c5132aeb02f00608a16d1461 /Mono.Debugging.Soft/SoftEvaluationContext.cs
parent6eac330ed8572e52c4ded55721f2c0778b46ec06 (diff)
Support for mapping source files(different source path from compile path)
Diffstat (limited to 'Mono.Debugging.Soft/SoftEvaluationContext.cs')
-rw-r--r--Mono.Debugging.Soft/SoftEvaluationContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Debugging.Soft/SoftEvaluationContext.cs b/Mono.Debugging.Soft/SoftEvaluationContext.cs
index ca6a7a8..3cf10ca 100644
--- a/Mono.Debugging.Soft/SoftEvaluationContext.cs
+++ b/Mono.Debugging.Soft/SoftEvaluationContext.cs
@@ -56,7 +56,7 @@ namespace Mono.Debugging.Soft
string method = frame.Method.Name;
if (frame.Method.DeclaringType != null)
method = frame.Method.DeclaringType.FullName + "." + method;
- var location = new DC.SourceLocation (method, frame.FileName, frame.LineNumber, frame.ColumnNumber);
+ var location = new DC.SourceLocation (method, frame.FileName, frame.LineNumber, frame.ColumnNumber, frame.Location.SourceFileHash);
string language;
if (frame.Method != null) {