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