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

Should inject() strip srcrefs? #1665

Open
hadley opened this issue Nov 2, 2023 · 0 comments
Open

Should inject() strip srcrefs? #1665

hadley opened this issue Nov 2, 2023 · 0 comments

Comments

@hadley
Copy link
Member

hadley commented Nov 2, 2023

To avoid this problem:

library(rlang)
power1 <- function(exp) {
  inject(function(x) x ^ !!exp)
}
funs <- lapply(1:2, power1)
funs
#> [[1]]
#> function(x) x ^ !!exp
#> <environment: 0x107033e08>
#> 
#> [[2]]
#> function(x) x ^ !!exp
#> <environment: 0x107032ba8>

lapply(funs, \(f) structure(f, srcref= NULL))
#> [[1]]
#> function (x) 
#> x^1L
#> <environment: 0x107033e08>
#> 
#> [[2]]
#> function (x) 
#> x^2L
#> <environment: 0x107032ba8>

Created on 2023-11-02 with reprex v2.0.2

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