When debugging a function, R
displays the full filename from where the function was sourced. Example output shown below.
Where is this information (filename) stored and is it user accessible?
> debugonce(myFunction)
> myFunction(x)
debugging in: myFunction(x)
debug at /path/to/filename.r#41: {
< body of myFunction >
}
Browse[2]> Q
>