Basic constructor macro for vl-lucidocc-tail structures.
(make-vl-lucidocc-tail [:ctx <ctx>] [:ss <ss>])
This is the usual way to construct vl-lucidocc-tail structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-lucidocc-tail structure from scratch. See also change-vl-lucidocc-tail, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-lucidocc-tail (&rest args) (std::make-aggregate 'vl-lucidocc-tail args '((:ctx) (:ss)) 'make-vl-lucidocc-tail nil))
Function:
(defun vl-lucidocc-tail (ctx ss) (declare (xargs :guard (and (vl-context1-p ctx) (vl-scopestack-p ss)))) (declare (xargs :guard t)) (let ((__function__ 'vl-lucidocc-tail)) (declare (ignorable __function__)) (b* ((ctx (mbe :logic (vl-context1-fix ctx) :exec ctx)) (ss (mbe :logic (vl-scopestack-fix ss) :exec ss))) (cons :tail (list ctx ss)))))