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