summaryrefslogtreecommitdiff
path: root/Source/Dafny/DafnyAst.cs
diff options
context:
space:
mode:
authorGravatar leino <unknown>2015-08-11 19:12:43 -0700
committerGravatar leino <unknown>2015-08-11 19:12:43 -0700
commit34cb773ec61c32479c8d189b23e000af956cc28e (patch)
tree63bf936a722fa73cbdf1480a69bbca0a308ccd07 /Source/Dafny/DafnyAst.cs
parent3bf4b44b821dca5017017e99502f263e636d5e84 (diff)
Removed the unused type ThisSurrogate
Diffstat (limited to 'Source/Dafny/DafnyAst.cs')
-rw-r--r--Source/Dafny/DafnyAst.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/Dafny/DafnyAst.cs b/Source/Dafny/DafnyAst.cs
index f66f40a1..fe6ebfc1 100644
--- a/Source/Dafny/DafnyAst.cs
+++ b/Source/Dafny/DafnyAst.cs
@@ -2964,19 +2964,6 @@ namespace Microsoft.Dafny {
}
}
- /// <summary>
- /// A "ThisSurrogate" is used during translation time to make the treatment of the receiver more similar to
- /// the treatment of other in-parameters.
- /// </summary>
- public class ThisSurrogate : Formal
- {
- public ThisSurrogate(IToken tok, Type type)
- : base(tok, "this", type, true, false) {
- Contract.Requires(tok != null);
- Contract.Requires(type != null);
- }
- }
-
public class BoundVar : NonglobalVariable {
public override bool IsMutable {
get {