Get the kind (tag) of a attrib-name structure.
(attrib-name-kind x) → kind
Function:
(defun attrib-name-kind$inline (x) (declare (xargs :guard (attrib-namep x))) (let ((__function__ 'attrib-name-kind)) (declare (ignorable __function__)) (mbe :logic (cond ((or (atom x) (eq (car x) :ident)) :ident) (t :keyword)) :exec (car x))))
Theorem:
(defthm attrib-name-kind-possibilities (or (equal (attrib-name-kind x) :ident) (equal (attrib-name-kind x) :keyword)) :rule-classes ((:forward-chaining :trigger-terms ((attrib-name-kind x)))))