diff options
author | Rustan Leino <leino@microsoft.com> | 2012-07-03 01:13:44 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2012-07-03 01:13:44 -0700 |
commit | 1316915c7dd7300a3e76ea6b8c2689710715dc36 (patch) | |
tree | 19dc6fef005ce4e6e5c2f66f328ce087c70a4790 /Util/Emacs | |
parent | 44c908246d375995e0885cef212490e75bbcd96d (diff) |
Dafny: added copredicates
Diffstat (limited to 'Util/Emacs')
-rw-r--r-- | Util/Emacs/dafny-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Util/Emacs/dafny-mode.el b/Util/Emacs/dafny-mode.el index 05f06b41..cf2b357f 100644 --- a/Util/Emacs/dafny-mode.el +++ b/Util/Emacs/dafny-mode.el @@ -30,7 +30,8 @@ ]\\)*" . font-lock-comment-face)
`(,(dafny-regexp-opt '(
- "class" "datatype" "codatatype" "type" "function" "predicate" "ghost" "var" "method" "constructor"
+ "class" "datatype" "codatatype" "type" "function" "predicate" "copredicate"
+ "ghost" "var" "method" "constructor"
"module" "imports" "static" "refines"
"returns" "requires" "ensures" "modifies" "reads" "free"
"invariant" "decreases"
|