Function: semantic-tag-function-parent

semantic-tag-function-parent is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-function-parent TAG)

Documentation

Return the parent of the function that TAG describes.

That is the value of the :parent attribute. A function has a parent if it is a method of a class, and if the function does not appear in the body of its parent class.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-function-parent (tag)
  "Return the parent of the function that TAG describes.
That is the value of the `:parent' attribute.
A function has a parent if it is a method of a class, and if the
function does not appear in the body of its parent class."
  (semantic-tag-named-parent tag))