cstjean / TraceCalls.jl

A debugging and profiling tool for Julia
Other
46 stars 4 forks source link

Collecting objects #44

Closed cstjean closed 7 years ago

cstjean commented 7 years ago

I should have a function like objects_in(tr::Trace) that returns all the args and kwargs as a Vector{typ}. Then I could write highlight(tr->any(x isa String && startswith(x, "Log:", objects_in(tr)), trace)

TODO: document