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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2017-03-09 21:10:12 +0300
committerJb Evain <jb@evain.net>2017-03-09 21:10:12 +0300
commit3518dd01540071dc5c72db01fddb279140c71957 (patch)
treeacae14e4bdfe06212ebe17bce5464ef1c229526e /Mono.Cecil.Cil
parentc08c1878f61f5d2f9453cedd56d8dec8d34f9c80 (diff)
Fix handling of hidden sequence points
Diffstat (limited to 'Mono.Cecil.Cil')
-rw-r--r--Mono.Cecil.Cil/SequencePoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Cecil.Cil/SequencePoint.cs b/Mono.Cecil.Cil/SequencePoint.cs
index 7397054..725d307 100644
--- a/Mono.Cecil.Cil/SequencePoint.cs
+++ b/Mono.Cecil.Cil/SequencePoint.cs
@@ -47,7 +47,7 @@ namespace Mono.Cecil.Cil {
}
public bool IsHidden {
- get { return start_line == 0xfeefee && start_line == start_column; }
+ get { return start_line == 0xfeefee && start_line == end_line; }
}
public Document Document {