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