summaryrefslogtreecommitdiff
path: root/Source/Core/BoogiePL.atg
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 22:22:48 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 22:22:48 +0100
commitf29368964a6233945a16d36109b18073e1983154 (patch)
treebed8deffe1fc07d7aefea0fa30083e7c1d54909d /Source/Core/BoogiePL.atg
parent39d097578051fdee43bca8d17cb568b99a7be50e (diff)
StringSeq: farewell
Diffstat (limited to 'Source/Core/BoogiePL.atg')
-rw-r--r--Source/Core/BoogiePL.atg4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/BoogiePL.atg b/Source/Core/BoogiePL.atg
index a8a03567..dec0b3a8 100644
--- a/Source/Core/BoogiePL.atg
+++ b/Source/Core/BoogiePL.atg
@@ -750,7 +750,7 @@ StmtList<out StmtList/*!*/ stmtList>
TransferCmd<out TransferCmd/*!*/ tc>
= (. Contract.Ensures(Contract.ValueAtReturn(out tc) != null); tc = dummyTransferCmd;
Token y; List<IToken>/*!*/ xs;
- StringSeq ss = new StringSeq();
+ List<String> ss = new List<String>();
.)
( "goto" (. y = t; .)
Idents<out xs> (. foreach(IToken/*!*/ s in xs){
@@ -1316,7 +1316,7 @@ SpecBlock<out Block/*!*/ b>
Cmd c; IToken label;
List<Cmd> cs = new List<Cmd>();
List<IToken>/*!*/ xs;
- StringSeq ss = new StringSeq();
+ List<String> ss = new List<String>();
b = dummyBlock;
Expr/*!*/ e;
.)