summaryrefslogtreecommitdiff
path: root/Source/Core/BoogiePL.atg
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 19:00:35 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 19:00:35 +0100
commit62d2fa72d5e1816d6cb1239063302808424c6d13 (patch)
treeb2e9689705c326b8b7ae8907d566a41a82ec85d0 /Source/Core/BoogiePL.atg
parent05f3db34fad65243cbfc077bea7247ed5594bbb9 (diff)
More refactoring
Diffstat (limited to 'Source/Core/BoogiePL.atg')
-rw-r--r--Source/Core/BoogiePL.atg6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/BoogiePL.atg b/Source/Core/BoogiePL.atg
index 6b064669..219cb3e6 100644
--- a/Source/Core/BoogiePL.atg
+++ b/Source/Core/BoogiePL.atg
@@ -160,7 +160,7 @@ PRODUCTIONS
/*------------------------------------------------------------------------*/
BoogiePL
= (. VariableSeq/*!*/ vs;
- DeclarationSeq/*!*/ ds;
+ List<Declaration>/*!*/ ds;
Axiom/*!*/ ax;
List<Declaration/*!*/>/*!*/ ts;
Procedure/*!*/ pr;
@@ -439,9 +439,9 @@ OrderSpec<.out bool ChildrenComplete, out List<ConstantParent/*!*/> Parents.>
.
/*------------------------------------------------------------------------*/
-Function<out DeclarationSeq/*!*/ ds>
+Function<out List<Declaration>/*!*/ ds>
= (. Contract.Ensures(Contract.ValueAtReturn(out ds) != null);
- ds = new DeclarationSeq(); IToken/*!*/ z;
+ ds = new List<Declaration>(); IToken/*!*/ z;
IToken/*!*/ typeParamTok;
var typeParams = new TypeVariableSeq();
var arguments = new VariableSeq();