Recognizer for vl-parsestate structures.
(vl-parsestate-p x) → *
Function:
(defun vl-parsestate-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-parsestate-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :vl-parsestate) (b* ((warnings (cdr x))) (vl-warninglist-p warnings)))))
Theorem:
(defthm consp-when-vl-parsestate-p (implies (vl-parsestate-p x) (consp x)) :rule-classes :compound-recognizer)