The R Project SVN R

Rev

Rev 11469 | Rev 33153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11469 Rev 24300
Line 15... Line 15...
15
\value{
15
\value{
16
  \code{traceback()} returns nothing, but prints the deparsed call stack
16
  \code{traceback()} returns nothing, but prints the deparsed call stack
17
  deepest call first.  The calls may print on more that one line, and
17
  deepest call first.  The calls may print on more that one line, and
18
  the first line is labelled by the frame number.
18
  the first line is labelled by the frame number.
19
}
19
}
-
 
20
\references{
-
 
21
  Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)
-
 
22
  \emph{The New S Language}.
-
 
23
  Wadsworth \& Brooks/Cole.
-
 
24
}
20
\examples{
25
\examples{
21
foo <- function(x) { print(1); bar(2) }
26
foo <- function(x) { print(1); bar(2) }
22
bar <- function(x) { x + a.variable.which.does.not.exist }
27
bar <- function(x) { x + a.variable.which.does.not.exist }
23
\dontrun{
28
\dontrun{
24
foo(2) # gives a strange error
29
foo(2) # gives a strange error