Pretty-print an annotation.
(pprint-annotation ann level) → line
Function:
(defun pprint-annotation (ann level) (declare (xargs :guard (and (annotationp ann) (natp level)))) (let ((__function__ 'pprint-annotation)) (declare (ignorable __function__)) (b* (((annotation ann) ann)) (pprint-line (msg "@~@0" (pprint-identifier ann.name)) level))))
Theorem:
(defthm msgp-of-pprint-annotation (b* ((line (pprint-annotation ann level))) (msgp line)) :rule-classes :rewrite)