Skip to content
New issue

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

env_bind_lazy() evaluates expression for non-default evaluation environment #1749

Open
hadley opened this issue Sep 12, 2024 · 0 comments
Open

Comments

@hadley
Copy link
Member

hadley commented Sep 12, 2024

library(rlang)

f <- expr(stop("!"))
env <- new_environment()

# OK
env_bind_lazy(current_env(), g = !!f)

# not OK
env_bind_lazy(current_env(), g = !!f, .eval_env = env)
#> Error in env_bind_lazy(current_env(), g = !!f, .eval_env = env): !

Created on 2024-09-12 with reprex v2.1.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant