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