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