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.
1 parent 0440efd commit 2c80e7cCopy full SHA for 2c80e7c
R/data.table.R
@@ -104,9 +104,8 @@ replace_dot_alias = function(e) {
104
missing_obj_fmt = gsub(
105
"'missing_datatable_variable____'",
106
"'(?<obj_name>[^']+)'",
107
- tryCatch(eval(parse(text="missing_datatable_variable____")), error=identity)$message
108
- # eval(parse()) to avoid "no visible binding for global variable" note from R CMD check
109
- # names starting with _ don't parse, so no leading _ in the name
+ # expresion() to avoid "no visible binding for global variable" note from R CMD check
+ conditionMessage(tryCatch(eval(expression(`____missing_datatable_variable____`)), error=identity))
110
)
111
idx = regexpr(missing_obj_fmt, err$message, perl=TRUE)
112
if (idx > 0L) {
0 commit comments