Function: semantic-tag-faux-p

semantic-tag-faux-p is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-faux-p TAG)

Documentation

Return non-nil if TAG is a FAUX tag.

FAUX tags are created to represent a construct that is not known to exist in the code.

Example: When the class browser sees methods to a class, but cannot find the class, it will create a faux tag to represent the class to store those methods.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-faux-p (tag)
  "Return non-nil if TAG is a FAUX tag.
FAUX tags are created to represent a construct that is
not known to exist in the code.

Example: When the class browser sees methods to a class, but
cannot find the class, it will create a faux tag to represent the
class to store those methods."
  (semantic--tag-get-property tag :faux-flag))