aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-06-15 14:39:06 +0200
committerChristian Clason <c.clason@uni-graz.at>2024-06-27 15:31:41 +0200
commit5373c90c55a33408604d17713edaa9560306b83d (patch)
treebaef9637cf6203e0ed7e354e976bd1e2f2c8c7c0 /tests/query
parentfeat(gitcommit): remove overflow rule (diff)
downloadnvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar.gz
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar.bz2
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar.lz
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar.xz
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.tar.zst
nvim-treesitter-5373c90c55a33408604d17713edaa9560306b83d.zip
feat(r)!: update parser and queries
Diffstat (limited to 'tests/query')
-rw-r--r--tests/query/highlights/r/test.r9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/query/highlights/r/test.r b/tests/query/highlights/r/test.r
index c67df6096..667be4bea 100644
--- a/tests/query/highlights/r/test.r
+++ b/tests/query/highlights/r/test.r
@@ -5,7 +5,6 @@ init <- 1
r"{(\1\2)}" -> `%r%`
# ^ @string
-# ^ @string.escape
# ^ @operator
# ^ @variable
@@ -24,21 +23,21 @@ b <- list(name = "r", version = R.version$major)
# ^ @variable.parameter
# ^ @string
# ^ @operator
-# ^ @variable.member
+# ^ @variable
Lang$new(name = "r")$print()
-# ^ @function.method.call
+# ^ @variable
for(i in 1:10) {
# <- @keyword.repeat
-# ^ @keyword.repeat
+# ^ @keyword
}
add <- function(a, b = 1, ...) {
# ^ @keyword.function
# ^ @variable.parameter
# ^ @variable.parameter
-# ^ @keyword
+# ^ @constant.builtin
return(a + b)
}