]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix jsx font-lock in older tree-sitter-js grammars
authordannyfreeman <danny@dfreeman.email>
Fri, 11 Aug 2023 20:43:58 +0000 (16:43 -0400)
committerEli Zaretskii <eliz@gnu.org>
Thu, 17 Aug 2023 08:05:00 +0000 (11:05 +0300)
* lisp/progmodes/js.el (js--treesit-font-lock-settings): Use
queries that are backwards compatible with
tree-sitter-javascript bb1f97b.
* list/progmodes/js.el
(-jsx--treesit-font-lock-compatibility-bb1f97b): Delete unused
function.  (Bug#65234)

lisp/progmodes/js.el

index c583b6f61911cf200c3fd38ff36230ce5292b655..9d2990e7bc9f5db30cc265a9d49809d45cce9932 100644 (file)
@@ -3501,35 +3501,6 @@ Check if a node type is available, then return the right indent rules."
     "&&" "||" "!")
   "JavaScript operators for tree-sitter font-locking.")
 
-(defun js-jsx--treesit-font-lock-compatibility-bb1f97b ()
-  "Font lock rules helper, to handle different releases of tree-sitter-javascript.
-Check if a node type is available, then return the right font lock rules."
-  ;; handle commit bb1f97b
-  (condition-case nil
-      (progn (treesit-query-capture 'javascript '((member_expression) @capture))
-            '((jsx_opening_element
-               [(member_expression (identifier)) (identifier)]
-               @font-lock-function-call-face)
-
-              (jsx_closing_element
-               [(member_expression (identifier)) (identifier)]
-               @font-lock-function-call-face)
-
-              (jsx_self_closing_element
-               [(member_expression (identifier)) (identifier)]
-               @font-lock-function-call-face)))
-    (error '((jsx_opening_element
-             [(nested_identifier (identifier)) (identifier)]
-             @font-lock-function-call-face)
-
-            (jsx_closing_element
-             [(nested_identifier (identifier)) (identifier)]
-             @font-lock-function-call-face)
-
-            (jsx_self_closing_element
-             [(nested_identifier (identifier)) (identifier)]
-             @font-lock-function-call-face)))))
-
 (defvar js--treesit-font-lock-settings
   (treesit-font-lock-rules
 
@@ -3639,8 +3610,10 @@ Check if a node type is available, then return the right font lock rules."
 
    :language 'javascript
    :feature 'jsx
-   (append (js-jsx--treesit-font-lock-compatibility-bb1f97b)
-          '((jsx_attribute (property_identifier) @font-lock-constant-face)))
+   '((jsx_opening_element name: (_) @font-lock-function-call-face)
+     (jsx_closing_element name: (_) @font-lock-function-call-face)
+     (jsx_self_closing_element name: (_) @font-lock-function-call-face)
+     (jsx_attribute (property_identifier) @font-lock-constant-face))
 
    :language 'javascript
    :feature 'number