Function: semantic-collector-analyze-completions--eieio-childp

semantic-collector-analyze-completions--eieio-childp is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-analyze-completions--eieio-childp OBJ)

Documentation

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

Aliases

semantic-collector-analyze-completions-child-p (obsolete since 25.1)

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;; Smart completion collector
(defclass semantic-collector-analyze-completions (semantic-collector-abstract)
  ((context :initarg :context
	    :type semantic-analyze-context
	    :documentation "An analysis context.
Specifies some context location from whence completion lists will be drawn."
	    )
   (first-pass-completions :type list
			   :documentation "List of valid completion tags.
This list of tags is generated when completion starts.  All searches
derive from this list.")
   )
  "Completion engine that uses the context analyzer to provide options.
The only options available for completion are those which can be logically
inserted into the current context.")