-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
288 allow ellipsis in
get_code
(#290)
Close #288 Allows to pass more parameters in `get_code` through `...`. For example you can now pass `check_names` ```r code <- c( "a <- 1", "b <- identity(x = a)", "a <- 2" ) tdata <- eval_code(teal_data(), code) get_code(tdata, datanames = "c", check_names = TRUE) #> character(0) Warning message: In get_code_dependency(object@code, datanames, ...) : Object(s) not found in code: c get_code(tdata, datanames = "c", check_names = FALSE) #> character(0) ``` --------- Signed-off-by: Marcin <[email protected]> Co-authored-by: Dony Unardi <[email protected]>
- Loading branch information
1 parent
f2f4325
commit a9d02e4
Showing
3 changed files
with
13 additions
and
3 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.