try
, suppressWarnings
, eval
, evalq
, and (for built-in methods only) with
and within
. The step-into behaviour is controlled by calling step.into.sysfuns
, which operates like par
. You can also circumvent step-into at particular lines, by using go(n)
to zoom through to the next statement. Additional methods for with
and within
can be handled via e.g. mtrace( with.myS3class)
, so are not considered "special" here.# USAGE is not useful here-- see *Arguments*
step.into.sysfuns( ...)
with=TRUE, evalq=FALSE
. Legal tags are shown in DESCRIPTION. If empty, return all tags-value pairs, as a logical vector.step.into.sysfuns() # all of them-- shows which are legal
step.into.sysfuns()['with'] # extract one of them
owith <- step.into.sysfuns( with=FALSE) # don't step into with-statements
step.into.sysfuns( with=owith) # revert to previous
Run the code above in your browser using DataLab