Get the original text that gave rise to any token, as a string.
(vl-token->string x) → str
Function:
(defun vl-token->string (x) (declare (xargs :guard (vl-token-p x))) (let ((__function__ 'vl-token->string)) (declare (ignorable __function__)) (vl-echarlist->string (vl-token->etext x))))
Theorem:
(defthm stringp-of-vl-token->string (b* ((str (vl-token->string x))) (stringp str)) :rule-classes :type-prescription)