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