-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
# Updates the formals of a function with specified arguments before calling it. | ||
# Enables non-standard evaluation by allowing expressions in certain arguments. | ||
# Example: `do_call(func, list(args = bquote(.(constant_here) + symbol_here)))` | ||
do_call <- function(func, default = list(), fixed = list(), ...) { | ||
# use `as.list()` because `formals()` returns a pairlist | ||
formals <- as.environment(as.list(formals(func))) | ||
# Use `as.list()` because `formals()` returns a pairlist. | ||
args <- as.environment(as.list(formals(func))) | ||
|
||
formal_names <- names(formals) | ||
# Use `base::list2env()` over `utils::modifyList()` for minimal dependency. | ||
args <- list2env(envir = args, default) | ||
args <- list2env(envir = args, list(...)) | ||
args <- list2env(envir = args, fixed) | ||
|
||
# use `base::list2env()` over `utils::modifyList()` for minimal dependency | ||
formals <- list2env(envir = formals, default) | ||
formals <- list2env(envir = formals, list(...)) | ||
formals <- list2env(envir = formals, fixed) | ||
|
||
formals <- as.list.environment(formals, all.names = TRUE)[formal_names] | ||
|
||
# `func` should be non-primitive | ||
`formals<-`(func, value = formals)() | ||
# `func` should be non-primitive. | ||
`formals<-`( | ||
func, value = lapply( | ||
`names<-`(names(args), names(args)), | ||
function(name) { | ||
# `args[[name]]` might be a "missing symbol object". Always use the full form here. | ||
# https://stackoverflow.com/questions/3892580 | ||
if (!is.language(args[[name]])) { | ||
bquote(parent.frame()$args[[.(name)]]) | ||
} else args[[name]] | ||
} | ||
) | ||
)() | ||
} |