Function: semantic-collector-flush

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

Signature

(semantic-collector-flush ARG &rest ARGS)

Implementations

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

Flush THIS collector object, clearing any caches and prefix.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-collector-flush ((this semantic-collector-abstract))
  "Flush THIS collector object, clearing any caches and prefix."
  (oset this cache nil)
  (slot-makeunbound this 'last-prefix)
  (slot-makeunbound this 'last-completion)
  (slot-makeunbound this 'last-all-completions)
  (slot-makeunbound this 'current-exact-match)
  )