diff options
author | Rustan Leino <leino@microsoft.com> | 2012-10-11 19:24:41 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2012-10-11 19:24:41 -0700 |
commit | 9368c8aa9d95ae4e1cfbed54c2996c6ef41d61b3 (patch) | |
tree | 324ff8db27b02c1f1ea99999a5a900458de7b07e /Util/vim | |
parent | 3feed5acae37f5cfcbb6b25d25117d70faa3e430 (diff) |
New feature:
* Added "comethod" declarations and support for writing manual co-inductive proofs (but currently blindly assume comethod postconditions to, in positive positions, only have copredicates and codatatype equalities--other cases still need to be dealt with)
Code restructuring:
* New set of Boogie procedure stubs generated for each other
* Start of improvements around TrSplitExpr
Diffstat (limited to 'Util/vim')
-rw-r--r-- | Util/vim/syntax/dafny.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Util/vim/syntax/dafny.vim b/Util/vim/syntax/dafny.vim index 45afbcf0..fc98156a 100644 --- a/Util/vim/syntax/dafny.vim +++ b/Util/vim/syntax/dafny.vim @@ -5,7 +5,8 @@ syntax clear syntax case match -syntax keyword dafnyFunction function predicate copredicate method constructor +syntax keyword dafnyFunction function predicate copredicate +syntax keyword method constructor comethod syntax keyword dafnyTypeDef class datatype codatatype type iterator syntax keyword module import opened as default syntax keyword dafnyConditional if then else match case |