]> git.eshelyaron.com Git - emacs.git/commitdiff
semantic: New function to calculate scope around tag
authorEric Ludlam <eric@siege-engine.com>
Sun, 22 Mar 2015 21:35:27 +0000 (17:35 -0400)
committerDavid Engster <deng@randomsample.de>
Sun, 22 Jan 2017 21:25:11 +0000 (22:25 +0100)
* lisp/cedet/semantic/scope.el (semantic-calculate-scope-for-tag):
  New.

lisp/cedet/semantic/scope.el

index 9bade56965939549c59ae4efa3f476b34b84a3a0..272f37d9858df7caf48897c0ddddf28ba24b6c25 100644 (file)
@@ -767,6 +767,16 @@ The class returned from the scope calculation is variable
        ;; can reset the scope cache without affecting others.
        (clone scopecache)))))
 
+(defun semantic-calculate-scope-for-tag (tag)
+  "Calculate the current scope that is around TAG.
+Return nil if TAG has no position, or we cannot otherwise find a scope.
+Use this when pulling a datatype off TAG so when it is looked up
+it has the right context around it."
+   (save-current-buffer
+     (when (semantic-tag-with-position-p tag)
+       (semantic-go-to-tag tag)
+       (semantic-calculate-scope (point)))) )
+
 (defun semantic-scope-find (name &optional class scope-in)
   "Find the tag with NAME, and optional CLASS in the current SCOPE-IN.
 Searches various elements of the scope for NAME.  Return ALL the