Function: semantic-collector-analyze-completions
semantic-collector-analyze-completions is a byte-compiled function
defined in complete.el.gz.
Signature
(semantic-collector-analyze-completions &rest SLOTS)
Documentation
Create a new object of class type
semantic-collector-analyze-completions(var)/semantic-collector-analyze-completions(fun).
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.")