Function: COLLECT-CODE-INFO

Documentation

Collect specific info for each source code part using ANALYSE-CODE-PART.

Source

(defun collect-code-info (parts)
  "Collect specific info for each source code part using ANALYSE-CODE-PART."
  (mapcar (lambda (part)
            (typecase part
              (code-part
               ;; punt all the work to collect-code-info
               (analyse-code-part part))
              (t part)))
          parts))
Source Context