summaryrefslogtreecommitdiff
path: root/Dafny/DafnyAst.cs
diff options
context:
space:
mode:
authorGravatar Jason Koenig <unknown>2012-07-03 17:01:39 -0700
committerGravatar Jason Koenig <unknown>2012-07-03 17:01:39 -0700
commitdd240a71c1ad401071c835c68d5894a3e9f57cfc (patch)
tree375a493a51faf433422710529612d9aa0145a3af /Dafny/DafnyAst.cs
parentd97907a0f27136f12895751c395e8a081b20a754 (diff)
Dafny: added static members of _default to the module level scope, at low priority.
Diffstat (limited to 'Dafny/DafnyAst.cs')
-rw-r--r--Dafny/DafnyAst.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dafny/DafnyAst.cs b/Dafny/DafnyAst.cs
index 1c5dc070..709074f1 100644
--- a/Dafny/DafnyAst.cs
+++ b/Dafny/DafnyAst.cs
@@ -840,6 +840,7 @@ namespace Microsoft.Dafny {
public readonly Dictionary<string, TopLevelDecl> TopLevels = new Dictionary<string, TopLevelDecl>();
public readonly Dictionary<string, Tuple<DatatypeCtor, bool>> Ctors = new Dictionary<string, Tuple<DatatypeCtor, bool>>();
+ public readonly Dictionary<string, MemberDecl> StaticMembers = new Dictionary<string, MemberDecl>();
public ModuleDefinition ModuleDef; // Note: this is null if this signature does not correspond to a specific definition (i.e.
// it is abstract). Otherwise, it points to that definition.
public ModuleSignature Refines;