Function: semantic-get-local-arguments-default
semantic-get-local-arguments-default is a byte-compiled function
defined in ctxt.el.gz.
Signature
(semantic-get-local-arguments-default)
Documentation
Get arguments (variables) from the current context.
Parameters are available if the point is in a function or method.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-get-local-arguments-default ()
"Get arguments (variables) from the current context.
Parameters are available if the point is in a function or method."
(let ((tag (semantic-current-tag)))
(if (and tag (semantic-tag-of-class-p tag 'function))
(semantic-tag-function-arguments tag))))