Browse Source

Fixed empty statement end location.

newNRvisualizers
Mike Krüger 14 years ago
parent
commit
0dd31176bf
  1. 2
      ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs

2
ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs

@ -44,7 +44,7 @@ namespace ICSharpCode.NRefactory.CSharp @@ -44,7 +44,7 @@ namespace ICSharpCode.NRefactory.CSharp
public override TextLocation EndLocation {
get {
return new TextLocation (Location.Line, Location.Column);
return new TextLocation (Location.Line, Location.Column + 1);
}
}

Loading…
Cancel
Save