You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I don't want to debug an expression, I want to debug all calls to a particular function. Would that belong in this package or a different library?
I'm imagining something like define/debug that works just like define but acts as if all callsites are wrapped in #R.
The text was updated successfully, but these errors were encountered:
That would fit fine in this package. Although it won't be able to print out the expression of the callsite like #R would, and I'm not sure how a user would find which call it came from... If we do this, should define/debug define a function-like macro (sort of like rackunit does) so that it can save the source location and the expression?
Sometimes I don't want to debug an expression, I want to debug all calls to a particular function. Would that belong in this package or a different library?
I'm imagining something like
define/debug
that works just likedefine
but acts as if all callsites are wrapped in#R
.The text was updated successfully, but these errors were encountered: