Function: semantic-collector-try-completion

semantic-collector-try-completion is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-try-completion ARG &rest ARGS)

Implementations

((obj semantic-collector-abstract) prefix) in `semantic/complete.el'.

For OBJ, attempt to match PREFIX. See `try-completion' for details on how this works. Return nil for no match. Return a string for a partial match. For a unique match of PREFIX, return the list of all tags with that name.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-collector-try-completion
  ((obj semantic-collector-abstract) _prefix)
  "For OBJ, attempt to match PREFIX.
See `try-completion' for details on how this works.
Return nil for no match.
Return a string for a partial match.
For a unique match of PREFIX, return the list of all tags
with that name."
  (if (slot-boundp obj 'last-completion)
      (oref obj last-completion)))