Skip to content
Snippets Groups Projects
Commit a230bb98 authored by David Bühler's avatar David Bühler
Browse files

[server] Property kind: adds check and instance kinds.

parent 80b26026
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,7 @@ struct ...@@ -50,6 +50,7 @@ struct
let t_assumes = t_clause "assumes" let t_assumes = t_clause "assumes"
let t_requires = t_clause "requires" let t_requires = t_clause "requires"
let t_instance = t_clause "instance"
let t_breaks = t_clause "breaks" let t_breaks = t_clause "breaks"
let t_continues = t_clause "continues" let t_continues = t_clause "continues"
let t_returns = t_clause "returns" let t_returns = t_clause "returns"
...@@ -62,6 +63,7 @@ struct ...@@ -62,6 +63,7 @@ struct
let t_froms = t_kind "froms" "Clause `@assigns … \\from …`" let t_froms = t_kind "froms" "Clause `@assigns … \\from …`"
let t_assert = t_clause "assert" let t_assert = t_clause "assert"
let t_check = t_clause "check"
let t_loop_invariant = t_loop "invariant" let t_loop_invariant = t_loop "invariant"
let t_loop_assigns = t_loop "assigns" let t_loop_assigns = t_loop "assigns"
let t_loop_variant = t_loop "variant" let t_loop_variant = t_loop "variant"
...@@ -89,7 +91,7 @@ struct ...@@ -89,7 +91,7 @@ struct
open Property open Property
let rec tag = function let tag = function
| IPPredicate { ip_kind } -> | IPPredicate { ip_kind } ->
begin match ip_kind with begin match ip_kind with
| PKRequires _ -> t_requires | PKRequires _ -> t_requires
...@@ -110,7 +112,8 @@ struct ...@@ -110,7 +112,8 @@ struct
| IPDisjoint _ -> t_disjoint | IPDisjoint _ -> t_disjoint
| IPCodeAnnot { ica_ca={ annot_content } } -> | IPCodeAnnot { ica_ca={ annot_content } } ->
begin match annot_content with begin match annot_content with
| AAssert _ -> t_assert | AAssert (_, Assert, _) -> t_assert
| AAssert (_, Check, _) -> t_check
| AStmtSpec _ -> t_code_contract | AStmtSpec _ -> t_code_contract
| AInvariant(_,false,_) -> t_code_invariant | AInvariant(_,false,_) -> t_code_invariant
| AInvariant(_,true,_) -> t_loop_invariant | AInvariant(_,true,_) -> t_loop_invariant
...@@ -125,7 +128,7 @@ struct ...@@ -125,7 +128,7 @@ struct
| IPFrom _ -> t_froms | IPFrom _ -> t_froms
| IPDecrease _ -> t_decreases | IPDecrease _ -> t_decreases
| IPReachable _ -> t_reachable | IPReachable _ -> t_reachable
| IPPropertyInstance { ii_ip } -> tag ii_ip | IPPropertyInstance _ -> t_instance
| IPTypeInvariant _ -> t_type_invariant | IPTypeInvariant _ -> t_type_invariant
| IPGlobalInvariant _ -> t_global_invariant | IPGlobalInvariant _ -> t_global_invariant
| IPOther { io_name } -> Enum.instance p_other io_name | IPOther { io_name } -> Enum.instance p_other io_name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment