Pretty-print a list of annotations, one per line.
(pprint-annotation-list anns level) → lines
Function:
(defun pprint-annotation-list (anns level) (declare (xargs :guard (and (annotation-listp anns) (natp level)))) (let ((__function__ 'pprint-annotation-list)) (declare (ignorable __function__)) (cond ((endp anns) nil) (t (cons (pprint-annotation (car anns) level) (pprint-annotation-list (cdr anns) level))))))
Theorem:
(defthm msg-listp-of-pprint-annotation-list (b* ((lines (pprint-annotation-list anns level))) (msg-listp lines)) :rule-classes :rewrite)