【发布时间】:2020-10-09 15:47:27
【问题描述】:
my_expr <- expr({
# this is a comment
this_is_code
})
my_expr
返回:
{
this_is_code
}
但我希望它返回:
{
# this is a comment
this_is_code
}
是否可以使用 rlang 保留评论?
【问题讨论】:
my_expr <- expr({
# this is a comment
this_is_code
})
my_expr
返回:
{
this_is_code
}
但我希望它返回:
{
# this is a comment
this_is_code
}
是否可以使用 rlang 保留评论?
【问题讨论】:
评论已被保留,只是不会打印到控制台。查看attr(my_expr, "wholeSrcref")。
【讨论】: