mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-16 10:20:11 -04:00
Split func/method definition from calls in several programming language queries
This commit is contained in:
parent
77675b6706
commit
c784720917
15 changed files with 32 additions and 32 deletions
|
|
@ -41,16 +41,16 @@
|
|||
|
||||
;; Function calls ----------------
|
||||
(call_expression
|
||||
function: (identifier) @function)
|
||||
function: (identifier) @function.call)
|
||||
|
||||
(((_
|
||||
function: (selector_expression field: (identifier) @function)
|
||||
function: (selector_expression field: (identifier) @function.call)
|
||||
arguments: (_) @_args)
|
||||
(#not-has-type? @_args arguments_list)))
|
||||
|
||||
((call_expression
|
||||
function: (binded_identifier name: (identifier) @function)
|
||||
@function))
|
||||
@function.call))
|
||||
|
||||
|
||||
;; Function definitions ---------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue