Function: ede-target-sourcecode

ede-target-sourcecode is a byte-compiled function defined in base.el.gz.

Signature

(ede-target-sourcecode ARG &rest ARGS)

Implementations

((this ede-target)) in `ede/base.el'.

Return the sourcecode objects which THIS permits.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
(cl-defmethod ede-target-sourcecode ((this ede-target))
  "Return the sourcecode objects which THIS permits."
  (let ((sc (oref this sourcetype))
	(rs nil))
    (while (and (listp sc) sc)
      (setq rs (cons (symbol-value (car sc)) rs)
	    sc (cdr sc)))
    rs))