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