diff options
| author | Riley Bruins <ribru17@hotmail.com> | 2024-08-31 18:28:56 -0700 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-09-02 09:55:48 +0200 |
| commit | e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55 (patch) | |
| tree | f50bf837bebd4dd53094fee517dca3449ee79784 /tests | |
| parent | bot(lockfile): update arduino, c_sharp, dart, embedded_template, gleam, ini, ... (diff) | |
| download | nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar.gz nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar.bz2 nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar.lz nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar.xz nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.tar.zst nvim-treesitter-e090c5b22d0d061e749f8ce33cb9b9a7e6b8ab55.zip | |
feat(wing): add many missing highlights
...as well as some fold and injection queries.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/query/highlights/wing/class.w | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/query/highlights/wing/class.w b/tests/query/highlights/wing/class.w index 9f76b16e8..1507d7574 100644 --- a/tests/query/highlights/wing/class.w +++ b/tests/query/highlights/wing/class.w @@ -1,12 +1,13 @@ bring cloud; -// <- @keyword +// <- @keyword.import +// ^ @module class Foo { // <- @keyword.type // ^ @type // ^ @punctuation.bracket name: str; -//^ @variable.member +//^ @property // ^ @type.builtin // ^ @punctuation.delimiter new(name: str) { @@ -14,6 +15,7 @@ class Foo { // ^ @variable this.name = name; // ^ @punctuation.delimiter +// ^ @variable.member // ^ @operator } } |
