blob: 93f48c1b5ad554000ea6309c321ba8ade756f887 (
plain)
1
2
3
4
5
6
7
8
9
10
|
;; Query to extract require paths from local variable declarations
(variable_declaration
(assignment_statement
(expression_list
(function_call
name: (identifier) @func_name (#eq? @func_name "require")
arguments: (arguments
(string
content: (string_content) @import.name)))))) @import.decl
|