(vl-blocktype-startstring x) → str
Function:
(defun vl-blocktype-startstring (x) (declare (xargs :guard (vl-blocktype-p x))) (let ((__function__ 'vl-blocktype-startstring)) (declare (ignorable __function__)) (case (vl-blocktype-fix x) (:vl-beginend "begin") (:vl-forkjoin "fork") (:vl-forkjoinany "fork") (:vl-forkjoinnone "fork") (otherwise (or (impossible) "")))))
Theorem:
(defthm stringp-of-vl-blocktype-startstring (b* ((str (vl-blocktype-startstring x))) (stringp str)) :rule-classes :type-prescription)
Theorem:
(defthm vl-blocktype-startstring-of-vl-blocktype-fix-x (equal (vl-blocktype-startstring (vl-blocktype-fix x)) (vl-blocktype-startstring x)))
Theorem:
(defthm vl-blocktype-startstring-vl-blocktype-equiv-congruence-on-x (implies (vl-blocktype-equiv x x-equiv) (equal (vl-blocktype-startstring x) (vl-blocktype-startstring x-equiv))) :rule-classes :congruence)