Skip to content
Snippets Groups Projects
Commit ffb202d8 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

Avoid issues with Landmarks' PPX and constructors inside methods

parent dad6a08d
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ struct ...@@ -47,7 +47,7 @@ struct
let visitor f = let visitor f =
object object
inherit Visitor.frama_c_inplace inherit Visitor.frama_c_inplace
method! vlval lval = f lval; SkipChildren method! vlval lval = f lval; Cil.SkipChildren
end end
let from_exp f exp = let from_exp f exp =
......
...@@ -108,7 +108,7 @@ class induction = ...@@ -108,7 +108,7 @@ class induction =
let value = Tactical.selected s in let value = Tactical.selected s in
if F.is_int value then if F.is_int value then
match self#get_base () with match self#get_base () with
| Some base -> Applicable(process value base) | Some base -> Tactical.Applicable(process value base)
| None -> Not_configured | None -> Not_configured
else Not_applicable else Not_applicable
......
...@@ -59,7 +59,7 @@ class sequence = ...@@ -59,7 +59,7 @@ class sequence =
| Fun(f,[a;n]) when f == Vlist.f_repeat -> | Fun(f,[a;n]) when f == Vlist.f_repeat ->
let result = F.typeof value in let result = F.typeof value in
let at = Tactical.at s in let at = Tactical.at s in
Applicable Tactical.Applicable
begin begin
match self#get_field vmode with match self#get_field vmode with
| `Sum -> | `Sum ->
......
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