diff options
author | qadeer <qadeer@microsoft.com> | 2011-11-01 12:47:15 -0700 |
---|---|---|
committer | qadeer <qadeer@microsoft.com> | 2011-11-01 12:47:15 -0700 |
commit | 37656bae3a08283ea4c3b5d662cdf5e37536a2d9 (patch) | |
tree | 39d2f8b7f826ec0610c6f00f1c807a3c941105d4 /Source/Core | |
parent | e6d3a8635d826a11fe8756d86b227e6dad838ef5 (diff) |
deleted unused code
Diffstat (limited to 'Source/Core')
-rw-r--r-- | Source/Core/Absy.cs | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs index 8f51aac8..e5e3e549 100644 --- a/Source/Core/Absy.cs +++ b/Source/Core/Absy.cs @@ -1763,30 +1763,7 @@ namespace Microsoft.Boogie { }
}
- public class Expansion {
- public string ignore; // when to ignore
- public Expr/*!*/ body;
- public TypeVariableSeq/*!*/ TypeParameters;
- public Variable[]/*!*/ formals;
- [ContractInvariantMethod]
- void ObjectInvariant() {
- Contract.Invariant(body != null);
- Contract.Invariant(TypeParameters != null);
- Contract.Invariant(formals != null);
- }
-
-
- public Expansion(string ignore, Expr body,
- TypeVariableSeq/*!*/ typeParams, Variable[] formals) {
- Contract.Requires(typeParams != null);
- Contract.Requires(formals != null);
- Contract.Requires(body != null);
- this.ignore = ignore;
- this.body = body;
- this.TypeParameters = typeParams;
- this.formals = formals;
- }
- }
+
public class Function : DeclWithFormals {
public string Comment;
|