safer-r / saferDev

GNU General Public License v3.0
0 stars 0 forks source link

problem with arg_check() in all functions #31

Closed gael-millot closed 6 days ago

gael-millot commented 2 months ago

replace: ee <- base::expression(argum.check = base::c(argum.check, tempo$problem) , text.check = base::c(text.check, tempo$text) , checked.arg.names = base::c(checked.arg.names, tempo$object.name)) by: ee <- base::expression(argum.check <- base::c(argum.check, tempo$problem) , text.check <- base::c(text.check, tempo$text) , checked.arg.names <- base::c(checked.arg.names, tempo$object.name))

The = is a problem and must replaced by <-

gael-millot commented 1 week ago

Normally, this is solved in the backbone. So when the backbone code is integrated, this solve the problem.

Tintin2710 commented 6 days ago

all done