Return the name of variable varname in call match_call.
Value
A character with the name of the variable passed as parameter
varname in parent close of match_call.
Examples
a <- 1
f <- function(x, y)
MSnbase:::getVariableName(match.call(), "x")
f(x = a)
#> [1] "a"
f(y = a)
#> character(0)