Function: semantic-analyze-context-assignment

semantic-analyze-context-assignment is a byte-compiled function defined in analyze.el.gz.

Signature

(semantic-analyze-context-assignment &rest SLOTS)

Documentation

Create a new object of class 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.")