Variable: js--treesit-list-nodes

js--treesit-list-nodes is a variable defined in js.el.gz.

Value

("export_clause" "named_imports" "statement_block" "_for_header"
 "switch_body" "parenthesized_expression" "object" "object_pattern"
 "array" "array_pattern" "jsx_element" "jsx_expression"
 "jsx_self_closing_element" "template_string" "template_substitution"
 "regex" "arguments" "class_body" "formal_parameters"
 "computed_property_name")

Documentation

Nodes that designate lists in JavaScript.

See treesit-thing-settings for more information.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defvar js--treesit-list-nodes
  '("export_clause"
    "named_imports"
    "statement_block"
    "_for_header"
    "switch_body"
    "parenthesized_expression"
    "object"
    "object_pattern"
    "array"
    "array_pattern"
    "jsx_element"
    "jsx_expression"
    "jsx_self_closing_element"
    "template_string"
    "template_substitution"
    "regex"
    "arguments"
    "class_body"
    "formal_parameters"
    "computed_property_name")
  "Nodes that designate lists in JavaScript.
See `treesit-thing-settings' for more information.")