I've been using debug() more often now, but sometimes I wonder which functions have been flagged for debugging. I know that you can use isdebugged() to find out if a particular function is flagged. But is there a way for R to list all the functions that are being debugged?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
This is convoluted, but it works:
You can run it across all your environments like so:
Or just in your ".GlobalEnv" with this:
Here I created a test function which I am debugging. |
||||
|
|
|
Unless you wanted to get into something like writing a function to fire everything through isdebugged(), I don't think you can. In debug.c, the function |
|||
|
|