Function: semantic-tag-components-default
semantic-tag-components-default is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-components-default TAG)
Documentation
Return a list of components for TAG.
Perform the described task in semantic-tag-components.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-components-default (tag)
"Return a list of components for TAG.
Perform the described task in `semantic-tag-components'."
(cond ((semantic-tag-of-class-p tag 'type)
(semantic-tag-type-members tag))
((semantic-tag-of-class-p tag 'function)
(semantic-tag-function-arguments tag))
(t nil)))