Pretty-print a sequence of import declarations.
(print-jimports imports indent-level) → lines
Function:
(defun print-jimports (imports indent-level) (declare (xargs :guard (and (jimport-listp imports) (natp indent-level)))) (let ((__function__ 'print-jimports)) (declare (ignorable __function__)) (cond ((endp imports) nil) (t (cons (print-jimport (car imports) indent-level) (print-jimports (cdr imports) indent-level))))))
Theorem:
(defthm msg-listp-of-print-jimports (b* ((lines (print-jimports imports indent-level))) (msg-listp lines)) :rule-classes :rewrite)