Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes the visited attribute attaching in primus-mark-visited #1042

Merged
merged 1 commit into from
Jan 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion plugins/primus_mark_visited/primus_mark_visited_main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,15 @@ let state = Primus.Machine.State.declare
})


let mark_visited t = Term.set_attr t Term.visited ()

let marker visited = object
inherit Term.mapper as super
method! map_blk t =
if Set.mem visited (Term.tid t) then
Term.map def_t t ~f:(fun d -> Term.set_attr d Term.visited ())
mark_visited t |>
Term.map def_t ~f:mark_visited |>
Term.map jmp_t ~f:mark_visited
else t
end

Expand Down