1(function_declaration name: (identifier) @function)
2(method_definition name: (property_identifier) @function)
3(call_expression function: (identifier) @function)
4(call_expression function: (member_expression property: (property_identifier) @function))
5(string) @string
6(number) @number
7(comment) @comment
8[
9 "function"
10 "return"
11 "if"
12 "else"
13 "for"
14 "while"
15 "do"
16 "switch"
17 "case"
18 "default"
19 "break"
20 "continue"
21 "var"
22 "let"
23 "const"
24 "try"
25 "catch"
26 "finally"
27 "class"
28 "extends"
29 "import"
30 "export"
31 "default"
32 "from"
33 "async"
34 "await"
35 "new"
36] @keyword