Add tree-sitter R language support so CodeGraph can parse .R files and index:
- Function definitions (
function_name <- function(...))
- Variable assignments (
x <- value)
- Function calls
- Library imports (
library(x), require(x))
- Source references (
source("file.R"))
A simple R file like:
x <- 1
y <- function(a) a + 1
z <- y(x)
Add tree-sitter R language support so CodeGraph can parse
.Rfiles and index:function_name <- function(...))x <- value)library(x),require(x))source("file.R"))A simple R file like: