aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-01-18 21:54:18 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-01-18 22:09:21 +0100
commit668de0951a36ef17016074f1120b6aacbe6c4515 (patch)
tree633b75c260b2b4acbae1d47b9e90b5af6587eed5 /tests
parenthighlights(swift): add more `@operator`s and `implicit` keyword (diff)
downloadnvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar.gz
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar.bz2
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar.lz
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar.xz
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.tar.zst
nvim-treesitter-668de0951a36ef17016074f1120b6aacbe6c4515.zip
chore: remove swift tests for now (cause CI failure)
Will try to add them again in a follow up.
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/swift/range-expressions.swift8
-rw-r--r--tests/query/highlights/swift/string-interpolation.swift7
2 files changed, 0 insertions, 15 deletions
diff --git a/tests/query/highlights/swift/range-expressions.swift b/tests/query/highlights/swift/range-expressions.swift
deleted file mode 100644
index 693c727d0..000000000
--- a/tests/query/highlights/swift/range-expressions.swift
+++ /dev/null
@@ -1,8 +0,0 @@
- for i in 0..<5 {
- // ^ operator
- print(i)
- }
- for i in 0...5 {
- // ^ operator
- print(i)
- }
diff --git a/tests/query/highlights/swift/string-interpolation.swift b/tests/query/highlights/swift/string-interpolation.swift
deleted file mode 100644
index d500d7cfa..000000000
--- a/tests/query/highlights/swift/string-interpolation.swift
+++ /dev/null
@@ -1,7 +0,0 @@
-var one = 1
-var two = 2
-var name = "Let's do some math: \(one) + \(one) = \(one + one) = \(two)"
-// ^ punctuation.bracket
-// ^ variable
-// ^ punctuation.bracket
-// ^ punctuation.bracket