Get the kind (tag) of a vl-scopeexpr structure.
(vl-scopeexpr-kind x) → kind
Function:
(defun vl-scopeexpr-kind$inline (x) (declare (xargs :guard (vl-scopeexpr-p x))) (let ((__function__ 'vl-scopeexpr-kind)) (declare (ignorable __function__)) (cond ((and (consp x) (or (eq (car x) :colon) (eq (car x) :paramscolon))) :colon) (t :end))))
Theorem:
(defthm vl-scopeexpr-kind-possibilities (or (equal (vl-scopeexpr-kind x) :colon) (equal (vl-scopeexpr-kind x) :end)) :rule-classes ((:forward-chaining :trigger-terms ((vl-scopeexpr-kind x)))))