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