Cause an error if a value is not a true list of names of existing functions.
(ensure-function-name-list x description error-erp error-val ctx state) → (mv erp val state)
Function:
(defun ensure-function-name-list (x description error-erp error-val ctx state) (declare (xargs :stobjs (state))) (declare (xargs :guard (msgp description))) (b* (((unless (function-name-listp x (w state))) (er-soft+ ctx error-erp error-val "~@0 must be a true list of names of existing functions." description))) (value nil)))
Theorem:
(defthm return-type-of-ensure-function-name-list.erp (b* (((mv ?erp ?val ?state) (ensure-function-name-list x description error-erp error-val ctx state))) (implies erp (equal erp error-erp))) :rule-classes :rewrite)
Theorem:
(defthm return-type-of-ensure-function-name-list.val (b* (((mv ?erp ?val ?state) (ensure-function-name-list x description error-erp error-val ctx state))) (and (implies erp (equal val error-val)) (implies (and (not erp) error-erp) (not val)))) :rule-classes :rewrite)