Function: semantic-analyze-context-assignment--eieio-childp

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

Signature

(semantic-analyze-context-assignment--eieio-childp OBJ)

Documentation

Return non-nil if OBJ is an object of type semantic-analyze-context-assignment(var)/semantic-analyze-context-assignment(fun) or a subclass.

Aliases

semantic-analyze-context-assignment-child-p (obsolete since 25.1)

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.")