We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I was essentially doing something like the following:
e <- rlang::expr(x + 1) rlang::expr(lapply(X, function(x) { !!e })) # lapply(X, function(x) { # x + 1 # })
However, when running covr, the function inside lapply gets an extra set of curly braces, so expr ends up seeing:
covr
lapply
expr
rlang::expr(lapply(X, function(x) {{ !!e }})) # Error: `arg` must be a symbol
Causing an error because rlang 0.4.0 now treats {{ as an interpolation marker.
rlang
{{
The text was updated successfully, but these errors were encountered:
Work around r-lib/covr#377
10183b7
temp workaround to a bug in covr. see r-lib/covr#377
be60c7f
🐛 Work around r-lib/covr#377
54d6678
d673ea9
covrpage
reverting earlier workaround changes for r-lib/covr#377
1d7b9f0
No branches or pull requests
I was essentially doing something like the following:
However, when running
covr
, the function insidelapply
gets an extra set of curly braces, soexpr
ends up seeing:Causing an error because
rlang
0.4.0 now treats{{
as an interpolation marker.The text was updated successfully, but these errors were encountered: