We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error_arg()
error_call()
library(rlang) foo <- function(x, arg = caller_arg(x), call = caller_env()) { cli::cli_abort("Error {.arg {x}}", call = call) } foo(123) #> Error: #> ! Error `123`
Created on 2023-11-09 with reprex v2.0.2.9000
Ideally this would be
#> Error: foo() #> ! Error `x`
The text was updated successfully, but these errors were encountered:
Unfortunately I don't think we can do better here.
Sorry, something went wrong.
Though we could detect calls at top-level. The behaviour would then differ when called directly vs in a browser or in testthat or markdown.
The thing that makes me think we could do better is that it's the same appearance at the top level and in snapshot:
Code foo(123) Condition Error: ! Error `123`
No branches or pull requests
Created on 2023-11-09 with reprex v2.0.2.9000
Ideally this would be
The text was updated successfully, but these errors were encountered: