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