search for: ygoodbye

Displaying 1 result from an estimated 1 matches for "ygoodbye".

Did you mean: goodbye
2016 Sep 30
0
A package that traces base functions
I'm working on a package that implements a REPL.? A typical interaction with the package might look like: > launch_REPL()REPL> 1 + 1[1] 2REPL> QDo you wish to save results? [y/n]REPL> ygoodbye ...> This is very similar to what happens when in `browser()`: the REPL evaluates arbitrary R user expressions and offers some additional commands. In order to implement functionality required for the REPL I must trace some functions in the base package.? The trace is removed `on.exit()` from th...