aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/fusion/basic.fusion
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-12-05 09:59:04 +0100
committerChristian Clason <ch.clason+github@icloud.com>2025-12-06 18:10:39 +0100
commitd2350758b39dce3593ffa8b058f863ea4cfa5b0e (patch)
treedbd8591ffc0c59d7993fc91924b5ab42d58ae076 /tests/query/highlights/fusion/basic.fusion
parentfeat(fortran)!: update parser and queries (diff)
downloadnvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.gz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.bz2
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.lz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.xz
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.tar.zst
nvim-treesitter-d2350758b39dce3593ffa8b058f863ea4cfa5b0e.zip
feat(parsers)!: remove gitlab-hosted blueprint, fusion, jsonc
Problem: Gitlab has too frequent outages, which break automation. Solution: Drop all Gitlab-hosted parsers (two of which have been unmaintained for years).
Diffstat (limited to 'tests/query/highlights/fusion/basic.fusion')
-rw-r--r--tests/query/highlights/fusion/basic.fusion60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/query/highlights/fusion/basic.fusion b/tests/query/highlights/fusion/basic.fusion
deleted file mode 100644
index 5f3cc346a..000000000
--- a/tests/query/highlights/fusion/basic.fusion
+++ /dev/null
@@ -1,60 +0,0 @@
-include: SomeFile.fusion
-//<- @keyword.import
-// ^ @string.special.url
-
-namespace: ns = Neos.Fusion.Space
-//<- @keyword.type
-// ^ @module
-// ^ @operator
-// ^ @module
-
-prototype(MyType) < prototype(ns:SuperType) {
-//<-keyword
-// ^ @punctuation.bracket
-// ^ @type
-// ^ @punctuation.bracket
-// ^ @operator
-// ^ @module
-// ^ @type
-
- deleteProp >
- // ^ @operator
-
- string = 'value'
- //<- @property
- // ^ @operator
- // ^ @string
-
- number = 10.2
- // ^ @number
-
- null = null
- // ^ @constant.builtin
-
- boolean = true
- // ^ @boolean
-
- property.inner = "value"
- //<- @property
- // ^ @property
-
- property.@meta = "value"
- //<- @property
- // ^ @attribute
-
- property.type = SomeType
- //<- @property
- // ^ @type
-
- property.aliasedType = ns:SomeType
- //<- @property
- // ^ @module
- // ^ @type
-
- property.fullQualifiedType = SomeNamespace:SomeType
- //<- @property
- // ^ @module
- // ^ @type
-
-}
-