在这种情况下我该如何评价
msg
?
f <- function(msg){
cli::cli_abort("{msg} xxx")
}
f(msg = "{.var x}")
# Error in `f()`:
# ! {.var x} xxx
# Run `rlang::last_trace()` to see where the error occurred.
我先粘:
> f <- function(msg){
+ cli::cli_abort(glue::glue("{msg} xxx"))
+ }
> f(msg = "{.var x}")
Error in `f()`:
! `x` xxx
Run `rlang::last_trace()` to see where the error occurred.
>