mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
chore(tests): consistent captures
This commit is contained in:
parent
17fae3f4a3
commit
10dd49958c
60 changed files with 872 additions and 873 deletions
|
|
@ -1,49 +1,49 @@
|
|||
let
|
||||
var a : int := 42
|
||||
/* ^ punctuation.delimiter */
|
||||
/* ^ operator */
|
||||
/* ^ @punctuation.delimiter */
|
||||
/* ^ @operator */
|
||||
in
|
||||
(
|
||||
/* <- punctuation.bracket */
|
||||
/* <- @punctuation.bracket */
|
||||
|
||||
-1 | 2 & 3 + 4 * 5;
|
||||
/* <- operator */
|
||||
/* ^ operator */
|
||||
/* ^ operator */
|
||||
/* ^ operator */
|
||||
/* ^ operator */
|
||||
/* ^ punctuation.delimiter */
|
||||
/* <- @operator */
|
||||
/* ^ @operator */
|
||||
/* ^ @operator */
|
||||
/* ^ @operator */
|
||||
/* ^ @operator */
|
||||
/* ^ @punctuation.delimiter */
|
||||
|
||||
12 >= 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
12 <= 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
12 = 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
12 <> 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
12 < 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
12 > 27;
|
||||
/* ^ operator */
|
||||
/* ^ @operator */
|
||||
|
||||
record.field;
|
||||
/* ^ punctuation.delimiter */
|
||||
/* ^ @punctuation.delimiter */
|
||||
|
||||
func(a, b);
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ punctuation.delimiter */
|
||||
/* ^ @punctuation.bracket */
|
||||
/* ^ @punctuation.bracket */
|
||||
/* ^ @punctuation.delimiter */
|
||||
|
||||
record_type { };
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ @punctuation.bracket */
|
||||
/* ^ @punctuation.bracket */
|
||||
|
||||
array[42]
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ punctuation.bracket */
|
||||
/* ^ @punctuation.bracket */
|
||||
/* ^ @punctuation.bracket */
|
||||
|
||||
)
|
||||
/* <- punctuation.bracket */
|
||||
/* <- @punctuation.bracket */
|
||||
end
|
||||
/* vim: set ft=tiger: */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue