Function: semanticdb-file-stream
semanticdb-file-stream is a byte-compiled function defined in
db.el.gz.
Signature
(semanticdb-file-stream FILE)
Documentation
Return a list of tags belonging to FILE.
If file has database tags available in the database, return them. If file does not have tags available, then load the file, and create them.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db.el.gz
(defun semanticdb-file-stream (file)
"Return a list of tags belonging to FILE.
If file has database tags available in the database, return them.
If file does not have tags available, then load the file, and create them."
(let ((table (semanticdb-file-table-object file)))
(when table
(semanticdb-get-tags table))))