summaryrefslogtreecommitdiff
path: root/Source/Core/Util.cs
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 13:56:41 -0800
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 13:56:41 -0800
commitd16213bd3b7f5b08ebddf85c5dac62a17fbf7e66 (patch)
tree6527f0c20039a35e891b830182dc2a4b2002e7bc /Source/Core/Util.cs
parentab03eafe1c01840e7baab8fd51b4f00f11076d6a (diff)
Removed old comments about "BASEMOVE" and other constructor calls, where the conversion from Spec# into C# moved a constructor call
Diffstat (limited to 'Source/Core/Util.cs')
-rw-r--r--Source/Core/Util.cs16
1 files changed, 6 insertions, 10 deletions
diff --git a/Source/Core/Util.cs b/Source/Core/Util.cs
index 9a7fec0c..2aaae096 100644
--- a/Source/Core/Util.cs
+++ b/Source/Core/Util.cs
@@ -165,47 +165,43 @@ namespace Microsoft.Boogie {
}
}
- public TokenTextWriter(string filename) :base(){//BASEMOVE DANGER
+ public TokenTextWriter(string filename)
+ : base() {
Contract.Requires(filename != null);
this.filename = filename;
this.writer = new StreamWriter(filename);
- //base();
}
public TokenTextWriter(string filename, bool setTokens)
- : base() {//BASEMOVE DANGER
+ : base() {
Contract.Requires(filename != null);
this.filename = filename;
this.writer = new StreamWriter(filename);
this.setTokens = setTokens;
- //base();
}
public TokenTextWriter(string filename, TextWriter writer, bool setTokens)
- : base() {//BASEMOVE DANGER
+ : base() {
Contract.Requires(writer != null);
Contract.Requires(filename != null);
this.filename = filename;
this.writer = writer;
this.setTokens = setTokens;
- //base();
}
public TokenTextWriter(string filename, TextWriter writer)
- : base() {//BASEMOVE DANGER
+ : base() {
Contract.Requires(writer != null);
Contract.Requires(filename != null);
this.filename = filename;
this.writer = writer;
- //base();
}
public TokenTextWriter(TextWriter writer)
- : base() {//BASEMOVE DANGER
+ : base() {
Contract.Requires(writer != null);
this.filename = "<no file>";
this.writer = writer;
- //base();
}
public void Write(string text) {