diff options
author | 2013-01-07 13:56:41 -0800 | |
---|---|---|
committer | 2013-01-07 13:56:41 -0800 | |
commit | d16213bd3b7f5b08ebddf85c5dac62a17fbf7e66 (patch) | |
tree | 6527f0c20039a35e891b830182dc2a4b2002e7bc /Source/ParserHelper | |
parent | ab03eafe1c01840e7baab8fd51b4f00f11076d6a (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/ParserHelper')
-rw-r--r-- | Source/ParserHelper/ParserHelper.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/ParserHelper/ParserHelper.cs b/Source/ParserHelper/ParserHelper.cs index a24343c9..111b836b 100644 --- a/Source/ParserHelper/ParserHelper.cs +++ b/Source/ParserHelper/ParserHelper.cs @@ -53,11 +53,10 @@ namespace Microsoft.Boogie { this._val = "anything so that it is nonnull";
}
public Token(int linenum, int colnum)
- : base() {//BASEMOVE DANGER
+ : base() {
this._line = linenum;
this._col = colnum;
this._val = "anything so that it is nonnull";
- //:base();
}
public int kind {
|