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