dwww Home | Show directory contents | Find package

```{r}
library(rlang)

f <- function() g()
g <- function() h()
h <- function() rlang::abort("foo")
```

```{r, error = TRUE}
f()
```

Currently needs to be in a different chunk:

```{r}
last_error()
last_trace()
```

```{r, error = TRUE}
options(rlang_backtrace_on_error_report = "reminder")
f()
```

```{r, error = TRUE}
options(rlang_backtrace_on_error_report = "full")
f()
```

Generated by dwww version 1.15 on Tue Jul 2 08:39:06 CEST 2024.