rco icon indicating copy to clipboard operation
rco copied to clipboard

Bug: ``, '', and "" can be used as SYMBOL

Open jcrodriguez1989 opened this issue 5 years ago • 0 comments

These are valid R expressions, they are parsed differently, and not being well-handled by rco.

`sum1` <- function(x, y) x + y
`sum1`(1, 2)
sum1(1, 2)

'sum2' <- function(x, y) x + y
'sum2'(1, 2)
sum2(1, 2)

"sum3" <- function(x, y) x + y
"sum3"(1, 2)
sum3(1, 2)

jcrodriguez1989 avatar Jul 08 '19 13:07 jcrodriguez1989