Function: semantic-analyze-references-p
semantic-analyze-references-p is a byte-compiled function defined in
refs.el.gz.
Signature
(semantic-analyze-references-p OBJ)
Documentation
Return non-nil if OBJ is an object of type semantic-analyze-references(var)/semantic-analyze-references(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze/refs.el.gz
;;; Code:
(defclass semantic-analyze-references ()
((tag :initarg :tag
:type semantic-tag
:documentation
"The starting TAG we are providing references analysis for.")
(tagdb :initarg :tagdb
:documentation
"The database that tag can be found in.")
(scope :initarg :scope
:documentation "A Scope object.")
(rawsearchdata :initarg :rawsearchdata
:documentation
"The raw search data for TAG's name across all databases.")
;; Note: Should I cache queried data here? I expect that searching
;; through rawsearchdata will be super-fast, so why bother?
)
"Class containing data from a semantic analysis.")