diff options
| author | Riley Bruins <ribru17@hotmail.com> | 2024-04-23 10:52:01 -0700 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-25 12:04:50 +0200 |
| commit | 28a914eb573d6d374d57a5705faba355c1ec4d99 (patch) | |
| tree | 6fe47ab581b500a15e167ff0dcf7ed5de2b7acaa /tests/query/highlights | |
| parent | feat(asm): update queries from upstream (#6505) (diff) | |
| download | nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar.gz nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar.bz2 nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar.lz nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar.xz nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.tar.zst nvim-treesitter-28a914eb573d6d374d57a5705faba355c1ec4d99.zip | |
fix(php): parameter and operator touch-ups
Diffstat (limited to 'tests/query/highlights')
| -rw-r--r-- | tests/query/highlights/php/types.php | 2 | ||||
| -rw-r--r-- | tests/query/highlights/php/variables.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/query/highlights/php/types.php b/tests/query/highlights/php/types.php index 5985d6361..67a1c2f43 100644 --- a/tests/query/highlights/php/types.php +++ b/tests/query/highlights/php/types.php @@ -2,7 +2,7 @@ function b(int $a, string $b): Foo\Dog {} // ^^^ @type.builtin -// ^^ @variable +// ^^ @variable.parameter // ^^^^^^ @type.builtin // ^^^ @module // ^^^ @type diff --git a/tests/query/highlights/php/variables.php b/tests/query/highlights/php/variables.php index a9c099ff2..f6477e131 100644 --- a/tests/query/highlights/php/variables.php +++ b/tests/query/highlights/php/variables.php @@ -2,7 +2,7 @@ class A { public function foo(self $a): self { -// ^ @variable +// ^ @variable.parameter new self(); // ^^^^ @constructor new static(); |
