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
construct_reprex() will construct the local environment entirely, that might be too much.
We could have a call argument, and we'd do as we did in {historian} :
Turn all the things into lazy bindings
Run the call
Check what is not lazy anymore
construct it
So when I'm debugging, right before a call, rather than calling construct_reprex(), we'd call construct_reprex(call = foo(x, a$b, bar(bar)), call is ignored if n is not default.
The text was updated successfully, but these errors were encountered:
construct_reprex() will construct the local environment entirely, that might be too much.
We could have a
call
argument, and we'd do as we did in {historian} :So when I'm debugging, right before a call, rather than calling
construct_reprex()
, we'd callconstruct_reprex(call = foo(x, a$b, bar(bar))
,call
is ignored if n is not default.The text was updated successfully, but these errors were encountered: