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