mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
14 lines
153 B
JavaScript
14 lines
153 B
JavaScript
|
|
_FOO = 4
|
||
|
|
// <- @constant
|
||
|
|
__A__ = 2
|
||
|
|
// <- @constant
|
||
|
|
_ = 2
|
||
|
|
// <- @variable
|
||
|
|
A_B_C = 4
|
||
|
|
// <- @constant
|
||
|
|
_1 = 1
|
||
|
|
// <- @variable
|
||
|
|
|
||
|
|
const A = 2
|
||
|
|
// ^ @constant
|