deparse_call {constructive} | R Documentation |
Deparse a language object
Description
This is an alternative to base::deparse()
and rlang::expr_deparse()
that
handles additional corner cases and fails when encountering tokens other than
symbols and syntactic literals where cited alternatives would produce non syntactic code.
Usage
deparse_call(
call,
one_liner = FALSE,
pipe = FALSE,
style = TRUE,
collapse = !style,
unicode_representation = c("ascii", "latin", "character", "unicode"),
escape = FALSE
)
Arguments
call |
A call |
one_liner |
Boolean. Whether to collapse multi-line expressions on a single line using semicolons |
pipe |
Boolean. Whether to use the base pipe to disentangle nested calls. This works best on simple calls. |
style |
Boolean. Whether to give a class "constructive_code" on the output for pretty printing. |
collapse |
Boolean. Whether to collapse the output to a single string,
won't be directly visible if |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct a string. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Whether to escape double quotes and backslashes. If |
Value
a string or a character vector, with a class "constructive_code" for pretty
printing if style
is TRUE
Examples
expr <- quote(foo(bar({this; that}, 1)))
deparse_call(expr)
deparse_call(expr, one_liner = TRUE)
deparse_call(expr, pipe = TRUE)
deparse_call(expr, style = FALSE)
# some corner cases are handled better than in base R
deparse(call("$", 1, 1)) # returns non syntactic output
deparse_call(call("$", 1, 1))