(vl-importlist-condcheck x tests-above) → warnings
Function:
(defun vl-importlist-condcheck (x tests-above) (declare (xargs :guard (and (vl-importlist-p x) (vl-exprlist-p tests-above)))) (let ((__function__ 'vl-importlist-condcheck)) (declare (ignorable __function__)) (b* (((when (atom x)) (b* ((warnings nil)) warnings)) (warnings (vl-import-condcheck (car x) tests-above)) (warnings1 (vl-importlist-condcheck (cdr x) tests-above)) (warnings (vl-warningtree-cons warnings1 warnings))) warnings)))
Theorem:
(defthm vl-warningtree-p-of-vl-importlist-condcheck (b* ((warnings (vl-importlist-condcheck x tests-above))) (vl-warningtree-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-importlist-condcheck-of-vl-importlist-fix-x (equal (vl-importlist-condcheck (vl-importlist-fix x) tests-above) (vl-importlist-condcheck x tests-above)))
Theorem:
(defthm vl-importlist-condcheck-vl-importlist-equiv-congruence-on-x (implies (vl-importlist-equiv x x-equiv) (equal (vl-importlist-condcheck x tests-above) (vl-importlist-condcheck x-equiv tests-above))) :rule-classes :congruence)
Theorem:
(defthm vl-importlist-condcheck-of-vl-exprlist-fix-tests-above (equal (vl-importlist-condcheck x (vl-exprlist-fix tests-above)) (vl-importlist-condcheck x tests-above)))
Theorem:
(defthm vl-importlist-condcheck-vl-exprlist-equiv-congruence-on-tests-above (implies (vl-exprlist-equiv tests-above tests-above-equiv) (equal (vl-importlist-condcheck x tests-above) (vl-importlist-condcheck x tests-above-equiv))) :rule-classes :congruence)