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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@novell.com>2009-09-10 10:45:10 +0400
committerMike Krüger <mkrueger@novell.com>2009-09-10 10:45:10 +0400
commitedab04e25e69a540fdcc2140f4d570783bcec133 (patch)
treef460dc522c4f8e6ccb35d55052f1da5b666be0ab /main/contrib
parent74f2cd97364243feaaef45e5c823c7e64c879a27 (diff)
* Src/PrettyPrinter/IOutputAstVisitor.cs: moved property to
interface. svn path=/trunk/monodevelop/; revision=141666
Diffstat (limited to 'main/contrib')
-rw-r--r--main/contrib/NRefactory/Project/ChangeLog5
-rw-r--r--main/contrib/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs3
2 files changed, 8 insertions, 0 deletions
diff --git a/main/contrib/NRefactory/Project/ChangeLog b/main/contrib/NRefactory/Project/ChangeLog
index e3ad13db23..addf1662c3 100644
--- a/main/contrib/NRefactory/Project/ChangeLog
+++ b/main/contrib/NRefactory/Project/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-10 Mike Krüger <mkrueger@novell.com>
+
+ * Src/PrettyPrinter/IOutputAstVisitor.cs: moved property to
+ interface.
+
2009-08-24 Mike Krüger <mkrueger@novell.com>
* Src/Location.cs:
diff --git a/main/contrib/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs b/main/contrib/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs
index 95bc6987dd..fae358f34c 100644
--- a/main/contrib/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs
+++ b/main/contrib/NRefactory/Project/Src/PrettyPrinter/IOutputAstVisitor.cs
@@ -47,6 +47,9 @@ namespace ICSharpCode.NRefactory.PrettyPrinter
get;
set;
}
+ bool LastCharacterIsNewLine {
+ get;
+ }
void NewLine();
void Indent();
void PrintComment(Comment comment, bool forceWriteInPreviousBlock);