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
.rlang_cli_compat()
I've wondered why lifecycle signaling is so slow, and it looks like there are two main reasons:
parse_expr()
keep_source
parse_exprs()
This seems like a reasonable thing to cache, right?
The text was updated successfully, but these errors were encountered:
signal_state()
Since this is in a standalone file, we can probably mimic .rlang_cli_has_cli()
.rlang_cli_has_cli()
rlang/R/standalone-cli.R
Lines 405 to 419 in c55f602
Sorry, something went wrong.
No branches or pull requests
I've wondered why lifecycle signaling is so slow, and it looks like there are two main reasons:
parse_expr()
thing we fixed in Addkeep_source
toparse_exprs()
and friends #1603.rlang_cli_compat()
checks the rlang package version, which takes quite a whileThis seems like a reasonable thing to cache, right?
The text was updated successfully, but these errors were encountered: