summaryrefslogtreecommitdiff
path: root/Source/Dafny/Dafny.atg
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2012-10-02 14:17:15 -0700
committerGravatar Rustan Leino <leino@microsoft.com>2012-10-02 14:17:15 -0700
commit6489805cff9bc62d1933ca31a0307dbd43cd60e9 (patch)
treec9cef28cf5e59fea9c8ac519c78dbeb0c1679eeb /Source/Dafny/Dafny.atg
parentbcf0efdf2537bb31db269a3620b6eaabe02d38ad (diff)
Dafny: incomplete snapshot of verification of iterators
Diffstat (limited to 'Source/Dafny/Dafny.atg')
-rw-r--r--Source/Dafny/Dafny.atg3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Dafny/Dafny.atg b/Source/Dafny/Dafny.atg
index dcc9a3ca..bc972495 100644
--- a/Source/Dafny/Dafny.atg
+++ b/Source/Dafny/Dafny.atg
@@ -437,7 +437,8 @@ IteratorDecl<ModuleDefinition module, out IteratorDecl/*!*/ iter>
[ BlockStmt<out body, out bodyStart, out bodyEnd>
]
(. iter = new IteratorDecl(id, id.val, module, typeArgs, ins, outs,
- new Specification<FrameExpression>(mod, modAttrs), new Specification<FrameExpression>(reads, readsAttrs),
+ new Specification<FrameExpression>(reads, readsAttrs),
+ new Specification<FrameExpression>(mod, modAttrs),
new Specification<Expression>(decreases, decrAttrs),
req, ens, yieldReq, yieldEns,
body, attrs, signatureOmitted);