Cause an error if a symbol is the name of a stobj.
(ensure-symbol-not-stobj symb description error-erp error-val ctx state) → (mv erp val state)
Function:
(defun ensure-symbol-not-stobj (symb description error-erp error-val ctx state) (declare (xargs :stobjs (state))) (declare (xargs :guard (and (symbolp symb) (msgp description)))) (b* (((when (stobjp symb t (w state))) (er-soft+ ctx error-erp error-val "~@0 must not be the name of a STOBJ." description))) (value nil)))
Theorem:
(defthm return-type-of-ensure-symbol-not-stobj.erp (b* (((mv ?erp ?val ?state) (ensure-symbol-not-stobj symb description error-erp error-val ctx state))) (implies erp (equal erp error-erp))) :rule-classes :rewrite)
Theorem:
(defthm return-type-of-ensure-symbol-not-stobj.val (b* (((mv ?erp ?val ?state) (ensure-symbol-not-stobj symb 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)