testData/rename/renameParameterInRmd.after.rmd (21 lines of code) (raw):

```{r} # @type x : numeric # @type y : numeric test_function <- function(x1, y, z, d) { print("This is test function") barplot(x1) x1 + 1 + 1 z } x <- 10 z <- "dsds" y <- x + x ``` ```{python} x = 10 def test_function(x): return 42 + x ``` ```{r} y <- y * x ```