Function: semantic-ctxt-scoped-types

semantic-ctxt-scoped-types is a byte-compiled function defined in ctxt.el.gz.

Signature

(semantic-ctxt-scoped-types &optional POINT)

Documentation

Return a list of type names currently in scope at POINT.

The return value can be a mixed list of either strings (names of types that are in scope) or actual tags (type declared locally that may or may not have a name.)

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
;;; Scoped Types
;;
;; Scoped types are types that the current code would have access to.
;; The come from the global namespace or from special commands such as "using"
(define-overloadable-function semantic-ctxt-scoped-types (&optional point)
  "Return a list of type names currently in scope at POINT.
The return value can be a mixed list of either strings (names of
types that are in scope) or actual tags (type declared locally
that may or may not have a name.)")