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