Modifying constructor for comp-stmt structures.
(change-comp-stmt x
[:labels <labels>]
[:items <items>])
This is an often useful alternative to make-comp-stmt.
We construct a new comp-stmt structure that is a copy of
This is an ordinary
Macro:
(defmacro change-comp-stmt (x &rest args) (std::change-aggregate 'comp-stmt x args '((:labels . comp-stmt->labels) (:items . comp-stmt->items)) 'change-comp-stmt 'remake-comp-stmt))