Variable: js--treesit-lhs-identifier-query

js--treesit-lhs-identifier-query is a variable defined in js.el.gz.

Value

#<treesit-compiled-query>

Documentation

Query that captures identifier and query_identifier.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defvar js--treesit-lhs-identifier-query
  (when (treesit-available-p)
    (treesit-query-compile 'javascript '((identifier) @id
                                         (property_identifier) @id
                                         (shorthand_property_identifier_pattern) @id)))
  "Query that captures identifier and query_identifier.")