Function: semantic-tag-function-arguments

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

Signature

(semantic-tag-function-arguments TAG)

Documentation

Return the arguments of the function that TAG describes.

That is the value of the :arguments attribute.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
;;; Tags of class `function'
;;
(defsubst semantic-tag-function-arguments (tag)
  "Return the arguments of the function that TAG describes.
That is the value of the `:arguments' attribute."
  (semantic-tag-get-attribute tag :arguments))