Function: semantic-analyze-context-assignment-p
semantic-analyze-context-assignment-p is a byte-compiled function
defined in analyze.el.gz.
Signature
(semantic-analyze-context-assignment-p OBJ)
Documentation
Return non-nil if OBJ is an object of type semantic-analyze-context-assignment(var)/semantic-analyze-context-assignment(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze.el.gz
(defclass semantic-analyze-context-assignment (semantic-analyze-context)
((assignee :initarg :assignee
:type list
:documentation "A sequence of tags for an assignee.
This is a variable into which some value is being placed. The last
item in the list is the variable accepting the value. Earlier
tags represent the variables being dereferenced to get to the
assignee."))
"Analysis class for a value in an assignment.")