Function: semantic-analyze-current-tag
semantic-analyze-current-tag is an autoloaded, interactive and
byte-compiled function defined in refs.el.gz.
Signature
(semantic-analyze-current-tag)
Documentation
Analyze the tag under point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze/refs.el.gz
;;; USER COMMANDS
;;
;;;###autoload
(defun semantic-analyze-current-tag ()
"Analyze the tag under point."
(interactive)
(let* ((tag (semantic-current-tag))
(start (current-time))
(sac (semantic-analyze-tag-references tag))
)
(message "Analysis took %.2f seconds." (semantic-elapsed-time start nil))
(if sac
(progn
(require 'eieio-datadebug)
(data-debug-new-buffer "*Analyzer Reference ADEBUG*")
(data-debug-insert-object-slots sac "]"))
(message "No Context to analyze here."))))