]> git.eshelyaron.com Git - emacs.git/commitdiff
Help Elisp xref recognize defclass parent classes
authorEric Abrahamsen <eric@ericabrahamsen.net>
Mon, 20 Feb 2023 01:01:41 +0000 (03:01 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 20 Feb 2023 01:01:41 +0000 (03:01 +0200)
* lisp/progmodes/elisp-mode.el (elisp--xref-infer-namespace):
Handle defclass parents (bug#61640).

* test/lisp/progmodes/elisp-mode-tests.el (elisp-mode-infer-namespace):
New case in the test.

lisp/progmodes/elisp-mode.el
test/lisp/progmodes/elisp-mode-tests.el

index 1c339d08148f52b947924dffbec9b926cb5bd89f..f7cd9e909266bcaba895758cf21135a9205ff06e 100644 (file)
@@ -943,6 +943,10 @@ namespace but with lower confidence."
                                  cl-defmethod cl-defgeneric)))
             ;; (defun FUNC (... IDENT
             'variable)
+           ((and (eql j 2)
+                 (eq j-head 'defclass))
+            ;; (defclass CLASS (... IDENT
+            'function)
            ((eq j-head 'cond)
             ;; (cond ... (... IDENT
             'variable)
index 57b39a49801bf440d87a358aad0b7e44343df51b..5b6ef88dceb3c33e6cd3e6631f6988528d686cf5 100644 (file)
@@ -1003,6 +1003,11 @@ evaluation of BODY."
     (should (equal (elisp--xref-infer-namespace p5) 'variable))
     (should (equal (elisp--xref-infer-namespace p6) 'function)))
 
+  (elisp-mode-test--with-buffer
+      (concat "(defclass child-class ({p1}parent-1 {p2}parent-2))\n")
+    (should (equal (elisp--xref-infer-namespace p1) 'function))
+    (should (equal (elisp--xref-infer-namespace p2) 'function)))
+
   (elisp-mode-test--with-buffer
       (concat "(require '{p1}alpha)\n"
               "(fboundp '{p2}beta)\n"