Function: semantic-analyze-context-functionarg-p
semantic-analyze-context-functionarg-p is a byte-compiled function
defined in analyze.el.gz.
Signature
(semantic-analyze-context-functionarg-p OBJ)
Documentation
Return non-nil if OBJ is an object of type semantic-analyze-context-functionarg(var)/semantic-analyze-context-functionarg(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze.el.gz
(defclass semantic-analyze-context-functionarg (semantic-analyze-context)
((function :initarg :function
:type list
:documentation "A sequence of tags for a function.
This is a function being called. The cursor will be in the position
of an argument.
The last tag in :function is the function being called. Earlier
tags represent the variables being dereferenced to get to the
function.")
(index :initarg :index
:type integer
:documentation "The index of the argument for this context.
If a function takes 4 arguments, this value should be bound to
the values 1 through 4.")
(argument :initarg :argument
:type list
:documentation "A sequence of tags for the :index argument.
The argument can accept a value of some type, and this contains the
tag for that definition. It should be a tag, but might
be just a string in some circumstances.")
)
"Analysis class for a value as a function argument.")